质量评估审批状态搜索修改
Showing
2 changed files
with
7 additions
and
3 deletions
| ... | @@ -98,7 +98,8 @@ const searchItemList = ref([ | ... | @@ -98,7 +98,8 @@ const searchItemList = ref([ |
| 98 | { label: '审批中', value: 'A' }, | 98 | { label: '审批中', value: 'A' }, |
| 99 | { label: '已通过', value: 'Y' }, | 99 | { label: '已通过', value: 'Y' }, |
| 100 | { label: '已驳回', value: 'R' }, | 100 | { label: '已驳回', value: 'R' }, |
| 101 | { label: '已撤销', value: 'C' } | 101 | { label: '已撤销', value: 'C' }, |
| 102 | { label: '--', value: 'null' } | ||
| 102 | ], | 103 | ], |
| 103 | clearable: true | 104 | clearable: true |
| 104 | }, | 105 | }, |
| ... | @@ -123,7 +124,8 @@ const getTableData = () => { | ... | @@ -123,7 +124,8 @@ const getTableData = () => { |
| 123 | pageSize: page.value.limit, | 124 | pageSize: page.value.limit, |
| 124 | pageIndex: page.value.curr, | 125 | pageIndex: page.value.curr, |
| 125 | daName: page.value.daName, | 126 | daName: page.value.daName, |
| 126 | approveState: page.value.approveState, | 127 | isApprove: page.value.approveState == 'null' ? 'N' : '', |
| 128 | approveState: page.value.approveState == 'null' ? null : page.value.approveState, | ||
| 127 | currentStaffGuid: userData.staffGuid | 129 | currentStaffGuid: userData.staffGuid |
| 128 | }).then((res: any) => { | 130 | }).then((res: any) => { |
| 129 | tableInfo.value.loading = false | 131 | tableInfo.value.loading = false | ... | ... |
| ... | @@ -113,6 +113,7 @@ const searchItemList = ref([ | ... | @@ -113,6 +113,7 @@ const searchItemList = ref([ |
| 113 | { label: '已通过', value: 'Y' }, | 113 | { label: '已通过', value: 'Y' }, |
| 114 | { label: '已驳回', value: 'R' }, | 114 | { label: '已驳回', value: 'R' }, |
| 115 | { label: '已撤销', value: 'C' }, | 115 | { label: '已撤销', value: 'C' }, |
| 116 | { label: '--', value: 'null' } | ||
| 116 | ], | 117 | ], |
| 117 | clearable: true | 118 | clearable: true |
| 118 | }, | 119 | }, |
| ... | @@ -137,7 +138,8 @@ const getTableData = () => { | ... | @@ -137,7 +138,8 @@ const getTableData = () => { |
| 137 | pageSize: page.value.limit, | 138 | pageSize: page.value.limit, |
| 138 | pageIndex: page.value.curr, | 139 | pageIndex: page.value.curr, |
| 139 | daName: page.value.daName, | 140 | daName: page.value.daName, |
| 140 | approveState: page.value.approveState, | 141 | isApprove: page.value.approveState == 'null' ? 'N' : '', |
| 142 | approveState: page.value.approveState == 'null' ? null : page.value.approveState, | ||
| 141 | currentStaffGuid: userData.staffGuid | 143 | currentStaffGuid: userData.staffGuid |
| 142 | }).then((res: any) => { | 144 | }).then((res: any) => { |
| 143 | tableInfo.value.loading = false; | 145 | tableInfo.value.loading = false; | ... | ... |
-
Please register or sign in to post a comment