|
@@ -18,10 +18,10 @@
|
|
</view> -->
|
|
</view> -->
|
|
</view>
|
|
</view>
|
|
<view class="u-nav-slot u-flex" slot="right" style="display: flex">
|
|
<view class="u-nav-slot u-flex" slot="right" style="display: flex">
|
|
- <view class="" style="margin-left: 184rpx" @click="sharea">
|
|
|
|
|
|
+ <view class="" style="" @click="sharea">
|
|
<image src="static/images/share.png" style="width: 38rpx; height: 38rpx" mode=""></image>
|
|
<image src="static/images/share.png" style="width: 38rpx; height: 38rpx" mode=""></image>
|
|
</view>
|
|
</view>
|
|
- <view class="" style="width: 180rpx"></view>
|
|
|
|
|
|
+ <view class="" style="width: 200rpx"></view>
|
|
</view>
|
|
</view>
|
|
</u-navbar>
|
|
</u-navbar>
|
|
<!-- 商品图片 -->
|
|
<!-- 商品图片 -->
|
|
@@ -45,7 +45,7 @@
|
|
i18n.Discounted
|
|
i18n.Discounted
|
|
}}</text>
|
|
}}</text>
|
|
<text class="money">¥</text>
|
|
<text class="money">¥</text>
|
|
- <text class="money" style="font-size: 48rpx">{{
|
|
|
|
|
|
+ <text v-if="goodinfo.discount_price" class="money" style="font-size: 48rpx">{{
|
|
goodinfo.is_discount == 0
|
|
goodinfo.is_discount == 0
|
|
? goodinfo.discount_price.slice(0, -3)
|
|
? goodinfo.discount_price.slice(0, -3)
|
|
: goodinfo.price.slice(0, -3)
|
|
: goodinfo.price.slice(0, -3)
|
|
@@ -320,9 +320,10 @@
|
|
<view class="title1" style="margin-top: 40rpx; margin-bottom: 32rpx">
|
|
<view class="title1" style="margin-top: 40rpx; margin-bottom: 32rpx">
|
|
{{ item.name }}
|
|
{{ item.name }}
|
|
</view>
|
|
</view>
|
|
- <view class="u-flex" style="column-gap: 18rpx; flex-wrap: wrap">
|
|
|
|
- <view class="" :class="selectArr[index] == child ? 'acttab' : 'tabs'"
|
|
|
|
- v-for="(child, idx) in item.values" :key="idx" @click="actabs(index, child, item)">
|
|
|
|
|
|
+ <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)">
|
|
{{ child }}
|
|
{{ child }}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
@@ -427,9 +428,9 @@
|
|
<l-painter-text text="¥" css=" padding-top: 20rpx;color:#F83224;" />
|
|
<l-painter-text text="¥" css=" padding-top: 20rpx;color:#F83224;" />
|
|
<l-painter-text :text="goodinfoyuan"
|
|
<l-painter-text :text="goodinfoyuan"
|
|
css="text-align:center; padding-top: 20rpx;color:#F83224; font-size: 26rpx" />
|
|
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-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='+id"
|
|
css="width: 132rpx; height: 132rpx;margin-top:44rpx;margin-left:174rpx" />
|
|
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-text text="长按识别查看" css=" padding-top: 20rpx;text-align:center;display:block;color:#777777" />
|
|
</l-painter>
|
|
</l-painter>
|
|
@@ -551,13 +552,25 @@
|
|
},
|
|
},
|
|
computed: {
|
|
computed: {
|
|
i18n() {
|
|
i18n() {
|
|
-
|
|
|
|
return this.$t("index");
|
|
return this.$t("index");
|
|
},
|
|
},
|
|
},
|
|
},
|
|
onLoad(options) {
|
|
onLoad(options) {
|
|
- this.id = options.id;
|
|
|
|
- this.comment();
|
|
|
|
|
|
+ if (options.q && options.q != "undefined") {
|
|
|
|
+ // 获取到二维码原始链接内容
|
|
|
|
+ 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() {
|
|
onShow() {
|
|
if (uni.getStorageSync("language") != "") {
|
|
if (uni.getStorageSync("language") != "") {
|
|
@@ -580,6 +593,24 @@
|
|
|
|
|
|
},
|
|
},
|
|
methods: {
|
|
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) {
|
|
onShareAppMessage(res) {
|
|
if (res.from === "button") {
|
|
if (res.from === "button") {
|
|
@@ -594,7 +625,6 @@
|
|
//保存到手机相册
|
|
//保存到手机相册
|
|
saveImage() {
|
|
saveImage() {
|
|
var that = this
|
|
var that = this
|
|
- console.log('this.picture2.slice,-1)', this.picture2.slice(23));
|
|
|
|
var fileManager = uni.getFileSystemManager();
|
|
var fileManager = uni.getFileSystemManager();
|
|
fileManager.writeFile({
|
|
fileManager.writeFile({
|
|
filePath: wx.env.USER_DATA_PATH + '/img.jpg', // 指定图片的临时路径
|
|
filePath: wx.env.USER_DATA_PATH + '/img.jpg', // 指定图片的临时路径
|