fix:修复循环密码文案错误
This commit is contained in:
parent
b309a53281
commit
6c19cbc0e0
@ -3,7 +3,7 @@
|
||||
"appid" : "__UNI__933D519",
|
||||
"description" : "",
|
||||
"versionName" : "1.0.2",
|
||||
"versionCode" : "21",
|
||||
"versionCode" : "22",
|
||||
"transformPx" : false,
|
||||
/* 小程序特有相关 */
|
||||
"mp-weixin" : {
|
||||
|
||||
@ -16,7 +16,7 @@
|
||||
<view class="item-content">{{ timeFormat(currentPasswordInfo.endDate, 'yyyy-mm-dd h:M') }}</view>
|
||||
</view>
|
||||
<view v-else>
|
||||
{{ currentPasswordInfo.timeText }}
|
||||
{{ currentPasswordInfo.timeText.slice(0, -3) }}
|
||||
</view>
|
||||
</view>
|
||||
<view class="item" style="margin-top: 20rpx">
|
||||
|
||||
@ -213,7 +213,7 @@ export const useLockStore = defineStore('lock', {
|
||||
} else if(data.list[i].keyboardPwdType === 14) {
|
||||
text = '周日'
|
||||
}
|
||||
data.list[i].timeText = `${text} ${data.list[i].hoursStart}:00-${data.list[i].hoursEnd}:00`
|
||||
data.list[i].timeText = `${text} ${data.list[i].hoursStart}:00-${data.list[i].hoursEnd}:00 循环`
|
||||
}
|
||||
if(data.list[i].isCustom === 1) {
|
||||
data.list[i].timeText += ' 自定义'
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user