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