修改标签绑定代码提交
This commit is contained in:
parent
aa2a2a7ab0
commit
1a7fac7cb9
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in New Issue