Commit 2a2ec648 by shaojiawen

update: 标签无效样式

parent 6bdcf7f6
...@@ -27,7 +27,10 @@ ...@@ -27,7 +27,10 @@
</div> </div>
<div class="flex flex-1"> <div class="flex flex-1">
<div class="font-14 line-22">活码标签:</div> <div class="font-14 line-22">活码标签:</div>
<el-tag size="small" type="info">{{ codeInfo.memberLabelName || '--' }}</el-tag> <el-tooltip :disabled="codeInfo.memberLabelStatus != 0" content="已删除" placement="top">
<el-tag size="small" :type="codeInfo.memberLabelStatus == 0 ? 'warning' : 'info'">{{ codeInfo.memberLabelName || '--' }}</el-tag>
</el-tooltip>
<!-- <el-tag size="small" type="info">{{ codeInfo.memberLabelName || '--' }}</el-tag> -->
</div> </div>
</div> </div>
<div v-if="codeInfo.statusFlag != 2" class="flex" style="padding-top:20px;"> <div v-if="codeInfo.statusFlag != 2" class="flex" style="padding-top:20px;">
...@@ -199,7 +202,7 @@ export default { ...@@ -199,7 +202,7 @@ export default {
padding-bottom: 0; padding-bottom: 0;
height: 40px; height: 40px;
background: white; background: white;
width: 100%; width: calc(100% - 180px);
// left: 50px; // left: 50px;
} }
.button-discard { .button-discard {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment