|
@@ -59,7 +59,8 @@
|
|
|
<!-- <text class="line-thr">{{item.goodsName}}</text> -->
|
|
|
</view>
|
|
|
<view class=" number-box">
|
|
|
- <u-number-box :min=0 :max="formCopy.goodsList[i].goodsNum" v-model="item.goodsNum" > </u-number-box>
|
|
|
+ <u-number-box :min=0 :max="formCopy.goodsList[i].goodsNum"
|
|
|
+ v-model="item.goodsNum"> </u-number-box>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -91,23 +92,15 @@
|
|
|
<view class="Refund_view_title">请选择退货/退款原因</view>
|
|
|
<view class="">
|
|
|
<scroll-view :scroll-top="scrollTop" scroll-y="true" :style="{'height':'400rpx'}">
|
|
|
- <u-radio-group
|
|
|
- v-model="reason"
|
|
|
- placement="column"
|
|
|
- >
|
|
|
- <u-radio
|
|
|
- :customStyle="{marginBottom: '8px'}"
|
|
|
- v-for="(item, index) in reasonList"
|
|
|
- :key="index"
|
|
|
- :label="item.reason"
|
|
|
- :name="item.reason"
|
|
|
- >
|
|
|
+ <u-radio-group v-······model="reason" placement="column">
|
|
|
+ <u-radio :customStyle="{marginBottom: '8px'}" v-for="(item, index) in reasonList"
|
|
|
+ :key="index" :label="item.reason" :name="item.reason">
|
|
|
</u-radio>
|
|
|
</u-radio-group>
|
|
|
|
|
|
</scroll-view>
|
|
|
</view>
|
|
|
- <button class="Refund_view_btn" @click="RefundShow = false" >
|
|
|
+ <button class="Refund_view_btn" @click="RefundShow = false">
|
|
|
确定
|
|
|
</button>
|
|
|
</view>
|
|
@@ -132,7 +125,7 @@
|
|
|
return {
|
|
|
|
|
|
reason: '',
|
|
|
- goodsIds:[],
|
|
|
+ goodsIds: [],
|
|
|
reasonList: [],
|
|
|
form: {},
|
|
|
formCopy: {},
|
|
@@ -152,23 +145,23 @@
|
|
|
console.log(this.height)
|
|
|
},
|
|
|
methods: {
|
|
|
- afterSalesSubmit(){
|
|
|
+ afterSalesSubmit() {
|
|
|
console.log(this.goodsIds)
|
|
|
|
|
|
- if (this.goodsIds.length<=0){
|
|
|
+ if (this.goodsIds.length <= 0) {
|
|
|
uni.$u.toast('请选择商品')
|
|
|
return
|
|
|
}
|
|
|
|
|
|
- if (!this.reason){
|
|
|
+ if (!this.reason) {
|
|
|
uni.$u.toast('请选择原因')
|
|
|
return
|
|
|
}
|
|
|
- let flag =false
|
|
|
- let afterSalesGoods =[]
|
|
|
- this.form.goodsList.forEach(item =>{
|
|
|
+ let flag = false
|
|
|
+ let afterSalesGoods = []
|
|
|
+ this.form.goodsList.forEach(item => {
|
|
|
if (this.goodsIds.indexOf(item.id) !== -1) {
|
|
|
- if (!item.goodsNum){
|
|
|
+ if (!item.goodsNum) {
|
|
|
uni.$u.toast('请选择商品数量')
|
|
|
flag = true
|
|
|
}
|
|
@@ -176,28 +169,28 @@
|
|
|
}
|
|
|
})
|
|
|
|
|
|
- if (flag){
|
|
|
+ if (flag) {
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- let params ={
|
|
|
- reason:this.reason,
|
|
|
- orderId:this.form.orderId,
|
|
|
- afterSalesGoodsList:afterSalesGoods
|
|
|
+ let params = {
|
|
|
+ reason: this.reason,
|
|
|
+ orderId: this.form.orderId,
|
|
|
+ afterSalesGoodsList: afterSalesGoods
|
|
|
};
|
|
|
afterSalesSubmit(params).then(res => {
|
|
|
uni.$u.toast(res.msg)
|
|
|
- }).catch(err =>{
|
|
|
+ }).catch(err => {
|
|
|
uni.$u.toast(err.msg)
|
|
|
})
|
|
|
},
|
|
|
|
|
|
- vGoods(item,index){
|
|
|
+ vGoods(item, index) {
|
|
|
item.isVGoods = !item.isVGoods;
|
|
|
- this.$set(this.form.goodsList,index,item)
|
|
|
- if (this.goodsIds.indexOf(item.id) === -1){
|
|
|
+ this.$set(this.form.goodsList, index, item)
|
|
|
+ if (this.goodsIds.indexOf(item.id) === -1) {
|
|
|
this.goodsIds.push(item.id)
|
|
|
- }else {
|
|
|
+ } else {
|
|
|
this.goodsIds = this.goodsIds.filter(iter => iter !== item.id)
|
|
|
}
|
|
|
},
|
|
@@ -220,4 +213,4 @@
|
|
|
<style lang="scss" scoped>
|
|
|
@import "/static/css/common.css";
|
|
|
@import './index.rpx.css';
|
|
|
-</style>
|
|
|
+</style>
|