Lou
2024-01-17 ef51ae09decb4e016a849d8a5d96be7f44dafc4f
subPackage/house/roomControl/index.vue
@@ -67,7 +67,7 @@
            <u-radio-group v-model="" class="mt-40" v-model="labelValue" placement="row">
               <u-radio :customStyle="{marginBottom: '8px'}" v-for="(item, index) in labelList" :key="index"
                  :label="item.name" :labelColor="item.color" :name="item.name" :activeColor="item.color"
                  :label="item.name" :labelColor="item.showColor" :name="item.name" :activeColor="item.showColor"
                  @change="radioChange(item)">
               </u-radio>
            </u-radio-group>
@@ -163,21 +163,29 @@
            labelList: [{
                  name: '撤销',
                  disabled: false,
                  color: '#EBEDF0'
                  // color: '#EBEDF0'
                  showColor: '#999',
                  color: '#999'
               },
               {
                  name: '绿',
                  disabled: false,
                  color: '#30D17C'
                  // color: '#30D17C'
                  showColor: '#30D17C',
                  color: 'green'
               },
               {
                  name: '黄',
                  disabled: false,
                  color: '#FFB42B'
                  // color: '#FFB42B'
                  showColor: '#FFB42B',
                  color: 'yellow'
               }, {
                  name: '红',
                  disabled: false,
                  color: '#EA1F1F'
                  // color: '#EA1F1F'
                  showColor: '#EA1F1F',
                  color: 'red'
               }
            ],
            currentLabelInfo: {},