|
@@ -11,10 +11,10 @@
|
|
|
</div>
|
|
|
<div class="flex-center-align mb20" v-auth="'business:visit:todo:orderType'">
|
|
|
<span class="fast-search-label">工单类型</span>
|
|
|
- <el-radio-group v-model="state.queryParams.QuerySelf" @change="handleQuery">
|
|
|
- <el-radio-button label="true">我的</el-radio-button>
|
|
|
+ <el-radio-group v-model="state.queryParams.IsProvince" @change="handleQuery">
|
|
|
+ <el-radio-button label="">我的</el-radio-button>
|
|
|
<el-radio-button label="false">市工单</el-radio-button>
|
|
|
- <el-radio-button label="false">省工单</el-radio-button>
|
|
|
+ <el-radio-button label="true">省工单</el-radio-button>
|
|
|
</el-radio-group>
|
|
|
</div>
|
|
|
<el-form :model="state.queryParams" ref="ruleFormRef" @submit.native.prevent label-width="100px">
|
|
@@ -147,6 +147,7 @@ const closeSearch = () => {
|
|
|
const columns = ref<any[]>([
|
|
|
{ type: 'selection', fixed: 'left', width: 55, align: 'center' },
|
|
|
{ prop: 'order.no', label: '工单编码', width: 150 },
|
|
|
+ { prop: 'order.isProvinceText', label: '省/市工单', width: 100 },
|
|
|
{ prop: 'order.title', label: '工单标题', width: 300 },
|
|
|
{ prop: 'order.sourceChannel', label: '来源渠道', width: 100 },
|
|
|
{ prop: 'visitStateText', label: '回访状态', width: 100 },
|
|
@@ -210,6 +211,7 @@ const state = reactive({
|
|
|
No: null,
|
|
|
QuerySelf: true, // 是否只查询自己的待回访工单
|
|
|
EmployeeName: null, // 回访人
|
|
|
+ IsProvince:'',// 是否省工单
|
|
|
},
|
|
|
tableData: [], //表单
|
|
|
loading: false, // 加载
|