质量评估审批状态搜索修改
Showing
2 changed files
with
7 additions
and
3 deletions
| ... | @@ -119,7 +119,8 @@ const searchItemList = ref([ | ... | @@ -119,7 +119,8 @@ const searchItemList = ref([ |
| 119 | { label: '审批中', value: 'A' }, | 119 | { label: '审批中', value: 'A' }, |
| 120 | { label: '已通过', value: 'Y' }, | 120 | { label: '已通过', value: 'Y' }, |
| 121 | { label: '已驳回', value: 'R' }, | 121 | { label: '已驳回', value: 'R' }, |
| 122 | { label: '已撤销', value: 'C' } | 122 | { label: '已撤销', value: 'C' }, |
| 123 | { label: '--', value: 'null' } | ||
| 123 | ], | 124 | ], |
| 124 | clearable: true | 125 | clearable: true |
| 125 | }, | 126 | }, |
| ... | @@ -144,7 +145,8 @@ const getTableData = () => { | ... | @@ -144,7 +145,8 @@ const getTableData = () => { |
| 144 | pageSize: page.value.limit, | 145 | pageSize: page.value.limit, |
| 145 | pageIndex: page.value.curr, | 146 | pageIndex: page.value.curr, |
| 146 | daName: page.value.daName, | 147 | daName: page.value.daName, |
| 147 | approveState: page.value.approveState, | 148 | isApprove: page.value.approveState == 'null' ? 'N' : '', |
| 149 | approveState: page.value.approveState == 'null' ? null : page.value.approveState, | ||
| 148 | currentStaffGuid: userData.staffGuid | 150 | currentStaffGuid: userData.staffGuid |
| 149 | }).then((res: any) => { | 151 | }).then((res: any) => { |
| 150 | tableInfo.value.loading = false | 152 | tableInfo.value.loading = false | ... | ... |
| ... | @@ -109,6 +109,7 @@ const searchItemList = ref([ | ... | @@ -109,6 +109,7 @@ const searchItemList = ref([ |
| 109 | { label: '已通过', value: 'Y' }, | 109 | { label: '已通过', value: 'Y' }, |
| 110 | { label: '已驳回', value: 'R' }, | 110 | { label: '已驳回', value: 'R' }, |
| 111 | { label: '已撤销', value: 'C' }, | 111 | { label: '已撤销', value: 'C' }, |
| 112 | { label: '--', value: 'null' } | ||
| 112 | ], | 113 | ], |
| 113 | clearable: true | 114 | clearable: true |
| 114 | }, | 115 | }, |
| ... | @@ -133,7 +134,8 @@ const getTableData = () => { | ... | @@ -133,7 +134,8 @@ const getTableData = () => { |
| 133 | pageSize: page.value.limit, | 134 | pageSize: page.value.limit, |
| 134 | pageIndex: page.value.curr, | 135 | pageIndex: page.value.curr, |
| 135 | daName: page.value.daName, | 136 | daName: page.value.daName, |
| 136 | approveState: page.value.approveState, | 137 | isApprove: page.value.approveState == 'null' ? 'N' : '', |
| 138 | approveState: page.value.approveState == 'null' ? null : page.value.approveState, | ||
| 137 | currentStaffGuid: userData.staffGuid | 139 | currentStaffGuid: userData.staffGuid |
| 138 | }).then((res: any) => { | 140 | }).then((res: any) => { |
| 139 | tableInfo.value.loading = false; | 141 | tableInfo.value.loading = false; | ... | ... |
-
Please register or sign in to post a comment