diff --git a/packageB/pages/AI-test-skin/success_result/success_result.js b/packageB/pages/AI-test-skin/success_result/success_result.js index 88b47ce..939575f 100644 --- a/packageB/pages/AI-test-skin/success_result/success_result.js +++ b/packageB/pages/AI-test-skin/success_result/success_result.js @@ -1,7 +1,7 @@ /* * @Author: abson * @Date: 2022-02-16 15:36:47 - * @LastEditTime: 2022-02-18 14:00:54 + * @LastEditTime: 2022-02-18 17:40:05 * @LastEditors: Please set LastEditors * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE * @FilePath: \MShopWeApp\packageB\pages\AI-test-skin\success_result\success_result.js @@ -13,16 +13,18 @@ const os = app.globalData; const setting = os.setting; const ut = require('../../../../utils/util'); Page({ - /** * 页面的初始数据 */ data: { tab: [{ id: 'zong_he', name: '综合肤质' }, { id: 'mao_kong', name: '毛孔' }, { id: 'hei_tou', name: '黑头' }, { id: 'se_ban', name: '色斑' }, { id: 'zhou_wen', name: '皱纹' }, { id: 'hei_yan_quan', name: '黑眼圈' }, { id: 'cuo_chuang', name: '痤疮' }, { id: 'ming_gan_ji', name: '敏感度' }], currentIndex: 0, - tab_id:'zong_he', + tab_id: 'zong_he', iurl: setting.imghost, - showDialog:false, + showDialog: false, + yanjing: true, + img_scale: true, //问题标注放大图片 + img_scale_icon:true, }, /** @@ -52,6 +54,17 @@ Page({ tab_id, }) }, + click_yanjing() { + this.setData({ + yanjing: !this.data.yanjing, + }) + }, + click_fangda() { + this.setData({ + img_scale: !this.data.img_scale, + img_scale_icon:!this.data.yanjing, + }) + }, /** * 生命周期函数--监听页面隐藏 @@ -66,6 +79,24 @@ Page({ onUnload: function () { }, + show_dailog() { + this.setData({ + showDialog: true, + }) + }, + + close_dialog() { + this.setData({ + showDialog: false, + }) + }, + + close_mask() { + this.setData({ + showDialog: false, + img_scale: true, + }) + }, /** * 页面相关事件处理函数--监听用户下拉动作 diff --git a/packageB/pages/AI-test-skin/success_result/success_result.wxml b/packageB/pages/AI-test-skin/success_result/success_result.wxml index fa78262..a1305e9 100644 --- a/packageB/pages/AI-test-skin/success_result/success_result.wxml +++ b/packageB/pages/AI-test-skin/success_result/success_result.wxml @@ -69,7 +69,7 @@ #01 毛孔 - + 问题标注 @@ -100,19 +100,19 @@ 原因分析 - - + + 皮脂腺分泌旺盛 - + + + 皮脂腺分泌旺盛 + + 皮脂腺分泌旺盛 - @@ -245,19 +245,15 @@ 原因分析 - - + + 皮脂腺分泌旺盛 - + 皮脂腺分泌旺盛 - @@ -339,7 +335,7 @@ #05 - 黑眼圈 + 黑眼圈 问题标注 @@ -381,19 +377,16 @@ 原因分析 - - + + 皮脂腺分泌旺盛 - + 皮脂腺分泌旺盛 - + @@ -538,12 +531,12 @@ 原因分析 - - + + 皮脂腺分泌旺盛 - + 皮脂腺分泌旺盛 @@ -629,8 +622,46 @@ - + \ No newline at end of file + + 分享 + + + + + + + + + + + + + + + + + + + 毛孔较粗大 + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/packageB/pages/AI-test-skin/success_result/success_result.wxss b/packageB/pages/AI-test-skin/success_result/success_result.wxss index be8fb2d..b8ea4c7 100644 --- a/packageB/pages/AI-test-skin/success_result/success_result.wxss +++ b/packageB/pages/AI-test-skin/success_result/success_result.wxss @@ -11,16 +11,18 @@ page { display: flex; height: 100rpx; } + .share { + display: flex; position: fixed; bottom: 100rpx; right: 0; - padding: 20rpx; - background-color: #fff; - border: 2rpx solid #f0f0f0; - /* color: #FFF; */ - border-radius: 40rpx 0 0 40rpx; - z-index: 99; + padding: 20rpx; + background-color: #fff; + border: 2rpx solid #f0f0f0; + /* color: #FFF; */ + border-radius: 40rpx 0 0 40rpx; + z-index: 99; } .tab_scroll_item { @@ -110,14 +112,16 @@ page { width: 100%; height: 100%; top: 0; - bottom: 0; - left: 0; - right: 0; + bottom: 0; + left: 0; + right: 0; background-color: rgba(0, 0, 0, .6); } + .ll::after { content: "\e650"; } + .analyse .analyse_center image { height: 100%; width: 100%; @@ -186,6 +190,9 @@ page { margin-left: 20rpx; } +.mr10 { + margin-right: 10rpx; +} .mr20 { margin-right: 20rpx; } @@ -364,4 +371,56 @@ page { /* width: 160rpx; */ flex-direction: column; align-items: center; -} \ No newline at end of file +} + +.dialog { + position: fixed; + top: 50%; + right: 50%; + transform: translate(50%, -50%); + height: 70%; + width: 80%; + border-radius: 30rpx; +} + +.dialog .dialog_img { + height: 80%; + position: relative; +} + +.dialog .dialog_txt { + height: 20%; + display: flex; + align-items: center; + justify-content: center; + background-color: #fff; +} + +.dialog .dialog_icon { + position: absolute; + right: 30rpx; + top: 0; + display: flex; + flex-direction: column; + justify-content: flex-end; + height: 100%; +} + +.dialog .iconfont { + display: flex; + justify-content: center; + align-items: center; + color: #fff; + background-color: #1f1919; + border-radius: 50%; + width: 50rpx; + height: 50rpx; +} + +.pp { + width: 8rpx; + height: 35rpx; + margin-right: 5rpx; + border-radius: 3rpx; + background: #2cb344; +} diff --git a/packageC/pages/luckyGo/luckyGo_cart/luckyGo_cart.js b/packageC/pages/luckyGo/luckyGo_cart/luckyGo_cart.js index 3a1f24b..7d12053 100644 --- a/packageC/pages/luckyGo/luckyGo_cart/luckyGo_cart.js +++ b/packageC/pages/luckyGo/luckyGo_cart/luckyGo_cart.js @@ -1425,16 +1425,16 @@ Page({ if (by_qc.region_list != "" && by_qc.region_list != null && by_qc.region_list != undefined) { if (th.check_by_area(by_qc.region_list)) { freight_free = 0; - goods_weight = -1; - out_of_weight = 0; + // goods_weight = -1; + // out_of_weight = 0; th.data.is_no_by[pickid] = 1; } } //如果有设置不包邮区商品 if (by_qc.goods_list != "" && by_qc.goods_list != undefined && by_qc != null && freight_free > 0) { freight_free = 0; - goods_weight = -1; - out_of_weight = 0; + // goods_weight = -1; + // out_of_weight = 0; th.data.is_no_by[pickid] = 1; no_ex_good = by_qc.goods_list; } @@ -1902,7 +1902,7 @@ Page({ if (res.data.data[0].region_list) { if (th.check_by_area(res.data.data[0].region_list)) { freight_free = 0; - out_of_weight = 0; + // out_of_weight = 0; th.data.is_no_by[th.data.bn_pick] = 1; } } @@ -1910,7 +1910,7 @@ Page({ if (res.data.data[0].goods_list && freight_free) { if (th.check_by_goods(res.data.data[0].goods_list)) { freight_free = 0; - out_of_weight = 0; + // out_of_weight = 0; th.data.is_no_by[th.data.bn_pick] = 1; } } @@ -3798,7 +3798,7 @@ Page({ if (no_by_data && no_by_data.region_list) { if (th.check_by_area(no_by_data.region_list)) { gift_freight_free = 0; - out_of_weight = 0; + // out_of_weight = 0; th.data.is_no_by[th.data.bn_pick] = 1; } } @@ -3806,7 +3806,7 @@ Page({ if (no_by_data && no_by_data.goods_list && gift_freight_free) { if (th.check_by_goods(no_by_data.goods_list, good.goods_id)) { gift_freight_free = 0; - out_of_weight = 0; + // out_of_weight = 0; th.data.is_no_by[th.data.bn_pick] = 1; //th.data.is_no_by[th.data.bn_pick]=1; } diff --git a/packageC/pages/presell/cart/cart2.js b/packageC/pages/presell/cart/cart2.js index 463c561..6814d4a 100644 --- a/packageC/pages/presell/cart/cart2.js +++ b/packageC/pages/presell/cart/cart2.js @@ -713,8 +713,8 @@ Page({ if (res.data.data[0].region_list) { if (th.check_by_area(res.data.data[0].region_list)) { freight_free = 0; - out_of_weight = 0; - weight_free=-1; + // out_of_weight = 0; + // weight_free=-1; th.data.is_no_by[th.data.bn_pick] = 1; } } @@ -722,8 +722,8 @@ Page({ if (res.data.data[0].goods_list && freight_free) { if (th.check_by_goods(res.data.data[0].goods_list)) { freight_free = 0; - out_of_weight = 0; - weight_free=-1; + // out_of_weight = 0; + // weight_free=-1; th.data.is_no_by[th.data.bn_pick] = 1; } } @@ -2585,7 +2585,7 @@ Page({ if (no_by_data && no_by_data.region_list) { if (th.check_by_area(no_by_data.region_list)) { gift_freight_free = 0; - out_of_weight = 0; + // out_of_weight = 0; th.data.is_no_by[th.data.bn_pick] = 1; } } @@ -2593,7 +2593,7 @@ Page({ if (no_by_data && no_by_data.goods_list && gift_freight_free) { if (th.check_by_goods(no_by_data.goods_list, good.goods_id)) { gift_freight_free = 0; - out_of_weight = 0; + // out_of_weight = 0; th.data.is_no_by[th.data.bn_pick]=1; } } diff --git a/pages/cart/cart2/cart2.js b/pages/cart/cart2/cart2.js index 16aa02e..41e030b 100644 --- a/pages/cart/cart2/cart2.js +++ b/pages/cart/cart2/cart2.js @@ -1566,16 +1566,16 @@ Page({ if (by_qc.region_list != "" && by_qc.region_list != null && by_qc.region_list != undefined) { if (th.check_by_area(by_qc.region_list)) { freight_free = 0; - goods_weight = -1; - out_of_weight = 0; + //goods_weight = -1; + //out_of_weight = 0; th.data.is_no_by[pickid] = 1; } } //如果有设置不包邮区商品 if (by_qc.goods_list != "" && by_qc.goods_list != undefined && by_qc != null && freight_free > 0) { freight_free = 0; - goods_weight = -1; - out_of_weight = 0; + //goods_weight = -1; + //out_of_weight = 0; th.data.is_no_by[pickid] = 1; no_ex_good = by_qc.goods_list; } @@ -2056,7 +2056,7 @@ Page({ if (res.data.data[0].region_list) { if (th.check_by_area(res.data.data[0].region_list)) { freight_free = 0; - out_of_weight = 0; + // out_of_weight = 0; th.data.is_no_by[th.data.bn_pick] = 1; } } @@ -2064,7 +2064,7 @@ Page({ if (res.data.data[0].goods_list && freight_free) { if (th.check_by_goods(res.data.data[0].goods_list)) { freight_free = 0; - out_of_weight = 0; + // out_of_weight = 0; th.data.is_no_by[th.data.bn_pick] = 1; } } @@ -4090,7 +4090,7 @@ Page({ if (no_by_data && no_by_data.region_list) { if (th.check_by_area(no_by_data.region_list)) { gift_freight_free = 0; - out_of_weight = 0 + // out_of_weight = 0 th.data.is_no_by[th.data.bn_pick] = 1; } } @@ -4098,7 +4098,7 @@ Page({ if (no_by_data && no_by_data.goods_list && gift_freight_free) { if (th.check_by_goods(no_by_data.goods_list, good.goods_id)) { gift_freight_free = 0; - out_of_weight = 0 + // out_of_weight = 0 th.data.is_no_by[th.data.bn_pick]=1; } } diff --git a/pages/cart/cart2_inte/cart2_inte.js b/pages/cart/cart2_inte/cart2_inte.js index bd33015..75f3330 100644 --- a/pages/cart/cart2_inte/cart2_inte.js +++ b/pages/cart/cart2_inte/cart2_inte.js @@ -484,8 +484,8 @@ Page({ if (res.data.data[0].region_list) { if (th.check_by_area(res.data.data[0].region_list)) { freight_free = 0; - out_of_weight = 0; - weight_free = -1; + // out_of_weight = 0; + // weight_free = -1; th.data.is_no_by[th.data.bn_pick] = 1; } } @@ -493,8 +493,8 @@ Page({ if (res.data.data[0].goods_list && freight_free) { if (th.check_by_goods(res.data.data[0].goods_list)) { freight_free = 0; - out_of_weight = 0; - weight_free = -1; + // out_of_weight = 0; + // weight_free = -1; th.data.is_no_by[th.data.bn_pick] = 1; } }