This commit is contained in:
linfso 2024-05-10 13:50:08 +08:00
parent 66d02f5cd6
commit ead3ea9d7a

View File

@ -173,7 +173,10 @@
<!-- <el-table-column label="所属区域" align="center" prop="areaName" min-width="100" /> -->
<el-table-column label="启用状态" align="center" prop="status" min-width="100" >
<template slot-scope="scope">
<dict-tag :options="dict.type.sys_biz_enable_status" :value="scope.row.status"/>
<el-tag v-if="scope.row.status==1" type="success">启用</el-tag>
<el-tag v-if="scope.row.status==0" type="success">停用</el-tag>
<!-- <dict-tag :options="dict.type.sys_biz_enable_status" :value="scope.row.status"/> -->
</template>
</el-table-column>
<el-table-column label="国家" align="center" prop="countryName" width="80" :show-overflow-tooltip="true"/>