1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
| // components/xky-guideStep/xky-guideStep.js Component({ /** * 组件的属性列表 */ properties: { step: { type: Object, default: () => {}, }, },
/** * 组件的初始数据 */ data: { stepName: "step", //该提示步骤的名称,用于不在重复展示 guideList: [], index: 0, // 当前展示的索引 showGuide: true, // 是否显示引导 guideStyle: "", // 默认样式 arrowTop: "", //步骤提示三角形的定位 tipPosition: "", //步骤提示的定位 systemInfo: "", //屏幕宽度高度等信息 tipWidth: 200, //步骤提示默认的宽度 },
/** * 组件的方法列表 */ methods: { // 展示新手提示 viewTips(data, scrollTop) { console.log(data, scrollTop); let { systemInfo, tipWidth, index, guideList, arrowTop, tipPosition, guideStyle, } = this.data; if (data) { console.log(systemInfo); // 如果dom宽度大于或者等于窗口宽度,需要重新调整dom展示宽度 let newWidth = systemInfo.windowWidth - 20; if (data.width >= newWidth) { data.width = newWidth; } // 如果距离左边为0,自动增加一点左边距 if (data.left == 0) { data.left = 10; } let domRW = systemInfo.windowWidth - data.left; let left = 0; // 如果dom距离右边没有tips的宽度大的话,就要让tips向左便宜 if (domRW < tipWidth) { left = domRW - tipWidth - 30; } // const index = index; // 步骤条展示的高度需要加上屏幕滚动的高度 data.top += scrollTop; // 根据实际情况需要滚动到展示区域 wx.pageScrollTo({ scrollTop: data.top > 20 ? data.top - 20 : 0, duration: 100, }); let obj = Object.assign(guideList[index], data); // 设置三角形高度 let arrArrowTop = data.height + 9; arrowTop = "top:" + arrArrowTop + "px;"; // 设置提示框定位 tipPosition = "top:" + (arrArrowTop + 5) + "px;left:" + left + "px;"; // 重新设置guideList的值 guideList.splice(index, 1, obj); guideStyle = this.getStyle(); console.log(arrowTop, tipPosition, guideList, guideStyle); this.setData({ arrowTop, tipPosition, guideList, guideStyle, }); } else { index += 1; this.setData({ index, }); this.getDomInfo(); } }, // 获取步骤提示的主要样式 getStyle() { const { guideList, index } = this.data; const { width, height, left, top, style } = guideList[index]; let newstyle = "width:" + width + "px;"; newstyle += "height:" + height + "px;"; newstyle += "left:" + left + "px;"; newstyle += "top:" + top + "px;"; newstyle += "box-shadow: rgb(33 33 33 / 80%) 0px 0px 0px 0px, rgb(33 33 33 / 50%) 0px 0px 0px 5000px;"; newstyle += style; return newstyle; }, // 获取dom信息 getDomInfo() { const { guideList, index } = this.data; console.log(guideList, index); const { el } = guideList[index]; console.log(el); // const query = wx.createSelectorQuery().in(this.$root); const query = wx.createSelectorQuery(); // console.log(query); setTimeout(() => { query.select(el).boundingClientRect(); query.selectViewport().scrollOffset(); var _this = this; query.exec(function (res) { console.log("打印demo的元素的信息", res); let data = res[0]; // #the-id节点的上边界坐标 let scrollTop = res[1].scrollTop; // 显示区域的竖直滚动位置 _this.viewTips(data, scrollTop); }); }, 10); }, skip() { this.setData({ showGuide: false, }); wx.setStorageSync(this.data.stepName, "true"); }, // 下一步 next() { let { index, guideList, stepName } = this.data; if (index === guideList.length - 1) { this.setData({ showGuide: false, }); wx.setStorageSync(stepName, "true"); } else { index += 1; this.setData({ index, }); this.getDomInfo(); } }, }, lifetimes: { attached: function () { console.log(this.properties); const { step } = this.properties; let { guideList, stepName } = this.data; guideList = step.guideList; stepName = step.name; // const systemInfo = wx.getSystemInfoSync(); // systemInfo = systemInfo; this.setData({ guideList, stepName, systemInfo: wx.getSystemInfoSync(), }); const guide = wx.getStorageSync(step.name); if (!guide) { this.getDomInfo(); } else { this.setData({ showGuide:false, }); // this.showGuide = false; } }, detached: function () { // 在组件实例被从页面节点树移除时执行 }, }, });
|