区域锁定修改

This commit is contained in:
2025-01-06 09:33:18 +08:00
parent bf9b4b3ee5
commit c2d21a85d4
2 changed files with 6 additions and 1 deletions

View File

@@ -513,6 +513,11 @@ uni-button[disabled]:not([type]), uni-button[disabled][type=default] {
border: 2rpx solid #DCDFE6;
border-radius: 10rpx;
}
.point-item.cgray {
background: #c9c9c9;
border-color: #c9c9c9;
color: #fff;
}
.point-item.cgreen {
background: #67C23A;
border-color: #67C23A;

View File

@@ -32,7 +32,7 @@
</view> -->
<view v-show="dataList.length > 0" class="zd_wrapper grid-wraper">
<view class="zd-row point-wraper">
<view class="zd-row point-item" v-for="(e, i) in dataList" :key="i" @click="toCheck(e)" :class="{'point-item_n5': index === 'QTJGSLZCQ', 'cgreen': e.point_status === '0', 'cyellow': e.point_status === '1'}">
<view class="zd-row point-item" v-for="(e, i) in dataList" :key="i" @click="toCheck(e)" :class="{'point-item_n5': index === '111-22', 'cgray': e.point_status === '0', 'cgreen': e.point_status === '1', 'cyellow': e.point_status === '2'}">
<text>{{e.point_name}}</text>
<uni-icons class="item-checked" type="checkbox-filled" size="22" :color="e.checked ? '#4e6ef2' : 'transparent'"></uni-icons>
</view>