|
@@ -321,8 +321,9 @@
|
|
|
{{ item.name }}
|
|
|
</view>
|
|
|
<view class="u-flex" style=" flex-wrap: wrap">
|
|
|
- <view style="margin-right: 18rpx;" class="" :class="selectArr[index] == child ? 'acttab' : 'tabs'"
|
|
|
- v-for="(child, idx) in item.values" :key="idx" @click="actabs(index, child, item)">
|
|
|
+ <view style="margin-right: 18rpx;" class=""
|
|
|
+ :class="selectArr[index] == child ? 'acttab' : 'tabs'" v-for="(child, idx) in item.values"
|
|
|
+ :key="idx" @click="actabs(index, child, item)">
|
|
|
{{ child }}
|
|
|
</view>
|
|
|
</view>
|
|
@@ -427,9 +428,9 @@
|
|
|
<l-painter-text text="¥" css=" padding-top: 20rpx;color:#F83224;" />
|
|
|
<l-painter-text :text="goodinfoyuan"
|
|
|
css="text-align:center; padding-top: 20rpx;color:#F83224; font-size: 26rpx" />
|
|
|
-
|
|
|
+
|
|
|
<l-painter-text :text="goodinfoname" css=" padding-top: 20rpx;display:block" />
|
|
|
- <l-painter-qrcode text="https://cbec.hdlkeji.com/cbec/pageA/productdetails"
|
|
|
+ <l-painter-qrcode text="https://cbec.hdlkeji.com/cbec?id=49"
|
|
|
css="width: 132rpx; height: 132rpx;margin-top:44rpx;margin-left:174rpx" />
|
|
|
<l-painter-text text="长按识别查看" css=" padding-top: 20rpx;text-align:center;display:block;color:#777777" />
|
|
|
</l-painter>
|
|
@@ -551,13 +552,25 @@
|
|
|
},
|
|
|
computed: {
|
|
|
i18n() {
|
|
|
-
|
|
|
return this.$t("index");
|
|
|
},
|
|
|
},
|
|
|
onLoad(options) {
|
|
|
- this.id = options.id;
|
|
|
- this.comment();
|
|
|
+ if (options.q) {
|
|
|
+ // 获取到二维码原始链接内容
|
|
|
+ const qrUrl = decodeURIComponent(options.q)
|
|
|
+ console.log(qrUrl);
|
|
|
+ //此处就是我们要获取的参数 json,通过方法解析
|
|
|
+ let jsonUrl = methods.GetwxUrlParam(qrUrl);
|
|
|
+ //比如我要得到id的值,直接取值即可
|
|
|
+ let id = jsonUrl.id;
|
|
|
+ this.id = id;
|
|
|
+ this.comment();
|
|
|
+ console.log("巡逻点ID:" + id);
|
|
|
+ } else {
|
|
|
+ this.id = options.id;
|
|
|
+ this.comment();
|
|
|
+ }
|
|
|
},
|
|
|
onShow() {
|
|
|
if (uni.getStorageSync("language") != "") {
|
|
@@ -580,6 +593,24 @@
|
|
|
|
|
|
},
|
|
|
methods: {
|
|
|
+ //解析链接地址
|
|
|
+ GetwxUrlParam(url) {
|
|
|
+ let theRequest = {};
|
|
|
+ if (url.indexOf("#") != -1) {
|
|
|
+ const str = url.split("#")[1];
|
|
|
+ const strs = str.split("&");
|
|
|
+ for (let i = 0; i < strs.length; i++) {
|
|
|
+ theRequest[strs[i].split("=")[0]] = decodeURI(strs[i].split("=")[1]);
|
|
|
+ }
|
|
|
+ } else if (url.indexOf("?") != -1) {
|
|
|
+ const str = url.split("?")[1];
|
|
|
+ const strs = str.split("&");
|
|
|
+ for (let i = 0; i < strs.length; i++) {
|
|
|
+ theRequest[strs[i].split("=")[0]] = decodeURI(strs[i].split("=")[1]);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return theRequest;
|
|
|
+ },
|
|
|
//分享
|
|
|
onShareAppMessage(res) {
|
|
|
if (res.from === "button") {
|