修改标签绑定代码提交

This commit is contained in:
zhouxain01 2023-12-22 17:29:57 +08:00
parent aa2a2a7ab0
commit 1a7fac7cb9
1 changed files with 9 additions and 1 deletions

View File

@ -194,7 +194,15 @@
<el-table-column label="状态" align="center" prop="status">
<template slot-scope="scope">
<span>{{ scope.row.status == 1 ? '已绑定' : '未绑定' }}</span>
<span>{{
scope.row.status == 0
? '未绑定'
: scope.row.status == 1
? '已绑定'
: scope.row.status == 2
? '已解绑'
: ''
}}</span>
<!-- <dict-tag
:options="dict.type.sys_normal_disable"
:value="scope.row.status"