From 0d5dc4dded1148f8e48244729e886d361bca628d Mon Sep 17 00:00:00 2001 From: "Mr.jiang" <714156421@qq.com> Date: Mon, 24 Jun 2024 11:29:11 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E8=AF=95=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- common/config.js | 7 +- common/queue.js | 2 + components/t-refresh/t-refresh.vue | 202 ++ manifest.json | 7 +- my/address/Endaddress.vue | 18 +- my/address/address.vue | 12 +- my/hongbao/youhuijuan.vue | 1 + my/order/pay.vue | 445 +++- my/order/payModify.vue | 422 +++- my/order/payModifyDzhifu.vue | 1816 +++++++++++++++++ my/wallet/index.vue | 372 +++- my/wallet/mymoneydetail.vue | 50 +- pages.json | 123 +- pages/index/index.vue | 266 ++- pages/index/order/orderDet.vue | 68 +- pages/my/cika.vue | 414 ++++ pages/my/cikarDrtail.vue | 1269 ++++++++++++ pages/my/cureOderDrtail.vue | 101 +- pages/my/fuwuDateil.vue | 514 +++++ pages/my/fuwuGengduo.vue | 420 ++++ pages/my/fuwuliaocheng.vue | 414 ++++ pages/my/fuwuliaochengDetail.vue | 1281 ++++++++++++ pages/my/fuwuxiangm.vue | 420 ++++ pages/my/historyMy.vue | 444 ++++ pages/my/index.vue | 43 +- pages/my/indextaociliaoList.vue | 413 ++++ pages/my/myCiLiaoDetail.vue | 626 ++++++ pages/my/orderDetailsList.vue | 448 ++++ pages/my/serviceOderDrtail.vue | 675 +++++- pages/my/servicePackage.vue | 345 +--- pages/order/index.vue | 316 ++- pages/therapist/orderDetail.vue | 20 +- pages/therapist/therapist.vue | 165 +- static/activate2.png | Bin 0 -> 40510 bytes static/activate3.png | Bin 0 -> 39513 bytes static/topimg.png | Bin 0 -> 41507 bytes .../liu-goods-swiper/liu-goods-swiper.vue | 8 +- uview-ui/components/u-field/u-field.vue | 4 + uview-ui/libs/request/index.js | 1 + 39 files changed, 11306 insertions(+), 846 deletions(-) create mode 100644 components/t-refresh/t-refresh.vue create mode 100644 my/order/payModifyDzhifu.vue create mode 100644 pages/my/cika.vue create mode 100644 pages/my/cikarDrtail.vue create mode 100644 pages/my/fuwuDateil.vue create mode 100644 pages/my/fuwuGengduo.vue create mode 100644 pages/my/fuwuliaocheng.vue create mode 100644 pages/my/fuwuliaochengDetail.vue create mode 100644 pages/my/fuwuxiangm.vue create mode 100644 pages/my/historyMy.vue create mode 100644 pages/my/indextaociliaoList.vue create mode 100644 pages/my/myCiLiaoDetail.vue create mode 100644 pages/my/orderDetailsList.vue create mode 100644 static/activate2.png create mode 100644 static/activate3.png create mode 100644 static/topimg.png diff --git a/common/config.js b/common/config.js index ac0ef30..62340aa 100644 --- a/common/config.js +++ b/common/config.js @@ -2,9 +2,13 @@ // const ROOTPATH1 = "http://120.46.52.165/sqx_fast"; // const ROOTPATH3 = "wss://120.46.52.165/wss/websocket/"; +const ROOTPATH3 = "wss://192.168.2.222:8187/wss/websocket/"; const ROOTPATH = "http://192.168.2.222:8187/sqx_fast"; const ROOTPATH1 = "http://192.168.2.222:8187/sqx_fast"; -const ROOTPATH3 = "wss://192.168.2.222:8187/wss/websocket/"; + +// const ROOTPATH = "http://192.168.2.13:8187/sqx_fast"; +// const ROOTPATH1 = "http://192.168.2.13:8187/sqx_fast"; +// const ROOTPATH3 = "wss://192.168.2.13:8187/wss/websocket/"; // const ROOTPATH = "http://192.168.1.169:8187/sqx_fast"; // const ROOTPATH1 = "http://192.168.1.169:8187/sqx_fast"; @@ -35,6 +39,7 @@ const TX_MAP_KEY = 'VIWBZ-5OM3F-CV7JZ-NLKJY-AXSYV-TMFM6'; //const TX_MAP_KEY = '55UBZ-STNK4-DSNUM-F4A75-Q7BC5-FRBMS'; //ws基础连接地址 +// const WS_BASE_PATH = 'ws://192.168.2.13:8187/sqx_fast/'; const WS_BASE_PATH = 'ws://192.168.2.222:8187/sqx_fast/'; // const WS_BASE_PATH = 'ws://120.46.52.165/sqx_fast/'; // const WS_BASE_PATH = 'wss://admin.sjajk.com/sqx_fast/';//生产需替换 diff --git a/common/queue.js b/common/queue.js index c2c17a4..371436b 100644 --- a/common/queue.js +++ b/common/queue.js @@ -21,12 +21,14 @@ module.exports = { // return 'https://admin.sjajk.com'//生产需替换 // return 'http://120.46.52.165' return 'http://192.168.2.222:8187' + // return 'http://192.168.2.13:8187' }, //全局域名 部分html中需要单独替换 需要修改config中的网络请求域名 publicYuMingApp() { // return 'https://wx.sjajk.com'//生产需替换 // return 'http://120.46.52.165' return 'http://192.168.2.222:8187' + // return 'http://192.168.2.13:8187' }, logout() { this.remove("token"); diff --git a/components/t-refresh/t-refresh.vue b/components/t-refresh/t-refresh.vue new file mode 100644 index 0000000..a258d96 --- /dev/null +++ b/components/t-refresh/t-refresh.vue @@ -0,0 +1,202 @@ + + + + \ No newline at end of file diff --git a/manifest.json b/manifest.json index 67a0782..ffc0e01 100644 --- a/manifest.json +++ b/manifest.json @@ -1,6 +1,6 @@ { "name" : "盛安到家", - "appid" : "H56D02895", + "appid" : "__UNI__0A81F4F", "description" : "", "versionName" : "1.0.1", "versionCode" : 101, @@ -184,8 +184,9 @@ "key" : "2acf1b8c3d1aaf0070472dec19018d96", "securityJsCode" : "2b07c8496878c327a8ae7a19de33e2a7", // "serviceHost" : "http://wx.sjajk.com/_AMapService"//生产需替换 - // "serviceHost" : "http://120.46.52.165/_AMapService" - "serviceHost" : "http://192.168.2.222:8187/_AMapService" + // "serviceHost" : "http://120.46.52.165/_AMapService" + "serviceHost" : "http://192.168.2.222:8187/_AMapService" + // "serviceHost" : "http://192.168.2.13:8187/_AMapService" } } }, diff --git a/my/address/Endaddress.vue b/my/address/Endaddress.vue index 03751d6..2962ef2 100644 --- a/my/address/Endaddress.vue +++ b/my/address/Endaddress.vue @@ -1,5 +1,5 @@ @@ -219,6 +321,7 @@ export default { data() { return { + type:'center', jsczSel: '否', tgCheck: '否', isAgency: 0, @@ -270,7 +373,8 @@ placeholder: '', renzheng: 0, sp: 0, - txMsg: '' + txMsg: '', + nameTxt:'' } }, onLoad(d) { @@ -280,12 +384,14 @@ } else { this.tabIndex = 0; } + this.wxTxSel = this.$queue.getData('wxTxSel'); this.ylTxSel = this.$queue.getData('ylTxSel'); this.jsczSel = this.$queue.getData('jsczSel'); this.txMsg = this.$queue.getData('txMsg'); this.avatar = uni.getStorageSync('avatar') this.renzheng = uni.getStorageSync("renzheng") + this.nameTxt=d.text this.getMoneyList(); // #ifndef MP-WEIXIN this.openLists = [{ @@ -326,9 +432,6 @@ if (res.code == 0) { this.wallet = []; res.data.forEach((d, index) => { - // if(!d.coupon){ - // return; - // } if (index == 0) { d.isSelect = true; this.thisSelect = d; @@ -340,6 +443,19 @@ } }); }, + change(e) { + console.log('当前模式:' + e.type + ',状态:' + e.show); + }, + closePopup(type){//改价 关闭弹出框 + this.type = type + this.$refs.popup.close(type); + }, + toggle(type) {//改价 弹出框 + this.type = type + // open 方法传入参数 等同在 uni-popup 组件上绑定 type属性 + this.$refs.popup.open(type) + }, + //退保证金 TuiPrice() { let that = this @@ -781,6 +897,206 @@ diff --git a/pages/my/cikarDrtail.vue b/pages/my/cikarDrtail.vue new file mode 100644 index 0000000..3af464c --- /dev/null +++ b/pages/my/cikarDrtail.vue @@ -0,0 +1,1269 @@ + + + \ No newline at end of file diff --git a/pages/my/cureOderDrtail.vue b/pages/my/cureOderDrtail.vue index 3709840..66976e2 100644 --- a/pages/my/cureOderDrtail.vue +++ b/pages/my/cureOderDrtail.vue @@ -1,18 +1,21 @@ \ No newline at end of file diff --git a/uview-ui/components/u-field/u-field.vue b/uview-ui/components/u-field/u-field.vue index cb7d7ac..6428d55 100644 --- a/uview-ui/components/u-field/u-field.vue +++ b/uview-ui/components/u-field/u-field.vue @@ -264,16 +264,20 @@ export default { this.$emit('blur', event); }, onConfirm(e) { + console.log("onConfirm") this.$emit('confirm', e.detail.value); }, onClear(event) { + console.log("onClear") this.$emit('input', ''); }, rightIconClick() { + console.log("rightIconClick") this.$emit('right-icon-click'); this.$emit('click'); }, fieldClick() { + console.log("fieldClick") this.$emit('click'); } } diff --git a/uview-ui/libs/request/index.js b/uview-ui/libs/request/index.js index 6ed747a..a25c908 100644 --- a/uview-ui/libs/request/index.js +++ b/uview-ui/libs/request/index.js @@ -104,6 +104,7 @@ class Request { // baseUrl: 'https://admin.sjajk.com/', // 请求的根域名//生产需替换 // baseUrl: 'http://120.46.52.165/', // 请求的根域名 baseUrl: 'http://192.168.2.222:8187/', + // baseUrl: 'http://192.168.2.27:8187/', // 默认的请求头 header: {}, method: 'POST',