更新
This commit is contained in:
@ -17,8 +17,8 @@
|
|||||||
:tableConfiger="pageData.tableConfiger"
|
:tableConfiger="pageData.tableConfiger"
|
||||||
:controlsWidth="pageData.controlsWidth"
|
:controlsWidth="pageData.controlsWidth"
|
||||||
>
|
>
|
||||||
<template #bkzt="{ row }">
|
<template #bkshzt="{ row }">
|
||||||
<DictTag :tag="false" :value="row.bkzt" :options="D_BZ_RCBKZT" />
|
<DictTag :tag="false" :value="row.bkshzt" :options="D_BZ_RCSHZT" />
|
||||||
</template>
|
</template>
|
||||||
<template #fxDj="{ row }">
|
<template #fxDj="{ row }">
|
||||||
<DictTag :tag="false" :value="row.fxDj" :options="D_GS_RQFJ_FXDJ" />
|
<DictTag :tag="false" :value="row.fxDj" :options="D_GS_RQFJ_FXDJ" />
|
||||||
@ -37,20 +37,18 @@
|
|||||||
</template>
|
</template>
|
||||||
<!-- 操作 -->
|
<!-- 操作 -->
|
||||||
<template #controls="{ row }">
|
<template #controls="{ row }">
|
||||||
<div class="control-buttons">
|
<el-button type="primary" v-if="roleList.includes('BK_SH_RY')" size="small" @click="handleDetail(row,'审核')"
|
||||||
<el-button type="primary" v-if="roleList.includes('BK_SH_RY')" size="small" @click="handleDetail(row,'审核')"
|
>审核</el-button
|
||||||
>审核</el-button
|
>
|
||||||
>
|
<!-- <el-button type="info" size="small" @click="handleDetail(row,'审批')"
|
||||||
<!-- <el-button type="info" size="small" @click="handleDetail(row,'审批')"
|
>审批</el-button
|
||||||
>审批</el-button
|
>
|
||||||
>
|
<el-button type="warning" size="small" @click="handleDetail(row,'去除')"
|
||||||
<el-button type="warning" size="small" @click="handleDetail(row,'去除')"
|
>去除</el-button
|
||||||
>去除</el-button
|
>
|
||||||
>
|
<el-button type="danger" size="small" @click="handleDetail(row,'拉黑')"
|
||||||
<el-button type="danger" size="small" @click="handleDetail(row,'拉黑')"
|
>拉黑</el-button
|
||||||
>拉黑</el-button
|
>-->
|
||||||
>-->
|
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
</MyTable>
|
</MyTable>
|
||||||
<Pages
|
<Pages
|
||||||
@ -78,10 +76,9 @@ import { qcckGet, qcckPost, qcckDelete } from "@/api/qcckApi.js";
|
|||||||
import { reactive, ref, onMounted, getCurrentInstance } from "vue";
|
import { reactive, ref, onMounted, getCurrentInstance } from "vue";
|
||||||
|
|
||||||
const { proxy } = getCurrentInstance();
|
const { proxy } = getCurrentInstance();
|
||||||
const { D_BZ_RCSHZT,D_BZ_RCBKZT, D_GS_RQFJ_LX, D_GS_RQFJ_FXDJ, D_BZ_SF, D_GS_RQFJ_FXLB } =
|
const { D_BZ_RCSHZT, D_GS_RQFJ_LX, D_GS_RQFJ_FXDJ, D_BZ_SF, D_GS_RQFJ_FXLB } =
|
||||||
proxy.$dict(
|
proxy.$dict(
|
||||||
"D_BZ_RCSHZT",
|
"D_BZ_RCSHZT",
|
||||||
"D_BZ_RCBKZT",
|
|
||||||
"D_GS_RQFJ_LX",
|
"D_GS_RQFJ_LX",
|
||||||
"D_GS_RQFJ_FXDJ",
|
"D_GS_RQFJ_FXDJ",
|
||||||
"D_BZ_SF",
|
"D_BZ_SF",
|
||||||
@ -132,7 +129,7 @@ const pageData = reactive({
|
|||||||
pageSize: 20,
|
pageSize: 20,
|
||||||
pageCurrent: 1
|
pageCurrent: 1
|
||||||
},
|
},
|
||||||
// controlsWidth: 300,
|
controlsWidth: 120,
|
||||||
tableColumn: [
|
tableColumn: [
|
||||||
{ label: "姓名", prop: "ryXm" },
|
{ label: "姓名", prop: "ryXm" },
|
||||||
{ label: "手机号码", prop: "rySjhm" },
|
{ label: "手机号码", prop: "rySjhm" },
|
||||||
@ -143,7 +140,7 @@ const pageData = reactive({
|
|||||||
{ label: "银行卡号", prop: "ryYhkh" },
|
{ label: "银行卡号", prop: "ryYhkh" },
|
||||||
{ label: "附件照片", prop: "ryFjZp" },
|
{ label: "附件照片", prop: "ryFjZp" },
|
||||||
{ label: "管辖单位", prop: "gxDwDm" },
|
{ label: "管辖单位", prop: "gxDwDm" },
|
||||||
{ label: "布控状态", prop: "bkzt", showSolt: true },
|
{ label: "审核布控状态", prop: "bkshzt", showSolt: true },
|
||||||
{ label: "风险等级", prop: "fxDj", showSolt: true },
|
{ label: "风险等级", prop: "fxDj", showSolt: true },
|
||||||
{ label: "风险类别", prop: "fxLb", showSolt: true },
|
{ label: "风险类别", prop: "fxLb", showSolt: true },
|
||||||
{ label: "是否关注", prop: "sfGz", showSolt: true },
|
{ label: "是否关注", prop: "sfGz", showSolt: true },
|
||||||
|
Reference in New Issue
Block a user