From 1b9724ada95c7d14da63c1a94e651cffdec5cf07 Mon Sep 17 00:00:00 2001 From: xyc <3422692813@qq.com> Date: Wed, 16 Apr 2025 14:24:41 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pagesA/appointment/index.vue | 4 +++- ...SSlicePNG9781bf564ae15eee66e88c90622422db.png | Bin 0 -> 1086 bytes 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 static/lanhu_pingjiazhongxin/FigmaDDSSlicePNG9781bf564ae15eee66e88c90622422db.png diff --git a/pagesA/appointment/index.vue b/pagesA/appointment/index.vue index 7e33633..40c53eb 100644 --- a/pagesA/appointment/index.vue +++ b/pagesA/appointment/index.vue @@ -41,8 +41,9 @@ - + {{ item.trainDay }} @@ -72,6 +73,7 @@ 教练名称: {{ item.coachName }} + P)S zQ&kxMo!i@XZEx4x{ne#z9SohRGi=e#7y{c8lfB?(h=D{R@}O^q@#KS1y6BsU?#%}u z*qgeWp-%eKfEpu>>Sz!*^2dfU?7+xFgjIQK#eT~A>NzvSlL`+eW}{l4>k zU(O+T0ul)-i>}-;N@*_z!h}7xgF*qpBBA(M*XgNX&=ae~LHNXK*x@86*=H}d1u|yj z%@LlEu+@;>)Q&ksa&G(N7U%~op>xT5+Hje433(=af|VnRX8<82>i4-v$^@*;sfkhE zBGWW+-!JR!x%(@v`=wm>qajuC+z*&6lrm!D&DVjNGx{sV__{L?7UHB~KD z^$Aw?Jo34-e?OJng0;J;KhE%6z1Eluf|CyMyk|~NV7r(*JI%EVqBblN2!lLlQb`oQ zzxent;u{M7oIQ`_l~tIOmc-tP$GHM*qV|dGy_@H>D6Hmv^zHx#_H@~{_uuZvT6_a5 ztGAH6w`otvw?F=dtfry@!dClbp2sIi80_!CU|%=Jf1Sa)lCteh4K-+Q4Pi5*;`LYB z(AV7om(x{IK&<5184jb~Tt_yWNBhnY1oCJU4Z~oz7gz}d)CBx!@%by!*hfXI%&4Vs zu&W+z&CjE;PR8{71yoDkqQ9{&i0OrkkbEAr?+D>QXFVKRg2%6L1su5)yvX6TNE-wP z%hF%PvMr5ikbQO!-spG{O_B&9$L+%+Nv72(>-LGqt;EQ|eSH?9u7Xgbbcr=VkEu~s zCf!wyY*QDgSXCOzjtr7WBxHxv!`+|z&N5ueO7UM;(=d%ZTvAQZmJ75X+YsR`2RklW zgE4Ss_x1C_%a7{?{CP`v3p{07*qoM6N<$ Eg61L#-v9sr literal 0 HcmV?d00001 From ee27f6bf7914cd57ffde1a592dd3d80c053888df Mon Sep 17 00:00:00 2001 From: xyc <3422692813@qq.com> Date: Wed, 16 Apr 2025 16:15:01 +0800 Subject: [PATCH 2/3] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/index/contract.vue | 335 ++++++++++-------- .../jushi-signature/jushi-signature.vue | 39 +- 2 files changed, 197 insertions(+), 177 deletions(-) diff --git a/pages/index/contract.vue b/pages/index/contract.vue index a46e9ba..011b0d4 100644 --- a/pages/index/contract.vue +++ b/pages/index/contract.vue @@ -1,178 +1,199 @@ + .f-box { + width: 100%; + box-sizing: border-box; + padding: 15px; + } + \ No newline at end of file diff --git a/uni_modules/jushi-signature/components/jushi-signature/jushi-signature.vue b/uni_modules/jushi-signature/components/jushi-signature/jushi-signature.vue index ba95409..b0b49e7 100644 --- a/uni_modules/jushi-signature/components/jushi-signature/jushi-signature.vue +++ b/uni_modules/jushi-signature/components/jushi-signature/jushi-signature.vue @@ -141,7 +141,7 @@ success: function(res) { console.log(res, '签名'); //强制返回base64 - that.emit(res.tempFilePath) + uni.$emit('tempFilePath', res.tempFilePath) }, fail(e) { console.log(JSON.stringify(e)) @@ -149,20 +149,20 @@ }, this) }, reset() { - let that = this - uni.getSystemInfo({ - success: function(res) { - ctx.clearRect(0, 0, res.windowWidth, res.windowHeight) - ctx.draw(true) - // #ifdef MP-WEIXIN - that.setCanvasBg() - // #endif - that.setPaintStyle() - }, - }) - tempPoint = [] - // 注意:这里不触发任何emit事件 - }, + let that = this + uni.getSystemInfo({ + success: function(res) { + ctx.clearRect(0, 0, res.windowWidth, res.windowHeight) + ctx.draw(true) + // #ifdef MP-WEIXIN + that.setCanvasBg() + // #endif + that.setPaintStyle() + }, + }) + tempPoint = [] + // 注意:这里不触发任何emit事件 + }, emit(tempFilePath) { this.$emit('change', tempFilePath) }, @@ -226,11 +226,11 @@ } .clear {} - + .reset { - background: #FF9900; - color: white; - } + background: #FF9900; + color: white; + } .sign-area { position: absolute; @@ -240,5 +240,4 @@ font-size: 130rpx; transform: rotate(-20deg); } - \ No newline at end of file From e74fc686b06073bb58ad8ca58a9ff03ec14885e8 Mon Sep 17 00:00:00 2001 From: xyc <3422692813@qq.com> Date: Wed, 16 Apr 2025 17:13:42 +0800 Subject: [PATCH 3/3] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- newPages/newIndex/index.vue | 765 +++++++++++----------- newPages/schoolDetail/index.vue | 571 ++++++++--------- pages/login/login.vue | 1045 +++++++++++++++---------------- 3 files changed, 1185 insertions(+), 1196 deletions(-) diff --git a/newPages/newIndex/index.vue b/newPages/newIndex/index.vue index 2a2af84..8938234 100644 --- a/newPages/newIndex/index.vue +++ b/newPages/newIndex/index.vue @@ -1,229 +1,211 @@ + .itemContent { + padding: 30rpx 0; + display: flex; + flex-direction: column; + row-gap: 20rpx; + } + + .top_ { + //padding-top: 200rpx; + } + \ No newline at end of file diff --git a/newPages/schoolDetail/index.vue b/newPages/schoolDetail/index.vue index 96ee305..c0babe4 100644 --- a/newPages/schoolDetail/index.vue +++ b/newPages/schoolDetail/index.vue @@ -1,305 +1,312 @@ + @import '../common/common.scss'; + @import './assets/style/index.rpx.scss'; + \ No newline at end of file diff --git a/pages/login/login.vue b/pages/login/login.vue index d7e629c..5029dc1 100644 --- a/pages/login/login.vue +++ b/pages/login/login.vue @@ -1,32 +1,32 @@ + .axquanl { + width: 18px; + height: 18px; + border-radius: 50%; + border: 1px solid #AAAAAA; + margin-right: 5px; + background-color: #2c78f5; + } + \ No newline at end of file