|
@@ -175,7 +175,7 @@ import { defineAsyncComponent, onMounted, reactive, ref } from 'vue';
|
|
|
import type { FormInstance } from 'element-plus';
|
|
|
import { defaultTimeStartEnd, shortcuts } from '@/utils/constants';
|
|
|
import Other from '@/utils/other';
|
|
|
-import { getSSPAllBaseData, getSSPAllOrder, getSSPAllOrderExport } from '@/api/snapshot/statistics';
|
|
|
+import { getSSPAllBaseData, getSSPStatisticsCitizenAdditionalReward, getSSPStatisticsCitizenAdditionalRewardExport } from '@/api/snapshot/statistics';
|
|
|
|
|
|
// 引入组件
|
|
|
const OrderDetail = defineAsyncComponent(() => import('@/components/OrderDetail/index.vue')); // 工单详情
|
|
@@ -262,7 +262,7 @@ const gridOptions = reactive<any>({
|
|
|
tools: [{ toolRender: { name: 'exportCurrent' } }, { toolRender: { name: 'exportAll' } }],
|
|
|
},
|
|
|
params: {
|
|
|
- exportMethod: getSSPAllOrderExport,
|
|
|
+ exportMethod: getSSPStatisticsCitizenAdditionalRewardExport,
|
|
|
exportParams: requestParams,
|
|
|
},
|
|
|
customConfig: {
|
|
@@ -306,7 +306,7 @@ const gridOptions = reactive<any>({
|
|
|
},
|
|
|
},
|
|
|
{
|
|
|
- field: 'startTime',
|
|
|
+ field: 'creationTime',
|
|
|
title: '受理时间',
|
|
|
width: 160,
|
|
|
sortable: true,
|
|
@@ -319,32 +319,32 @@ const gridOptions = reactive<any>({
|
|
|
slots: { default: 'order_detail' },
|
|
|
},
|
|
|
{ field: 'industryName', title: '行业', width: 100 },
|
|
|
- { field: 'industryName', title: '是否发放补充奖励', width: 140 },
|
|
|
- { field: 'industryName', title: '奖励金额', width: 120 },
|
|
|
+ { field: 'isAwardTxt', title: '是否发放补充奖励', width: 140 },
|
|
|
+ { field: 'awardAmount', title: '奖励金额(元)', width: 120 },
|
|
|
{
|
|
|
- field: 'expiredTime',
|
|
|
+ field: 'awardTime',
|
|
|
title: '发放时间',
|
|
|
width: 160,
|
|
|
sortable: true,
|
|
|
formatter: 'formatDate',
|
|
|
},
|
|
|
{
|
|
|
- field: 'bankCardNo',
|
|
|
+ field: 'awardBankCardNo',
|
|
|
title: '卡号',
|
|
|
width: 140,
|
|
|
},
|
|
|
{
|
|
|
- field: 'openBank',
|
|
|
+ field: 'awardOpenBank',
|
|
|
title: '开户行',
|
|
|
width: 140,
|
|
|
},
|
|
|
{
|
|
|
- field: 'creatorName',
|
|
|
+ field: 'awardName',
|
|
|
title: '补充发放人员',
|
|
|
width: 140,
|
|
|
},
|
|
|
- { field: 'industryName', title: '重点', width: 100 },
|
|
|
- { field: 'industryName', title: '办理时长(天)', width: 120 },
|
|
|
+ { field: 'emphasis', title: '重点', width: 100 },
|
|
|
+ { field: 'totalFieldDay', title: '办理时长(天)', width: 120 },
|
|
|
{ field: 'county', title: '区域', width: 150 },
|
|
|
{ field: 'contact', title: '电话', width: 140 },
|
|
|
|
|
@@ -433,7 +433,7 @@ const queryList = () => {
|
|
|
Reflect.deleteProperty(requestParams.value, 'doneTime'); // 删除无用的参数
|
|
|
state.loading = true;
|
|
|
gridOptions.loading = true;
|
|
|
- getSSPAllOrder(requestParams.value)
|
|
|
+ getSSPStatisticsCitizenAdditionalReward(requestParams.value)
|
|
|
.then((response: any) => {
|
|
|
gridOptions.data = response?.result.items ?? [];
|
|
|
state.total = response?.result.total;
|