修改时间和提示信息

This commit is contained in:
老叶
2021-08-31 17:31:48 +08:00
parent 2d809cdf6c
commit cfda72f82c
2 changed files with 15 additions and 6 deletions
+6 -5
View File
@@ -48,8 +48,8 @@ Page({
isPreview:false,//是否预览
isShowcheck:false,//是否显示预览核对弹框
checkCount: 4,
checktext: '5s',
checkCount: 2,
checktext: '3s',
},
//生命周期函数--监听页面加载
@@ -64,6 +64,7 @@ Page({
this.getAppSeriesBrands()
this.getUserInfo()
},
//获取用户信息
@@ -438,8 +439,8 @@ Page({
that.setData({
isShowcheck:true,
checkCount:4,
checktext: 5 + 's'
checkCount:2,
checktext: 3 + 's'
})
let interval = setInterval(res => {
if (that.data.checkCount > 0) {
@@ -451,7 +452,7 @@ Page({
clearInterval(interval)
that.setData({
checkCount: 5,
checktext: '知道了'
checktext: '知道了'
})
}
}, 1000)
+9 -1
View File
@@ -274,7 +274,15 @@
<lcb-msg isShow="{{isShowcheck}}">
<view slot="content">
<view class="inner40 pt60 pb60 line-height-16 font-34 color-666">请核对客户姓名,手机号,身份证,地址等信息是否填写正确!</view>
<view class="inner40 pt60 pb60 line-height-16 font-34 color-666">
<view class="text-center text-bold">请确认填写信息准确无误!</view>
<!-- <view class="mt20">
<view>客户姓名:{{name}}</view>
<view>客户手机号:{{mobile}}</view>
<view>客户身份证号:{{cardid}}</view>
<view>客户地址:{{sign}}</view>
</view> -->
</view>
<view class="bts-1-eb text-center font-32 color-666">
<view class="pt25 pb25 {{checkCount==5?'color-36afa2':'color-ccc'}}" bindtap="{{checkCount==5?'optShowcheck':''}}">{{checktext}}</view>
</view>