|
@@ -43,7 +43,7 @@
|
|
|
</el-form-item>
|
|
|
<el-form-item label="审核状态" prop="authState">
|
|
|
<el-select v-model="queryParams.authState" style="width: 200px;" placeholder="请选择">
|
|
|
- <el-option v-for="(item, index) in authStateOptions" :key="index" :label="item.dictLabel" :value="item.dictValue"></el-option>
|
|
|
+ <el-option v-for="(item, index) in authStateEntOptions" :key="index" :label="item.dictLabel" :value="item.dictValue"></el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
|
|
@@ -95,7 +95,7 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column label="服务状态" prop="entState" align="center" width="120" :formatter="entSateFormat">
|
|
|
<template slot-scope="scope">
|
|
|
- <template v-if="scope.row.authState == '4'">
|
|
|
+ <template v-if="scope.row.authState == '3'">
|
|
|
<span>驳回</span>
|
|
|
</template>
|
|
|
<template v-else>
|
|
@@ -140,7 +140,7 @@
|
|
|
<script>
|
|
|
import {getProvinceDataApi,getRegionChildrenApi} from "@/api/common/common"
|
|
|
import {listEntApi, deleteEntApi, resetPwdApi, remindUserApi, stopEntUserApi,enableEntUserApi} from '@/api/admin/ent/ent'
|
|
|
- import {entStateOptions, getLabel, authStateOptions} from '@/utils/dataFormat'
|
|
|
+ import {entStateOptions, getLabel, authStateEntOptions} from '@/utils/dataFormat'
|
|
|
import {listEntTaxApi} from '@/api/gov/gov'
|
|
|
import { resetUserPwd } from "@/api/system/user";
|
|
|
import AuditEnt from "./components/service"
|
|
@@ -159,7 +159,7 @@
|
|
|
districtDataList: [],
|
|
|
recordVisible: false,
|
|
|
entStateOptions: entStateOptions,
|
|
|
- authStateOptions: authStateOptions,
|
|
|
+ authStateEntOptions: authStateEntOptions,
|
|
|
dateRange: [],
|
|
|
roleType: '',
|
|
|
queryParams: {
|
|
@@ -399,7 +399,7 @@
|
|
|
return getLabel(entStateOptions, val)
|
|
|
},
|
|
|
authStateFormat(row, col, val, index) {
|
|
|
- return getLabel(authStateOptions, val)
|
|
|
+ return getLabel(authStateEntOptions, val)
|
|
|
}
|
|
|
}
|
|
|
}
|