|
@@ -16,8 +16,8 @@
|
|
|
>
|
|
|
<template #table-search>
|
|
|
<el-form :model="state.queryParams" ref="ruleFormRef" @submit.native.prevent inline>
|
|
|
- <el-form-item label="省工单编码" prop="ProvinceNo">
|
|
|
- <el-input v-model="state.queryParams.ProvinceNo" placeholder="省工单编码" clearable @keyup.enter="handleQuery" class="keyword-input"/>
|
|
|
+ <el-form-item label="省工单编码" prop="ReceiveProvinceNo">
|
|
|
+ <el-input v-model="state.queryParams.ReceiveProvinceNo" placeholder="省工单编码" clearable @keyup.enter="handleQuery" class="keyword-input"/>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="工单标题" prop="Keyword">
|
|
|
<el-input v-model="state.queryParams.Keyword" placeholder="工单标题" clearable @keyup.enter="handleQuery" class="keyword-input"/>
|
|
@@ -230,7 +230,7 @@ const state = reactive<any>({
|
|
|
PageSize: 20, // 每页条数
|
|
|
// 查询条件
|
|
|
No: null, // 工单编码
|
|
|
- ProvinceNo: null, // 省工单编码
|
|
|
+ ReceiveProvinceNo: null, // 省工单编码
|
|
|
ActualHandlerName: null, // 接办人
|
|
|
IsScreen: null, // 是否甄别
|
|
|
CurrentStepCode: null, // 办理节点
|
|
@@ -278,7 +278,7 @@ const state = reactive<any>({
|
|
|
// 表格配置项
|
|
|
const columns = ref<any[]>([
|
|
|
{ prop: 'expiredStatusText', label: '超期状态', align: 'center', minWidth: 80 },
|
|
|
- { prop: 'provinceNo', label: '省工单编码', minWidth: 240 },
|
|
|
+ { prop: 'receiveProvinceNo', label: '省工单编码', minWidth: 240 },
|
|
|
{ prop: 'no', label: '工单编码', minWidth: 140 },
|
|
|
{ prop: 'reTransactNum', label: '重办次数' },
|
|
|
{
|