|
@@ -69,10 +69,9 @@
|
|
|
<!-- 更多查询 -->
|
|
|
<el-drawer v-model="drawer" title="更多查询" size="500px">
|
|
|
<el-form :model="state.queryParams" ref="drawerRuleFormRef" @submit.native.prevent label-width="100px">
|
|
|
- <el-form-item label="归档类型" prop="TypeId" v-if="['ZiGong'].includes(themeConfig.appScope)">
|
|
|
- <el-select v-model="state.queryParams.TypeId" placeholder="归档类型" @change="handleQuery">
|
|
|
- <el-option label="办件结果" value="1" />
|
|
|
- <el-option label="办件态度" value="2" />
|
|
|
+ <el-form-item label="归档类型" prop="AttitudeType" v-if="['ZiGong'].includes(themeConfig.appScope)">
|
|
|
+ <el-select v-model="state.queryParams.AttitudeType" placeholder="归档类型" @change="handleQuery">
|
|
|
+ <el-option :value="item.key" v-for="item in state.attitudeType" :key="item.key" :label="item.value"></el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="受理时间" prop="crTime">
|
|
@@ -222,7 +221,7 @@ const state = reactive<any>({
|
|
|
VisitUser: null,
|
|
|
OrgProcessingResults: null,
|
|
|
OrgId: null,
|
|
|
- TypeId: '1',
|
|
|
+ AttitudeType: 1,
|
|
|
TypeCode: 0,
|
|
|
},
|
|
|
tableData: [], //表单
|
|
@@ -283,6 +282,7 @@ const getBaseData = async () => {
|
|
|
const mappings: any = {
|
|
|
visitSatisfaction: 'visitSatisfaction',
|
|
|
orgsOptions: 'orgsOptions',
|
|
|
+ attitudeType: 'AttitudeType',
|
|
|
};
|
|
|
for (const key in mappings) {
|
|
|
state[key] = res.result?.[mappings[key]] ?? [];
|