|
@@ -2,13 +2,14 @@
|
|
|
<view class="box">
|
|
|
<view class="cont">
|
|
|
<view class="itemBox flex">
|
|
|
- <image class="itemIMg" src="../../static/timg/noimg.png" mode=""></image>
|
|
|
+ <image class="itemIMg" v-if="itemDefault.mainImgUrl" :src="itemDefault.mainImgUrl" mode=""></image>
|
|
|
+ <image class="itemIMg" v-else src="../../static/timg/noimg.png" mode=""></image>
|
|
|
<view class="itemRight">
|
|
|
- <view class="itemName">【经济车型】全合成机油保养套餐全合成机油</view>
|
|
|
- <view class="buyType">单次购买</view>
|
|
|
+ <view class="itemName">{{itemDefault.goodsname}}</view>
|
|
|
+ <view class="buyType">{{itemDefault.title}}</view>
|
|
|
<view class="priceBox">
|
|
|
- <view class="price">¥365</view>
|
|
|
- <view class="itemNum">X1</view>
|
|
|
+ <view class="price">¥{{itemDefault.crossedPrice}}</view>
|
|
|
+ <view class="itemNum">X{{itemDefault.goodsnum}}</view>
|
|
|
</view>
|
|
|
<view class="itemnotes">注:该商品购买后不支持线上退款</view>
|
|
|
</view>
|
|
@@ -17,42 +18,16 @@
|
|
|
|
|
|
<view class="mealBox">
|
|
|
<view class="fwlcTitle">套餐内容</view>
|
|
|
- <view class="mealTop">
|
|
|
- <view class="mealName">套餐名称</view>
|
|
|
- <view class="mealNum">数量</view>
|
|
|
- <view class="mealexpire">有效期</view>
|
|
|
- </view>
|
|
|
- <view class="mealTop2">
|
|
|
- <view class="mealName">【豪华车型】全合成机油保养套餐</view>
|
|
|
- <view class="mealNum">2</view>
|
|
|
- <view class="mealexpire">18个月</view>
|
|
|
- </view>
|
|
|
- <view class="mealXj">
|
|
|
- <view class="xjLine">
|
|
|
- <view class="xjyd"></view>
|
|
|
- <view class="xjTxt">20项检查</view>
|
|
|
- </view>
|
|
|
- <view class="xjLine">
|
|
|
- <view class="xjyd"></view>
|
|
|
- <view class="xjTxt">20美日韩车型专用保养套餐适配机油</view>
|
|
|
- </view>
|
|
|
- </view>
|
|
|
- <view class="mealMs">
|
|
|
- <view class="mealMsline">
|
|
|
- 1.本套餐不限车辆使用;
|
|
|
- 2.机油套餐包含:机油,机油滤,工时费
|
|
|
- 3.购买此套餐,共享有2次保养次数。
|
|
|
- </view>
|
|
|
- </view>
|
|
|
+
|
|
|
</view>
|
|
|
<view class="goodsBox">
|
|
|
<view class="goodsline flex" style="border-bottom: 1px solid #EEEEEE;">
|
|
|
<view class="goodsLeft">商品总价</view>
|
|
|
- <view class="goodRight">¥2084.00</view>
|
|
|
+ <view class="goodRight">¥{{totalPrice}}</view>
|
|
|
</view>
|
|
|
<view class="goodsline flex" >
|
|
|
<view class="goodsLeft"></view>
|
|
|
- <view class="goodRight" style="font-size: 26rpx;font-weight: 500;">合计 <span style="color: #EC0F0A;"> ¥1085.00</span></view>
|
|
|
+ <view class="goodRight" style="font-size: 26rpx;font-weight: 500;">合计 <span style="color: #EC0F0A;"> ¥{{totalPrice}}</span></view>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="goodsBox">
|
|
@@ -74,9 +49,9 @@
|
|
|
<view class="bleft">
|
|
|
<span>合计</span>
|
|
|
<span>¥</span>
|
|
|
- <span style="font-weight: 500;font-size: 34rpx;color: #EC0F0A;">294</span>
|
|
|
+ <span style="font-weight: 500;font-size: 34rpx;color: #EC0F0A;">{{totalPrice}}</span>
|
|
|
</view>
|
|
|
- <view class="Btn">提交订单</view>
|
|
|
+ <view class="Btn" @click="submitFn">提交订单</view>
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
@@ -93,30 +68,129 @@
|
|
|
themeColor:'',
|
|
|
ext:'',
|
|
|
goodsnum:1,
|
|
|
+ itemDefault:'',
|
|
|
+ totalPrice:'',
|
|
|
+ sheetDetail:[],
|
|
|
+ userInfo:'',
|
|
|
+ carInfo:'',
|
|
|
}
|
|
|
},
|
|
|
onLoad(opt) {
|
|
|
this.ext = this.$common.getExtStoreId();
|
|
|
this.themeColor = uni.getStorageSync("themeColor");
|
|
|
-
|
|
|
+ this.itemDefault=uni.getStorageSync("itemDefault");
|
|
|
+ this.totalPrice=this.itemDefault.goodsnum*this.itemDefault.crossedPrice
|
|
|
+ this.totalPrice=this.totalPrice.toFixed(2)
|
|
|
+ var obj={
|
|
|
+ itemId:this.itemDefault.itemId,
|
|
|
+ itemName:this.itemDefault.goodsname,
|
|
|
+ itemQty:this.itemDefault.goodsnum,
|
|
|
+ salePrice:this.itemDefault.crossedPrice,
|
|
|
+ totalPrice:this.totalPrice,
|
|
|
+ packageItemID:this.itemDefault.id,
|
|
|
+ }
|
|
|
+ this.sheetDetail.push(obj)
|
|
|
+ this.carInfo=this.$store.state.carInfo;
|
|
|
+ this.userInfo=uni.getStorageSync("wxOpenData");
|
|
|
+ console.log(this.userInfo)
|
|
|
},
|
|
|
onShow() {
|
|
|
|
|
|
},
|
|
|
methods: {
|
|
|
|
|
|
- getAboutMember(){
|
|
|
+ submitFn(){
|
|
|
+ var params={
|
|
|
+ sheetType:7,
|
|
|
+ sheetContent:this.itemDefault.goodsname,
|
|
|
+ customerName:this.userInfo.loginInfo.customerInfo.customerName,
|
|
|
+ mobilePhone:this.userInfo.loginInfo.customerInfo.mobilePhone,
|
|
|
+ plateNumber:this.carInfo.plateNumber,
|
|
|
+ carModel:this.carInfo.carModel,
|
|
|
+ totalMoney:this.totalPrice,
|
|
|
+ sheetDetail:JSON.stringify(this.sheetDetail),
|
|
|
+ groupType:0,
|
|
|
+ comment:'',
|
|
|
+ shareId:'',
|
|
|
+ shopId:this.userInfo.loginInfo.customerInfo.shopID,
|
|
|
+ }
|
|
|
uni.showLoading({
|
|
|
title: '加载中'
|
|
|
})
|
|
|
- this.$http('miniApp2/sys/getAboutMember', {
|
|
|
- unionID:this.unionID
|
|
|
- }, 'GET').then(res => {
|
|
|
+
|
|
|
+ this.$http('openMallOrder/submitOrder', params,'POST').then(res => {
|
|
|
uni.hideLoading();
|
|
|
-
|
|
|
+ if(res.code==0){
|
|
|
+ this.orderData=res.data
|
|
|
+ this.unifiedPay(res.data)
|
|
|
+ }else{
|
|
|
+ uni.showToast({
|
|
|
+ title: res.msg,
|
|
|
+ icon: 'none',
|
|
|
+ duration: 3000
|
|
|
+ });
|
|
|
+ }
|
|
|
|
|
|
})
|
|
|
},
|
|
|
+ unifiedPay(res){
|
|
|
+ this.$http('openMallOrder/unifiedPay', {
|
|
|
+ sheetId:res.id
|
|
|
+ },'POST').then(res => {
|
|
|
+ this.isgo=true;
|
|
|
+ if(res.code==0){
|
|
|
+
|
|
|
+ this.requestPayment(res.data)
|
|
|
+ }else{
|
|
|
+ uni.showToast({
|
|
|
+ title: res.msg,
|
|
|
+ icon: 'none',
|
|
|
+ duration: 3000
|
|
|
+ });
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ requestPayment(res){
|
|
|
+ var payInfo=res;
|
|
|
+ //console.log(payInfo)
|
|
|
+ //console.log(String(Date.now()))
|
|
|
+ var that=this;
|
|
|
+ uni.requestPayment({
|
|
|
+ provider: 'wxpay',
|
|
|
+ //timeStamp: String(Date.now()),
|
|
|
+ timeStamp: payInfo.timeStamp,
|
|
|
+ nonceStr: payInfo.nonceStr,
|
|
|
+ package:payInfo.package,
|
|
|
+ signType: payInfo.signType,
|
|
|
+ paySign: payInfo.paySign,
|
|
|
+ appid:payInfo.appId,
|
|
|
+ success: function (res) {
|
|
|
+ console.log('success:' + JSON.stringify(res));
|
|
|
+ uni.showToast({
|
|
|
+ title: '支付成功',
|
|
|
+ icon:'none',
|
|
|
+ duration: 2000
|
|
|
+ });
|
|
|
+ uni.navigateTo({
|
|
|
+ url:'paySuccess?type=1'
|
|
|
+ })
|
|
|
+
|
|
|
+
|
|
|
+ },
|
|
|
+ fail: function (err) {
|
|
|
+ console.log(err)
|
|
|
+ uni.showToast({
|
|
|
+ title: '支付失败',
|
|
|
+ icon:'none',
|
|
|
+ duration: 2000
|
|
|
+ });
|
|
|
+ uni.navigateTo({
|
|
|
+ url:'paySuccess?type=2'
|
|
|
+ })
|
|
|
+ }
|
|
|
+
|
|
|
+ });
|
|
|
+ },
|
|
|
|
|
|
|
|
|
|