You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hezhiying/pages/warehouse/weituo.vue

218 lines
5.1 KiB

1 year ago
<template>
<view class="page">
<!-- 订单商品 -->
<view class="order-goods">
<view class="goods-list">
<view v-for="(item,index) in orderInfo" :key="index">
<view class="orderNum">
订单编号{{orderDetails.order_sn}}
</view>
<view class="list">
<view class="thumb">
<image :src="item.goods_image" mode=""></image>
</view>
<view class="item">
<view class="title">
<text class="one-omit">{{item.goods_name}}</text>
</view>
<view class="price">
<text>购买价格{{item.goods_price}}</text>
</view>
</view>
</view>
</view>
</view>
</view>
<!-- 订单信息 -->
<view class="order-info">
<view class="weituotitle">
委托价格
</view>
<view class="priceContent">
1 year ago
{{orderDetails.order_amount}}
1 year ago
</view>
1 year ago
1 year ago
<view class="slide">
1 year ago
<slider :value="value" @changing="sliderChange" :min="min" :max="max"/>
1 year ago
1 year ago
</view>
1 year ago
<view class="numContent">
<view class="">
{{min}}
</view>
<view class="">
{{max}}
</view>
</view>
1 year ago
</view>
<view class="order-info">
<view class="info-list">
1 year ago
<view class="list" @click="goyhq">
1 year ago
<view class="title">优惠券:</view>
<view class="content">
1 year ago
<text>{{couponNum}}</text>
1 year ago
<text class="iconfont icon-more"></text>
</view>
</view>
<view class="list">
<view class="title">上架手续费:</view>
<view class="content">
1 year ago
<text>{{sxf}}</text>
1 year ago
</view>
</view>
</view>
</view>
<!-- 订单明细 -->
<view class="order-details">
<view class="details-list">
<view class="list">
<view class="title">
<text>使用佣金</text>
</view>
<view class="price">
1 year ago
<u-switch v-model="switchValue"
:activeValue="1"
:inactiveValue="0"
></u-switch>
1 year ago
</view>
</view>
</view>
</view>
<view class="btnContainer">
<view class="heji">
1 year ago
合计{{total}}
1 year ago
</view>
1 year ago
<view class="btnItem" @click="submitHandle">
1 year ago
确认上架
</view>
</view>
</view>
</template>
<script>
1 year ago
import {orderDetail,payUpGoods} from '@/common/api.js'
1 year ago
export default {
data() {
return {
orderInfo:[],
warehouse:[],
orderDetails:{},
value:30,
1 year ago
min:0,
max:0,
coupon_id:null,
couponNum:0,
sxfRadio:null,
sxf:null,
switchValue:1,
total:0,
1 year ago
};
},
methods:{
1 year ago
submitHandle(){
let params={
order_id:this.id,
coupon_id:this.coupon_id,
use_commission:this.switchValue,
}
payUpGoods(params).then(res=>{
this.getOrderDetails()
})
},
goyhq(){
uni.navigateTo({
url:"/pages/MyCoupon/MyCoupon?id="+this.id
})
},
1 year ago
gopay(){
uni.navigateTo({
url:"/pages/warehouse/pay?num="+this.orderDetails.order_amount+'&id='+this.orderDetails.id
})
},
getOrderDetails(){
orderDetail({id:this.id,custom: { auth: true }}).then(res=>{
1 year ago
this.value = this.min = res.data.order_amount
1 year ago
this.orderDetails = Object.assign({},this.orderDetails,res.data);
this.orderInfo = res.data.order_goods
this.warehouse = res.data.warehouse
1 year ago
this.sxfRadio = res.data.entrustment_ratio
this.max = Number(this.min)*(1+(Number(res.data.entrusted_ratio)/100))
1 year ago
console.log(this.max)
1 year ago
let sxf = Number(res.data.order_amount)*(Number(this.sxfRadio)/100)
this.sxf = sxf.toFixed(2)
this.total = (Number(this.orderDetails.order_amount)+ Number(this.sxf) - Number(this.couponNum)).toFixed(2);
1 year ago
})
},
1 year ago
sliderChange(val){
this.orderDetails.order_amount = val.detail.value;
let sxf = Number(val.detail.value)*(Number(this.sxfRadio)/100)
this.sxf = sxf.toFixed(2)
this.total = (Number(this.orderDetails.order_amount)+ Number(this.sxf) - Number(this.couponNum)).toFixed(2);
},
1 year ago
1 year ago
// 微信支付
async pay(pay_list) {
let that = this;
// #ifdef H5
if (typeof WeixinJSBridge != "undefined") {
return new Promise((resove, reject) => {
WeixinJSBridge.invoke(
'getBrandWCPayRequest', {
"appId": "", //公众号ID,由商户传入
"timeStamp": "", //时间戳,自1970年以来的秒数
"nonceStr": "", //随机串
"package": "",
"signType": "", //微信签名方式:
"paySign": "" //微信签名
},
function(res) {
if (res.err_msg == "get_brand_wcpay_request:ok") {
setTimeout(() => {
resove(true)
}, 1000)
} else {
that.showToast({
title: `支付失败`
})
setTimeout(() => {
reject("支付失败")
}, 1000)
}
})
});
}
// #endif
},
},
onLoad(option) {
1 year ago
if(option.coupon){
this.coupon_id = option.coupon_id;
this.couponNum = Number(option.num);
}
1 year ago
this.id = option.id;
this.getOrderDetails()
}
}
</script>
<style scoped lang="scss">
@import 'weituo.scss';
1 year ago
.numContent{
display: flex;
width:100%;
justify-content: space-between;
align-items: center;
padding:0 24rpx 24rpx 24rpx;
color:gray;
}
1 year ago
</style>