|
@@ -99,11 +99,11 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
|
|
|
- <el-table-column label="状态" align="center">
|
|
|
+ <el-table-column label="状态" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
<div v-for="item in dicts" :key="item.id">
|
|
|
- <el-tag v-if="scope.row.lockFlag.toString() == item.itemValue" :type="scope.row.lockFlag ? '' : 'info'">{{
|
|
|
+ <el-tag v-if="scope.row.lockFlag.toString() == item.itemValue" :type="scope.row.lockFlag==0 ? '' : 'danger'">{{
|
|
|
item.itemText }}
|
|
|
</el-tag>
|
|
|
</div>
|
|
@@ -187,7 +187,7 @@
|
|
|
active-text="正常"
|
|
|
active-value="0"
|
|
|
inactive-text="锁定"
|
|
|
- inactive-value="9"
|
|
|
+ inactive-value="1"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
|