From 2a8a3b6017499a7c5e46f61aaccae0e277bc1941 Mon Sep 17 00:00:00 2001 From: chenghuan Date: Fri, 27 Mar 2026 11:01:27 +0800 Subject: [PATCH] =?UTF-8?q?feat:=201.=20=E5=A2=9E=E5=8A=A0=E5=AD=A6?= =?UTF-8?q?=E4=B9=A0=E7=B4=AF=E8=AE=A1=E6=97=B6=E9=95=BF=E6=98=BE=E7=A4=BA?= =?UTF-8?q?=EF=BC=9B2.=20=E4=BF=AE=E6=94=B9=E5=AD=A6=E6=9C=AF=E4=BC=A0?= =?UTF-8?q?=E6=89=BF=E5=88=86=E7=B1=BB=EF=BC=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将应用版本号更新至1.0.11 (versionCode 1011) - 修改edu-core依赖为git仓库引用 (v1.0.11) - 在课程详情页中添加catalogueId和courseId到课程信息 - 更新“我的”页面,增加用户资料展示,包括今日观看和总观看次数 - 新增样式文件mixin.scss,定义主题色 - 添加搜索图标 --- manifest.json | 4 +- package.json | 2 +- pages/curriculum/detail.vue | 2 +- pages/curriculum/index3.vue | 2 +- pages/my/index.vue | 25 +- pages/my/persData.vue | 1125 ++------------------------ pages/wumen/medicaldes.vue | 1416 +++++++++++++++++++++------------ static/icon/map_ic_search.png | Bin 0 -> 1892 bytes style/mixin.scss | 3 + 9 files changed, 1036 insertions(+), 1543 deletions(-) create mode 100644 static/icon/map_ic_search.png create mode 100644 style/mixin.scss diff --git a/manifest.json b/manifest.json index f45145a6..99d50a90 100644 --- a/manifest.json +++ b/manifest.json @@ -2,8 +2,8 @@ "name" : "太湖云医", "appid" : "__UNI__1B1584A", "description" : "太湖云医", - "versionName" : "1.0.10", - "versionCode" : 1010, + "versionName" : "1.0.11", + "versionCode" : 1011, "transformPx" : false, "sassImplementationName" : "node-sass", /* 5+App特有相关 */ diff --git a/package.json b/package.json index 81c5cdbe..129c2a73 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "dependencies": { - "edu-core": "file:../edu-core", + "edu-core": "git+https://git.nuttyreading.com/chenghuan/edu-core.git#v1.0.11", "jquery": "^3.7.1", "lodash": "^4.17.21", "qs": "^6.14.0", diff --git a/pages/curriculum/detail.vue b/pages/curriculum/detail.vue index c704cd2c..f3fe1001 100644 --- a/pages/curriculum/detail.vue +++ b/pages/curriculum/detail.vue @@ -6,7 +6,7 @@ diff --git a/pages/curriculum/index3.vue b/pages/curriculum/index3.vue index db575c40..4158bdd9 100644 --- a/pages/curriculum/index3.vue +++ b/pages/curriculum/index3.vue @@ -422,7 +422,7 @@ }); const joinedText = this.textList.join('/'); - this.goBuyTitle = '购买'+joinedText+'VIP,即可畅享更多专属权益'; + this.goBuyTitle = '购买'+joinedText+'VIP,即可畅享更多专属权益(不包含论坛)'; } }) }, diff --git a/pages/my/index.vue b/pages/my/index.vue index e9837922..ab3cbdaf 100644 --- a/pages/my/index.vue +++ b/pages/my/index.vue @@ -34,12 +34,17 @@ - {{ - userMes.nickname ? userMes.nickname : "未设置" - }} + + {{ userMes.nickname ? userMes.nickname : "未设置" }} + + 手机号:({{ userMes.tel }}) + + + +
@@ -256,6 +261,9 @@ export default { if (this.userInfo.id != undefined) { this.$http.post("common/user/getUserInfo").then((res) => { this.userMes = res.result; + this.userMes.profile = res.des || ''; + this.userMes.todayWatch = res.todayWatch || ''; + this.userMes.totalWatch = res.totalWatch || ''; }); } }, @@ -429,6 +437,12 @@ export default { line-height: 40rpx; color: #333; } + + .user-profile{ + font-size: 28rpx; + font-weight: normal; + display: inline-block; + } .phone { font-size: 26rpx; @@ -442,6 +456,11 @@ export default { margin-left: 10rpx; vertical-align: super; } + .watch-time { + margin-top: 10rpx; + display: inline-block; + margin-right: 10rpx; + } } } diff --git a/pages/my/persData.vue b/pages/my/persData.vue index 4947b7a4..501676ea 100644 --- a/pages/my/persData.vue +++ b/pages/my/persData.vue @@ -1,1048 +1,91 @@ \ No newline at end of file +// @import "@/style/mixin.scss"; + diff --git a/pages/wumen/medicaldes.vue b/pages/wumen/medicaldes.vue index 37688a6a..d61ce9fd 100644 --- a/pages/wumen/medicaldes.vue +++ b/pages/wumen/medicaldes.vue @@ -1,542 +1,970 @@ \ No newline at end of file + +.scroll-Y { + height: 100%; +} + +.scroll-view_H { + white-space: nowrap; + width: 100%; +} + +.scroll-view-item { + // height: 300rpx; + // line-height: 300rpx; + // text-align: center; + // font-size: 36rpx; +} + +.scroll-view-item_H { + display: inline-block; + width: 100%; + // height: 300rpx; + // line-height: 300rpx; + // text-align: center; + // font-size: 36rpx; +} + +.titleList { + height: 100%; +} + +.titleList2 { + height: calc(100% - 170rpx); +} + diff --git a/static/icon/map_ic_search.png b/static/icon/map_ic_search.png new file mode 100644 index 0000000000000000000000000000000000000000..ba5e5b02475b56410d7dba15c1810edf21ac9c78 GIT binary patch literal 1892 zcmaJ?dsIw$93M)hhb*NB={8zsV&={?Q_W09=BdGqX^bAE8Z)=%j^^GmbJIv1vQp%c z*oN2?DIp@3l)P=BmpBQl^;)#MNR-22@1S=7*!G@t@9%LwpU?O4`~1$$mdj?iIC?u0 z2m}{NxKM$Q0oK>S4*y=hSib-tyf9HTHWy9AQdLHXz|)|MAV8v5B|!>ErCGM59-2xZ z*i3|#(O9%}Hb;%>sVXamYStTYHi0lT%xqAp7eg4Z2ugwxF7f4=IwAmTxWuR+DNSk+ zKw3CF%?Qm+lPT3{i`8rmF>D$z)y%;K^bn>3%=%=+#4&S;UvxS6+`0`CfiDnjF_-u? zsc5Mj5THf~2%-j4)N}?52w_v{L2Onaa|#ehqX&aDHb`euXmk#Z&7skOZx0cVX4E8d z6hiU0Son%d)MA){1A?iksnk>k6*VS-bT*p}(gMN2Knjkan3f@!%1l8_6Z#c|kV$QX z4H%3ffK^eo2u;DbL_E{4CFl(UvWV$hoA8E#W|aY?Q)$+c`himE|3mfq0kjEIK>y_X zpTZ{PG6MuEAQPHmRO1JiIKdjqz!4ZB6^0s>D4N{gMY$HmP?Hul00M!vYaswB3Pv<& zs)_uCBb9O_hzV06YDgmF5^)tO3~M-ykl+wjAYUvL@kDgGh|Om(gLuMVHj@`9U@*n} zey$Kzr|2OB>*s0)xB}XsT&o@Q20XG5GQvwCjo66lfiGoq;K6ed4yyN!s~I#GzGzS` zh$jPD5BFb(-M@u9$T}UcF1{ErKZM|pH{#ZwQS|#b{Km9Nggm9WKYZseDJYL_^D|~%9%I;~O8UrnUCl=aC z_B3DGB|D+fmNO}Rv0O11x%-TGl&=e&&V6&C$tTnGjaELXYHb91wS(?Gqn2C{JACEQ zb7hgLllCm#RjuC*A3>CsYBwJ}uW6oAwejy1r&-mw>MyN}*VKEoV; z=(o~s&1YTAF@|}wmmeuwy58GMJL? z)+^fbw#dd^x5zN+vzNh%&8oXu`D|Z6iTQ`dX9T|r`$C`Kw5au?Q^aSSD)ZS#CccWu zTHckjbo4{;(26$FLi_FF1ts1@9)EJJ6T`K!FUl-WW0KIV18 zNr5}wiiCsGZuQiUtuJ< zK)!jQ+HKj-yQ+d~B6GawJ1<@J(~#)!m*+V0nJJ~td8zSR?*v>q8z!{O_szxvGrw>0r^yZB9T7^X&oiWp zr7MQF9I^cD?o(ezpUK8<^vHewa1J}okGZNOzmBRK=1I7-rfFu`kCQ5`|2>IFCamBm GWc&>-bL0yE literal 0 HcmV?d00001 diff --git a/style/mixin.scss b/style/mixin.scss new file mode 100644 index 00000000..66bab11f --- /dev/null +++ b/style/mixin.scss @@ -0,0 +1,3 @@ +@charset "utf-8"; +//主题色 +$themeColor: #5188e5; \ No newline at end of file