Browse Source

提交修改

newStyle
风继续吹 11 months ago
parent
commit
90204bcd92
3 changed files with 21 additions and 2 deletions
  1. +3
    -1
      pages/center/warningList/warningList.vue
  2. +1
    -1
      pages/login/Verification.vue
  3. +17
    -0
      pages/mine/equipmentLog.vue

+ 3
- 1
pages/center/warningList/warningList.vue View File

@@ -8,7 +8,7 @@
{{ data.houseName || '' }}
</text>

<text :style="{color: item.showStatus == 0 ? 'blue' : 'black'}" @click="updateShowStatus(data)">已了解</text>
<text :style="{color: 'blue'}" @click="updateShowStatus(data)">已了解</text>
</view>
<u-checkbox-group @change="checkboxGroupChange" shape="circle">
<block v-for="item in data.list" :key="item.id">
@@ -58,6 +58,8 @@
icon: "none",
duration: 2000,
})
this.list = []
this.$forceUpdate()
setTimeout(() => {
this.getWarningList()
}, 1000)


+ 1
- 1
pages/login/Verification.vue View File

@@ -204,7 +204,7 @@
}
}, 1000);
} else {
util.showNone(data.data.message);
util.showNone(data.data.msg);
return false;
}
},


+ 17
- 0
pages/mine/equipmentLog.vue View File

@@ -62,6 +62,14 @@
</text>
</view>
</view>
<view class="recordingBoxItem">
<text class="left">设备电量:</text>
<view class="right" style="font-weight: bold;font-size: 28rpx;">
<text :style="{color: info.electricityStart <= 20 ?'red':'#333'}">
{{info.electricityStart || ''}}
</text>
</view>
</view>
</view>
<view class="recordingBox" style="margin-top: 40rpx;">
<text class="recordingBoxItem-title">录音关闭</text>
@@ -81,6 +89,15 @@
</text>
</view>
</view>
<view class="recordingBoxItem">
<text class="left">设备电量:</text>
<view class="right" style="font-weight: bold;font-size: 28rpx;">
<text :style="{color: info.electricityEnd <= 20 ?'red':'#333'}">
{{info.electricityEnd || ''}}
</text>
</view>
</view>
</view>
</view>
<view class="offlineRec">


Loading…
Cancel
Save