diff --git a/api/api.js b/api/api.js index 793d0a8..a6e283d 100644 --- a/api/api.js +++ b/api/api.js @@ -332,11 +332,16 @@ export function loginConfigApi() { // 保存用户身份信息 export function getInformation(data) { - return request.post('identity/save', data, { + return request.post('identity/saveWithVerifyIdentity', data, { + noAuth: true + }); +} +// 保存用户身份信息 +export function getInformationSave(data) { + return request.post('identity/save ', data, { noAuth: true }); } - // 分期套餐列表 export function getfenqilist(data) { @@ -351,6 +356,12 @@ export function getreceivable(data) { noAuth: true }); } +// 身份证检验 +export function idcardCheck(data) { + return request.get('user/idcardCheck', data, { + noAuth: true + }); +} // 分期详情--查询用户分期账单(未签约) export function getinstallment(data) { diff --git a/api/store.js b/api/store.js index 9895d79..0658ab2 100644 --- a/api/store.js +++ b/api/store.js @@ -83,6 +83,7 @@ export function getCategoryList() { * @param object data */ export function getProductslist(data) { + return request.get('products', data, { noAuth: true }); diff --git a/api/user.js b/api/user.js index ec3e789..8ae3fb6 100644 --- a/api/user.js +++ b/api/user.js @@ -98,6 +98,14 @@ export function getSignConfig(){ export function getSignList(data){ return request.get('user/sign/list',data); } + +/** + * 获取是否存在分期订单 + * @param object data +*/ +export function getOrderstause(data){ + return request.get('user/isExistOrder',data); +} /** * 校验openid * @param object data diff --git a/components/am-sign-input/README.md b/components/am-sign-input/README.md new file mode 100644 index 0000000..b2dfd2d --- /dev/null +++ b/components/am-sign-input/README.md @@ -0,0 +1,83 @@ +### 使用方法 +* 注意 ++ 同一个页面不同的输入框需要设置不同的canvasId和canvasIds,否则在同一个页面会出现冲突 +``` + +``` +``` + +``` +``` + +``` + +#### 实际效果演示H5 +- 打开演示后,按F12调整到手机调试模式查看效果 +[实际效果演示](https://static-mp-2766f90e-0e50-4c71-87fb-0ab51aedcf85.next.bspapp.com/signInput/#/) + +### 参数说明Props + +参数|类型|说明|必传 +---|---|---|--- +action|String|生成图片后上传的接口地址|true +canvasId|String|canvasId|true +canvasIds|String|canvasIds与上一个id不可重复|true +header|Object|文件上传携带的头部属性|true +outSignWidth|Number|输出图片文件大小-宽度|false +outSignHeight|Number|输出图片文件大小-高度|false +minSpeed|Number|画笔最小速度|false +minWidth|Number|线条最小粗度|false +maxWidth|Number|线条最大粗度|false +openSmooth|Boolean|开启平滑线条(笔锋)|false +maxHistoryLength|Number|历史最大长度(用于撤销的步数)|false +maxWidthDiffRate|Number|最大差异率|false +undoScan|Number|撤销重新渲染偏移缩放校准|false +bgColor|String|背景色如#ffffff 不传则为透明|false + +### 相关同源插件 +- 以页面形式展现 +- [电子签名组件](https://ext.dcloud.net.cn/plugin?id=5768) + +### 相关致谢 +- 插件参考 [大佬的npm库](https://github.com/linjc/smooth-signature) \ No newline at end of file diff --git a/components/am-sign-input/am-sign-input.vue b/components/am-sign-input/am-sign-input.vue new file mode 100644 index 0000000..9bd5238 --- /dev/null +++ b/components/am-sign-input/am-sign-input.vue @@ -0,0 +1,862 @@ + + + + + \ No newline at end of file diff --git a/components/am-sign-input/image-tools/README.md b/components/am-sign-input/image-tools/README.md new file mode 100644 index 0000000..1f24012 --- /dev/null +++ b/components/am-sign-input/image-tools/README.md @@ -0,0 +1,76 @@ +# image-tools +图像转换工具,可用于如下环境:uni-app、微信小程序、5+APP、浏览器(需允许跨域) + +## 使用方式 + +### NPM + +``` +npm i image-tools --save +``` + +```js +import { pathToBase64, base64ToPath } from 'image-tools' +``` + +### 直接下载 + +```js +// 以下路径需根据项目实际情况填写 +import { pathToBase64, base64ToPath } from '../../js/image-tools/index.js' +``` + +## API + +### pathToBase64 + +从图像路径转换为base64,uni-app、微信小程序和5+APP使用的路径不支持网络路径,如果是网络路径需要先使用下载API下载下来。 + +```js +pathToBase64(path) + .then(base64 => { + console.log(base64) + }) + .catch(error => { + console.error(error) + }) +``` + +### base64ToPath + +将图像base64保存为文件,返回文件路径。 + +```js +base64ToPath(base64) + .then(path => { + console.log(path) + }) + .catch(error => { + console.error(error) + }) +``` + +## 提示 + +可以利用promise来串行和并行的执行多个任务 + +```js +// 并行 +Promise.all(paths.map(path => pathToBase64(path))) + .then(res => { + console.log(res) + // [base64, base64...] + }) + .catch(error => { + console.error(error) + }) +// 串行 +paths.reduce((promise, path) => promise.then(res => pathToBase64(path).then(base64 => (res.push(base64), res))), Promise.resolve([])) + .then(res => { + console.log(res) + // [base64, base64...] + }) + .catch(error => { + console.error(error) + }) +``` \ No newline at end of file diff --git a/components/am-sign-input/image-tools/index.js b/components/am-sign-input/image-tools/index.js new file mode 100644 index 0000000..acf40bc --- /dev/null +++ b/components/am-sign-input/image-tools/index.js @@ -0,0 +1,196 @@ +function getLocalFilePath(path) { + if (path.indexOf('_www') === 0 || path.indexOf('_doc') === 0 || path.indexOf('_documents') === 0 || path.indexOf('_downloads') === 0) { + return path + } + if (path.indexOf('file://') === 0) { + return path + } + if (path.indexOf('/storage/emulated/0/') === 0) { + return path + } + if (path.indexOf('/') === 0) { + var localFilePath = plus.io.convertAbsoluteFileSystem(path) + if (localFilePath !== path) { + return localFilePath + } else { + path = path.substr(1) + } + } + return '_www/' + path +} + +function dataUrlToBase64(str) { + var array = str.split(',') + return array[array.length - 1] +} + +var index = 0 +function getNewFileId() { + return Date.now() + String(index++) +} + +function biggerThan(v1, v2) { + var v1Array = v1.split('.') + var v2Array = v2.split('.') + var update = false + for (var index = 0; index < v2Array.length; index++) { + var diff = v1Array[index] - v2Array[index] + if (diff !== 0) { + update = diff > 0 + break + } + } + return update +} + +export function pathToBase64(path) { + return new Promise(function(resolve, reject) { + if (typeof window === 'object' && 'document' in window) { + if (typeof FileReader === 'function') { + var xhr = new XMLHttpRequest() + xhr.open('GET', path, true) + xhr.responseType = 'blob' + xhr.onload = function() { + if (this.status === 200) { + let fileReader = new FileReader() + fileReader.onload = function(e) { + resolve(e.target.result) + } + fileReader.onerror = reject + fileReader.readAsDataURL(this.response) + } + } + xhr.onerror = reject + xhr.send() + return + } + var canvas = document.createElement('canvas') + var c2x = canvas.getContext('2d') + var img = new Image + img.onload = function() { + canvas.width = img.width + canvas.height = img.height + c2x.drawImage(img, 0, 0) + resolve(canvas.toDataURL()) + canvas.height = canvas.width = 0 + } + img.onerror = reject + img.src = path + return + } + if (typeof plus === 'object') { + plus.io.resolveLocalFileSystemURL(getLocalFilePath(path), function(entry) { + entry.file(function(file) { + var fileReader = new plus.io.FileReader() + fileReader.onload = function(data) { + resolve(data.target.result) + } + fileReader.onerror = function(error) { + reject(error) + } + fileReader.readAsDataURL(file) + }, function(error) { + reject(error) + }) + }, function(error) { + reject(error) + }) + return + } + if (typeof wx === 'object' && wx.canIUse('getFileSystemManager')) { + wx.getFileSystemManager().readFile({ + filePath: path, + encoding: 'base64', + success: function(res) { + resolve('data:image/png;base64,' + res.data) + }, + fail: function(error) { + reject(error) + } + }) + return + } + reject(new Error('not support')) + }) +} + +export function base64ToPath(base64) { + return new Promise(function(resolve, reject) { + if (typeof window === 'object' && 'document' in window) { + base64 = base64.split(',') + var type = base64[0].match(/:(.*?);/)[1] + var str = atob(base64[1]) + var n = str.length + var array = new Uint8Array(n) + while (n--) { + array[n] = str.charCodeAt(n) + } + return resolve((window.URL || window.webkitURL).createObjectURL(new Blob([array], { type: type }))) + } + var extName = base64.split(',')[0].match(/data\:\S+\/(\S+);/) + if (extName) { + extName = extName[1] + } else { + reject(new Error('base64 error')) + } + var fileName = getNewFileId() + '.' + extName + if (typeof plus === 'object') { + var basePath = '_doc' + var dirPath = 'uniapp_temp' + var filePath = basePath + '/' + dirPath + '/' + fileName + if (!biggerThan(plus.os.name === 'Android' ? '1.9.9.80627' : '1.9.9.80472', plus.runtime.innerVersion)) { + plus.io.resolveLocalFileSystemURL(basePath, function(entry) { + entry.getDirectory(dirPath, { + create: true, + exclusive: false, + }, function(entry) { + entry.getFile(fileName, { + create: true, + exclusive: false, + }, function(entry) { + entry.createWriter(function(writer) { + writer.onwrite = function() { + resolve(filePath) + } + writer.onerror = reject + writer.seek(0) + writer.writeAsBinary(dataUrlToBase64(base64)) + }, reject) + }, reject) + }, reject) + }, reject) + return + } + var bitmap = new plus.nativeObj.Bitmap(fileName) + bitmap.loadBase64Data(base64, function() { + bitmap.save(filePath, {}, function() { + bitmap.clear() + resolve(filePath) + }, function(error) { + bitmap.clear() + reject(error) + }) + }, function(error) { + bitmap.clear() + reject(error) + }) + return + } + if (typeof wx === 'object' && wx.canIUse('getFileSystemManager')) { + var filePath = wx.env.USER_DATA_PATH + '/' + fileName + wx.getFileSystemManager().writeFile({ + filePath: filePath, + data: dataUrlToBase64(base64), + encoding: 'base64', + success: function() { + resolve(filePath) + }, + fail: function(error) { + reject(error) + } + }) + return + } + reject(new Error('not support')) + }) +} \ No newline at end of file diff --git a/components/am-sign-input/image-tools/package.json b/components/am-sign-input/image-tools/package.json new file mode 100644 index 0000000..edbdc1d --- /dev/null +++ b/components/am-sign-input/image-tools/package.json @@ -0,0 +1,25 @@ +{ + "name": "image-tools", + "version": "1.4.0", + "description": "图像转换工具,可用于如下环境:uni-app、微信小程序、5+APP、浏览器", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/zhetengbiji/image-tools.git" + }, + "keywords": [ + "base64" + ], + "author": "Shengqiang Guo", + "license": "ISC", + "bugs": { + "url": "https://github.com/zhetengbiji/image-tools/issues" + }, + "homepage": "https://github.com/zhetengbiji/image-tools#readme", + "devDependencies": { + "@types/html5plus": "^1.0.0" + } +} diff --git a/components/am-sign-input/pickerColor.vue b/components/am-sign-input/pickerColor.vue new file mode 100644 index 0000000..37509d3 --- /dev/null +++ b/components/am-sign-input/pickerColor.vue @@ -0,0 +1,143 @@ + + + + + \ No newline at end of file diff --git a/components/am-sign-input/u-mask/u-mask.vue b/components/am-sign-input/u-mask/u-mask.vue new file mode 100644 index 0000000..34b1e1e --- /dev/null +++ b/components/am-sign-input/u-mask/u-mask.vue @@ -0,0 +1,124 @@ + + + + + \ No newline at end of file diff --git a/pages/activity/promotionList/index.vue b/pages/activity/promotionList/index.vue index 44689b7..d4a7105 100644 --- a/pages/activity/promotionList/index.vue +++ b/pages/activity/promotionList/index.vue @@ -102,7 +102,17 @@ }) }, getProductRank(){ - productRank().then(res=>{ + let abb=0 + if(uni.getStorageSync('channelId')){ + abb=uni.getStorageSync('channelId') + }else{ + + } + + let data ={ + channelId:abb + } + productRank(data).then(res=>{ this.tempArr = res.data; }) }, diff --git a/pages/goods_cate/components/contracted.vue b/pages/goods_cate/components/contracted.vue index 70da710..a5d86b0 100644 --- a/pages/goods_cate/components/contracted.vue +++ b/pages/goods_cate/components/contracted.vue @@ -65,7 +65,8 @@ page: 1, limit: 10, cid: 0, - hostProduct: [] + hostProduct: [], + channelId:0, } }, created(){ @@ -106,10 +107,18 @@ if (that.loading) return; that.loading = true; that.loadTitle = ''; + + if(uni.getStorageSync('channelId')){ + that.channelId=uni.getStorageSync('channelId') + }else{ + + } + getProductslist({ page: that.page, limit: that.limit, - cid: that.cid + cid: that.cid, + channelId: that.channelId, }).then(res => { let list = res.data.list, loadend = list.length < that.limit; diff --git a/pages/goods_cate/components/fresh.vue b/pages/goods_cate/components/fresh.vue index 68a8c33..6a6c5a3 100644 --- a/pages/goods_cate/components/fresh.vue +++ b/pages/goods_cate/components/fresh.vue @@ -198,7 +198,8 @@ cartCount: 0, totalPrice: 0.00, lengthCart: 0, - theme:'theme1' + theme:'theme1', + channelId:0 } }, created(){ @@ -397,11 +398,16 @@ if (that.loading) return; that.loading = true; that.loadTitle = ''; + if(uni.getStorageSync('channelId')){ + that.channelId=uni.getStorageSync('channelId') + } + getProductslist({ page: that.page, limit: that.limit, type: 1, cid: that.sid, + channelId: that.channelId }).then(res => { let list = res.data.list, loadend = list.length < that.limit; diff --git a/pages/goods_cate/components/optimization.vue b/pages/goods_cate/components/optimization.vue index 892959a..8801e96 100644 --- a/pages/goods_cate/components/optimization.vue +++ b/pages/goods_cate/components/optimization.vue @@ -393,11 +393,19 @@ if (that.loading) return; that.loading = true; that.loadTitle = ''; + let abb =0 + if(uni.getStorageSync('channelId')){ + abb=uni.getStorageSync('channelId') + }else{ + + } + console.log('3调用的'); getProductslist({ page: that.page, limit: that.limit, type: 1, - cid: that.sid + cid: that.sid, + channelId:abb, }).then(res => { let list = res.data.list, loadend = list.length < that.limit; //返回列表长度小于请求分页长度为true,反之为false diff --git a/pages/goods_details/index.vue b/pages/goods_details/index.vue index 51a7d5d..c3e9b5d 100644 --- a/pages/goods_details/index.vue +++ b/pages/goods_details/index.vue @@ -376,7 +376,7 @@ } from "@/utils"; import parser from "@/components/jyf-parser/jyf-parser"; import { - computeUser + computeUser,getOrderstause } from "@/api/user.js"; // #ifdef MP import { @@ -538,7 +538,8 @@ }, couponType: 0,//优惠券类型 类型,1-通用,2-商品,3-品类 fenqlist:[],//分期 - isshim:false + isshim:false, + stause:false, }; }, computed: mapGetters(['isLogin', 'uid', 'chatUrl', 'productType']), @@ -554,6 +555,7 @@ //校验token是否有效,true为有效,false为无效 this.getTokenIsExist(); this.getshiminfo() + this.getstause() }, onLoad(options) { // console.log(JSON.stringify(options),"options.spread") @@ -669,7 +671,25 @@ }, methods: { // - + getstause(){ + let data ={ + uid: this.$store.getters.uid, + } + getOrderstause(data).then(res => { + + if (res.code== '200') { + this.stause=res.data + // this.isshim=res.data + + } + + }).catch(error => { + + this.$util.Tips({ + title: error + }); + }); + }, getshiminfo(){ let data={ uid: this.$store.getters.uid, @@ -1366,7 +1386,14 @@ // }) } else { if(this.isshim){ - this.goCat(0); + if(this.stause){ + this.$util.Tips({ + title: '您有正在进行的订单,请还款后再继续' + }); + }else{ + this.goCat(0); + } + }else{ this.$util.Tips({ title: '请在我的页面完成实名认证' diff --git a/pages/goods_list/index.vue b/pages/goods_list/index.vue index 91f1da7..0606de4 100644 --- a/pages/goods_list/index.vue +++ b/pages/goods_list/index.vue @@ -104,7 +104,8 @@ loading: false, loadTitle: '加载更多', title: '', - theme:app.globalData.theme + theme:app.globalData.theme, + channelId:0 }; }, onLoad: function(options) { @@ -189,6 +190,11 @@ if (isPage === true) that.$set(that, 'productList', []); that.loading = true; that.loadTitle = ''; + if(uni.getStorageSync('channelId')){ + that.channelId=uni.getStorageSync('channelId') + } + + that.where.channelId=that.channelId getProductslist(that.where).then(res => { let list = res.data.list; let productList = that.$util.SplitArray(list, that.productList); diff --git a/pages/goods_search/index.vue b/pages/goods_search/index.vue index 144e17b..6590191 100644 --- a/pages/goods_search/index.vue +++ b/pages/goods_search/index.vue @@ -59,6 +59,7 @@ loadTitle: '加载更多', isbastList: false, theme:app.globalData.theme, + channelId:0, }; }, onShow: function() { @@ -85,7 +86,15 @@ if (that.loading) return; that.loading = true; that.loadTitle = ''; + let abb = 0 + if(uni.getStorageSync('channelId')){ + that.channelId=uni.getStorageSync('channelId') + }else{ + + } + getProductslist({ + channelId: that.channelId, keyword: that.searchValue, page: that.page, limit: that.limit diff --git a/pages/index/index.vue b/pages/index/index.vue index 06d1a75..76ece2f 100644 --- a/pages/index/index.vue +++ b/pages/index/index.vue @@ -655,7 +655,7 @@ that.latitude = lb.latitude; that.longitude = lb.longitude; - that.$jsonp( 'https://api.map.baidu.com/reverse_geocoding/v3/?ak=E8WVg8s0zMvu3Bb3A9SQTy7xPzTJrX4c&output=json&coordtype=wgs84&location='+lb.latitude+ ',' + lb.longitude, + that.$jsonp('https://api.map.baidu.com/reverse_geocoding/v3/?ak=E8WVg8s0zMvu3Bb3A9SQTy7xPzTJrX4c&output=json&coordtype=wgs84&location='+lb.latitude+ ',' + lb.longitude, ).then(res => { console.log(res,'百度') let add=res.result.addressComponent @@ -666,7 +666,15 @@ console.log(data.address,111) }) }) - + .catch(error => { + console.log(error,'errorerror'); + data.longitude=lb.longitude + data.latitude=lb.latitude + // 处理接口请求错误的情况 + getip(data).then(res => { + console.log(data.address,111) + }) + }); }, fail:function(err){ console.log(err); diff --git a/pages/users/aliLogin/index.vue b/pages/users/aliLogin/index.vue index 2d4a3a5..6c1f910 100644 --- a/pages/users/aliLogin/index.vue +++ b/pages/users/aliLogin/index.vue @@ -18,9 +18,9 @@
-
@@ -104,7 +104,9 @@ appleUserInfo: null, appleShow: false, // 苹果登录版本必须要求ios13以上的 theme: app.globalData.theme, - text: '获取验证码' + text: '获取验证码', + countdown: 0, + isCountdownStarted: false, } }, @@ -114,7 +116,7 @@ this.getjmauthCode() }, methods: { - getjmauthCode(){ + getjmauthCode() { my.postMessage({ data: { action: 'getjmCode' @@ -144,7 +146,7 @@ console.log(that.authCode, 'that.authCodethat.authCode'); // uni.setStorageSync('aliOpenid',this.openId) that.alicode() - }else if(e.type=='jmcodeResult'){ + } else if (e.type == 'jmcodeResult') { that.authCode = e.data that.jmalicode() } @@ -157,26 +159,26 @@ } // console.log('调用了'); uni.request({ - url: 'https://yruibao.com/prod/api/front/login/aliOauthLogin', + url: 'https://yruibao.com/prod/api/front/login/aliOauthLogin', // url: 'http://192.168.2.26:20411/api/front/login/aliOauthLogin', //仅为示例,并非真实接口地址。 data: data, method: 'POST', - + success: (res) => { - + if (res.data.code == 200) { - this.openId=res.data.data.alipaySystemOauthTokenResponse.openId + this.openId = res.data.data.alipaySystemOauthTokenResponse.openId console.log(res, 'resres'); - uni.setStorageSync('openids',this.openId) - if (res.data.data.isEXist==false) { - + uni.setStorageSync('openids', this.openId) + if (res.data.data.isEXist == false) { + } else { let data = res.data.data.loginResponse; let newTime = Math.round(new Date() / 1000); this.$store.commit("LOGIN", { 'token': res.data.data.loginResponse.token }); - + this.getUserInfo(data); } } else { @@ -184,7 +186,7 @@ title: res.data.message }); } - + }, fail: (err) => { this.$util.Tips({ @@ -199,18 +201,18 @@ } // console.log('调用了'); uni.request({ - url: 'https://yruibao.com/prod/api/front/login/aliOauthLogin', + url: 'https://yruibao.com/prod/api/front/login/aliOauthLogin', // url: 'http://192.168.2.26:20411/api/front/login/aliOauthLogin', //仅为示例,并非真实接口地址。 data: data, method: 'POST', success: (res) => { - + if (res.data.code == 200) { - this.openId=res.data.data.alipaySystemOauthTokenResponse.openId + this.openId = res.data.data.alipaySystemOauthTokenResponse.openId console.log(res, 'resres'); - uni.setStorageSync('openids',this.openId) - if (res.data.data.isEXist==false) { + uni.setStorageSync('openids', this.openId) + if (res.data.data.isEXist == false) { this.showphone = true } else { let data = res.data.data.loginResponse; @@ -247,36 +249,7 @@ // }); }, - async code() { - let that = this; - if (!that.account) return that.$util.Tips({ - title: '请填写手机号码' - }); - if (!/^1(3|4|5|7|8|9|6)\d{9}$/i.test(that.account)) return that.$util.Tips({ - title: '请输入正确的手机号码' - }); - if (that.formItem == 2) that.type = "register"; - uni.showLoading({ - title: '加载中...' - }) - await registerVerify(that.account) - .then(res => { - - that.$util.Tips({ - title: res.message - }); - uni.hideLoading(); - that.sendCode(); - let login = true - uni.setStorageSync('loginstause', login); - }) - .catch(err => { - uni.hideLoading(); - return that.$util.Tips({ - title: err - }); - }); - }, + again() { this.codeUrl = VUE_APP_API_URL + @@ -324,11 +297,11 @@ captcha: that.captcha, spread_spid: that.$Cache.get("spread"), channel_id: channelId, - aliOpenid:that.openId + aliOpenid: that.openId }) .then(res => { - if(res.code==200){ + if (res.code == 200) { let data = res.data; let newTime = Math.round(new Date() / 1000); this.$store.commit("LOGIN", { @@ -336,12 +309,12 @@ }); uni.hideLoading(); that.getUserInfo(data); - }else{ + } else { that.$util.Tips({ title: res.message }); } - + }) .catch(res => { uni.hideLoading(); @@ -390,36 +363,52 @@ }); }); }, - async code() { - let that = this; - if (!that.account) return that.$util.Tips({ - title: '请填写手机号码' - }); - if (!/^1(3|4|5|7|8|9|6)\d{9}$/i.test(that.account)) return that.$util.Tips({ - title: '请输入正确的手机号码' - }); - if (that.formItem == 2) that.type = "register"; - uni.showLoading({ - title: '加载中...' - }) - await registerVerify(that.account) - .then(res => { - - that.$util.Tips({ - title: res.message - }); - uni.hideLoading(); - that.sendCode(); - let login = true - uni.setStorageSync('loginstause', login); - }) - .catch(err => { - uni.hideLoading(); - return that.$util.Tips({ - title: err - }); - }); - }, + async code() { + if (!this.account) { + this.$util.Tips({ + title: '请填写手机号码' + }); + return; + } + + if (!/^1(3|4|5|7|8|9|6)\d{9}$/i.test(this.account)) { + this.$util.Tips({ + title: '请输入正确的手机号码' + }); + return; + } + + if (this.isCountdownStarted) return; // Prevent multiple clicks during countdown + + this.isCountdownStarted = true; + this.countdown = 60; // Set initial countdown value + + // Start countdown + const countdownInterval = setInterval(() => { + if (this.countdown > 0) { + this.countdown--; // Decrease countdown value + } else { + clearInterval(countdownInterval); // Stop countdown when it reaches 0 + this.isCountdownStarted = false; // Enable the button + } + }, 1000); + + try { + uni.showLoading({ + title: '加载中...' + }); + await registerVerify(this.account); + this.$util.Tips({ + title: '验证码已发送' + }); + } catch (err) { + this.$util.Tips({ + title: err.message || '发送验证码失败' + }); + } finally { + uni.hideLoading(); + } + }, navTap: function(index) { this.current = index; }, @@ -444,6 +433,8 @@ } } + + \ No newline at end of file diff --git a/pages/users/repayment/index.vue b/pages/users/repayment/index.vue index b448fd3..217b4ac 100644 --- a/pages/users/repayment/index.vue +++ b/pages/users/repayment/index.vue @@ -1,49 +1,87 @@ \ No newline at end of file diff --git a/static/other/color_black.png b/static/other/color_black.png new file mode 100644 index 0000000..4b19b54 Binary files /dev/null and b/static/other/color_black.png differ diff --git a/static/other/color_black_selected.png b/static/other/color_black_selected.png new file mode 100644 index 0000000..9ff5984 Binary files /dev/null and b/static/other/color_black_selected.png differ diff --git a/static/other/color_red.png b/static/other/color_red.png new file mode 100644 index 0000000..8dcbfe0 Binary files /dev/null and b/static/other/color_red.png differ diff --git a/static/other/color_red_selected.png b/static/other/color_red_selected.png new file mode 100644 index 0000000..6d40ed9 Binary files /dev/null and b/static/other/color_red_selected.png differ diff --git a/static/other/signs.png b/static/other/signs.png new file mode 100644 index 0000000..62b4f5d Binary files /dev/null and b/static/other/signs.png differ