BUG优化 风险管控清单 隐患排查清单 二维码功能
parent
2d484e48ea
commit
ee247f0c14
|
@ -2,7 +2,7 @@
|
|||
<view :class="isUps == true ? 'prevent' : ''">
|
||||
<cu-custom bgColor="bg-gradual-blueness" :isBack="true">
|
||||
<block slot="backText">返回</block>
|
||||
<block slot="content">隐患登记</block>
|
||||
<block slot="content">隐患等级</block>
|
||||
</cu-custom>
|
||||
<scroll-view scroll-y="false" >
|
||||
<view class="form">
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<view :class="isUps == true ? 'prevent' : ''">
|
||||
<cu-custom bgColor="bg-gradual-blueness" :isBack="true">
|
||||
<block slot="backText">返回</block>
|
||||
<block slot="content">隐患登记</block>
|
||||
<block slot="content">隐患等级</block>
|
||||
</cu-custom>
|
||||
<scroll-view scroll-y="false" >
|
||||
<view class="form">
|
||||
|
|
|
@ -85,9 +85,7 @@ export default {
|
|||
},
|
||||
buttonloading: {
|
||||
type: Boolean,
|
||||
default: function() {
|
||||
return false
|
||||
}
|
||||
default: false
|
||||
},
|
||||
},
|
||||
data() {
|
||||
|
|
|
@ -77,7 +77,10 @@
|
|||
<view class="dy-title-flex">
|
||||
|
||||
<text> <view class="yuan" v-if="!item.TYPE == '1'"></view> 通知标题:</text>
|
||||
<text class="light red blue ">{{item.LEVEL}}</text>
|
||||
<text v-if="item.LEVEL == '紧急通知'" class="light red">{{ item.LEVEL }}</text>
|
||||
<text v-else-if="item.LEVEL == '重要通知'" class="light orange">{{ item.LEVEL }}</text>
|
||||
<text v-else class="light blue">{{ item.LEVEL }}</text>
|
||||
<!-- <text class="light red blue">{{item.LEVEL}}</text>-->
|
||||
</view>
|
||||
<view>
|
||||
<text>{{item.TITLE}}</text>
|
||||
|
@ -534,4 +537,7 @@
|
|||
.blue{
|
||||
color: #548de7;
|
||||
}
|
||||
.orange{
|
||||
color: #FFA500;
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in New Issue