BUG优化 风险管控清单 隐患排查清单 二维码功能

dev
xiepeng 2024-07-02 10:20:18 +08:00
parent 2d484e48ea
commit ee247f0c14
4 changed files with 10 additions and 6 deletions

View File

@ -2,7 +2,7 @@
<view :class="isUps == true ? 'prevent' : ''"> <view :class="isUps == true ? 'prevent' : ''">
<cu-custom bgColor="bg-gradual-blueness" :isBack="true"> <cu-custom bgColor="bg-gradual-blueness" :isBack="true">
<block slot="backText">返回</block> <block slot="backText">返回</block>
<block slot="content">隐患登记</block> <block slot="content">隐患等级</block>
</cu-custom> </cu-custom>
<scroll-view scroll-y="false" > <scroll-view scroll-y="false" >
<view class="form"> <view class="form">

View File

@ -2,7 +2,7 @@
<view :class="isUps == true ? 'prevent' : ''"> <view :class="isUps == true ? 'prevent' : ''">
<cu-custom bgColor="bg-gradual-blueness" :isBack="true"> <cu-custom bgColor="bg-gradual-blueness" :isBack="true">
<block slot="backText">返回</block> <block slot="backText">返回</block>
<block slot="content">隐患登记</block> <block slot="content">隐患等级</block>
</cu-custom> </cu-custom>
<scroll-view scroll-y="false" > <scroll-view scroll-y="false" >
<view class="form"> <view class="form">

View File

@ -85,9 +85,7 @@ export default {
}, },
buttonloading: { buttonloading: {
type: Boolean, type: Boolean,
default: function() { default: false
return false
}
}, },
}, },
data() { data() {

View File

@ -77,7 +77,10 @@
<view class="dy-title-flex"> <view class="dy-title-flex">
<text> <view class="yuan" v-if="!item.TYPE == '1'"></view> </text> <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>
<view> <view>
<text>{{item.TITLE}}</text> <text>{{item.TITLE}}</text>
@ -534,4 +537,7 @@
.blue{ .blue{
color: #548de7; color: #548de7;
} }
.orange{
color: #FFA500;
}
</style> </style>