e36119aa by lihua

质量评估审批状态搜索修改

1 parent c8fc6251
......@@ -98,7 +98,8 @@ const searchItemList = ref([
{ label: '审批中', value: 'A' },
{ label: '已通过', value: 'Y' },
{ label: '已驳回', value: 'R' },
{ label: '已撤销', value: 'C' }
{ label: '已撤销', value: 'C' },
{ label: '--', value: 'null' }
],
clearable: true
},
......@@ -123,7 +124,8 @@ const getTableData = () => {
pageSize: page.value.limit,
pageIndex: page.value.curr,
daName: page.value.daName,
approveState: page.value.approveState,
isApprove: page.value.approveState == 'null' ? 'N' : '',
approveState: page.value.approveState == 'null' ? null : page.value.approveState,
currentStaffGuid: userData.staffGuid
}).then((res: any) => {
tableInfo.value.loading = false
......
......@@ -113,6 +113,7 @@ const searchItemList = ref([
{ label: '已通过', value: 'Y' },
{ label: '已驳回', value: 'R' },
{ label: '已撤销', value: 'C' },
{ label: '--', value: 'null' }
],
clearable: true
},
......@@ -137,7 +138,8 @@ const getTableData = () => {
pageSize: page.value.limit,
pageIndex: page.value.curr,
daName: page.value.daName,
approveState: page.value.approveState,
isApprove: page.value.approveState == 'null' ? 'N' : '',
approveState: page.value.approveState == 'null' ? null : page.value.approveState,
currentStaffGuid: userData.staffGuid
}).then((res: any) => {
tableInfo.value.loading = false;
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!