fix:修复循环密码文案错误

This commit is contained in:
范鹏 2024-09-27 14:24:03 +08:00
parent b309a53281
commit 6c19cbc0e0
3 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@
"appid" : "__UNI__933D519",
"description" : "",
"versionName" : "1.0.2",
"versionCode" : "21",
"versionCode" : "22",
"transformPx" : false,
/* */
"mp-weixin" : {

View File

@ -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">

View File

@ -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 += ' 自定义'