zhanghui 1 vuosi sitten
vanhempi
commit
8b9399529d

+ 9 - 0
api/groupon.js

@@ -1,6 +1,15 @@
 import request from "@/utils/request.js";
 
 
+//获取售后原因列表
+export function reasonList() {
+    return request.get("/v1/after-sales/reason/list",null);
+}
+
+//获取售后原因列表
+export function afterSalesSubmit(data) {
+    return request.post("/v1/after-sales/submit",data);
+}
 
 
 // 新增意见反馈

+ 1 - 1
pages/order/index.vue

@@ -296,7 +296,7 @@ export default {
 
 		salesReturn(item){
 			uni.navigateTo({
-				url:'/pages/order/orderAfterSales/orderAfterSales?id='+item.id
+				url:'/pages/order/orderAfterSales/orderAfterSales?item='+encodeURIComponent(JSON.stringify(item))
 			})
 		},
 

+ 0 - 1
pages/order/orderAfterSales/index.rpx.css

@@ -15,7 +15,6 @@
 }
 
 .success_status {
-    width: 100rpx;
     text-align: right;
     color: #75BE00;
 }

+ 129 - 85
pages/order/orderAfterSales/orderAfterSales.vue

@@ -2,65 +2,64 @@
 	<view>
 		<view class="flex-col">
 
-				<view class="myclient_list flex-col">
-					<view class="flex-row justify-between">
-						<view class="nl ">
-							团购名称团购名称团购名称团购名称团购名称团购名称
-						</view>
-						<view  class="success_status ">状态啊</view>
+			<view class="myclient_list flex-col">
+				<view class="flex-row justify-between">
+					<view class="nl ">
+						{{form.mainTitle}}
 					</view>
-					<view class="flex-col">
+					<view class="success_status ">{{form.orderStateDesc}}</view>
+				</view>
+				<view class="flex-col">
 
-						<view class="phone">
-							<image referrerpolicy="no-referrer" src="http://www.gzzzyd.com/groupon/home_slices/日期@2x.png" />
-							<text>
-								团购日期: 2023/25/5245/55 至 2023/25/5245/55
-							</text>
-						</view>
-						<view class="time">
-							<image referrerpolicy="no-referrer" src="http://www.gzzzyd.com/groupon/home_slices/出厂编号-线@2x.png" />
-							<text>
-								订单编号: 123165131613165
-							</text>
-						</view>
+					<view class="phone">
+						<image referrerpolicy="no-referrer" src="http://www.gzzzyd.com/groupon/home_slices/日期@2x.png" />
+						<text>
+							团购日期: {{form.grouponStartTime}} 至 {{form.grouponEndTime}}
+						</text>
 					</view>
-					<view class=" vgoodsNumber flex-row justify-center">
-						<text>请选择退货的商品和数量</text>
+					<view class="time">
+						<image referrerpolicy="no-referrer"
+							src="http://www.gzzzyd.com/groupon/home_slices/出厂编号-线@2x.png" />
+						<text>
+							订单编号: {{form.orderNo}}
+						</text>
 					</view>
 				</view>
+				<view class=" vgoodsNumber flex-row justify-center">
+					<text>请选择退货的商品和数量</text>
+				</view>
+			</view>
 
 
 
 			<view class="conter " :style="{'height':height}">
-				<scroll-view :scroll-top="scrollTop" scroll-y="true"  :style="{'height':height}">
+				<scroll-view :scroll-top="scrollTop" scroll-y="true" :style="{'height':height}">
 					<view>
-						<view class="all-products-body flex-row" v-for="i in 10" :key="i">
+						<view class="all-products-body flex-row" v-for="(item,i) in form.goodsList" :key="i">
 
 							<view class="flex-col  justify-center">
-								<view v-if="item.addressTrue" class="image-view">
+								<view v-if="item.isVGoods" class="image-view" @click="vGoods(item)">
 									<image class="image" src="/static/images/v.png"></image>
 								</view>
-								<view v-else class="image-view " >
+								<view v-else class="image-view @click=" @click="vGoods(item)">
 									<image class="image" src="/static/images/o.png"></image>
 								</view>
 							</view>
 
 							<view class="all-products-item flex-row  ">
-								<image class="goodsImage "
-									   src="/static/images/empty.png"
-									   mode="scaleToFill" />
+								<image class="goodsImage " :src="item.goodsImage" mode="scaleToFill" />
 
 								<view class="all-products-item-content flex-col">
 									<view class="all-products-item-content-t ">
-										商品名称商商品名称商商品名称
+										{{item.goodsName}}
 									</view>
 									<view class="all-products-item-content-b flex-row justify-between ">
 										<view class="flex-row">
-											<text class="red">100</text>
-											<text class="line-thr">98</text>
+											<text class="red">{{item.goodsPrice}}</text>
+											<!-- <text class="line-thr">{{item.goodsName}}</text> -->
 										</view>
 										<view class=" number-box">
-											<u-number-box :min=0 :max="10" > </u-number-box>
+											<u-number-box :min=0 :max="formCopy.goodsList[i].goodsNum" v-model="item.goodsNum" > </u-number-box>
 										</view>
 									</view>
 								</view>
@@ -74,14 +73,14 @@
 				<view class=" button-view flex-row  ">
 					<text class="reason">退货原因:</text>
 					<view class="input-view flex-col justify-center" @click="openRefundShow">
-						<view >
-							<u-input disabled placeholder="请选择退货原因"></u-input>
+						<view>
+							<u-input disabled placeholder="请选择退货原因" v-model="reason"></u-input>
 						</view>
 					</view>
 				</view>
 
 				<view class="button-view flex-col justify-center ">
-					<u-button color="#B42A3E ">提交</u-button>
+					<u-button color="#B42A3E " @click="afterSalesSubmit">提交</u-button>
 				</view>
 			</view>
 		</view>
@@ -91,42 +90,24 @@
 			<view class="Refund_view">
 				<view class="Refund_view_title">请选择退货/退款原因</view>
 				<view class="">
-					<scroll-view :scroll-top="scrollTop" scroll-y="true"  :style="{'height':'400rpx'}">
-						<radio-group class="Refund_view_radio" name="header_type" @change="changeTitleType">
-							<label>
-								<radio  value="退货/退款原因" /><text>退货/退款原因</text>
-							</label>
-							<label>
-								<radio value="退货/退款原因" /><text>退货/退款原因</text>
-							</label>
-							<label>
-								<radio value="退货/退款原因" /><text>退货/退款原因</text>
-							</label>
-							<label>
-								<radio value="退货/退款原因" /><text>退货/退款原因</text>
-							</label>
-							<label>
-								<radio value="退货/退款原因" /><text>退货/退款原因</text>
-							</label>
-							<label>
-								<radio value="退货/退款原因" /><text>退货/退款原因</text>
-							</label>
-							<label>
-								<radio value="退货/退款原因" /><text>退货/退款原因</text>
-							</label>
-							<label>
-								<radio value="退货/退款原因" /><text>退货/退款原因</text>
-							</label>
-							<label>
-								<radio value="退货/退款原因" /><text>退货/退款原因</text>
-							</label>
-							<label>
-								<radio value="退货/退款原因" /><text>退货/退款原因</text>
-							</label>
-						</radio-group>
+					<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>
+						</u-radio-group>
+
 					</scroll-view>
 				</view>
-				<button class="Refund_view_btn">
+				<button class="Refund_view_btn" @click="RefundShow = false" >
 					确定
 				</button>
 			</view>
@@ -137,34 +118,99 @@
 </template>
 
 <script>
+	import {
+		reasonList,
+		afterSalesSubmit
+	} from '@/api/groupon.js';
 	import UInput from "../../../uni_modules/uview-ui/components/u-input/u-input";
 	export default {
-		components: {UInput},
+		components: {
+			UInput
+		},
 
 		data() {
 			return {
-				RefundShow:false,
-				height:'',
+
+				reason: '',
+				goodsIds:[],
+				reasonList: [],
+				form: {},
+				formCopy: {},
+				RefundShow: false,
+				height: '',
 			}
 		},
 
-		onLoad(e){
-
-
+		onLoad(e) {
+			this.form = JSON.parse(decodeURIComponent(e.item));
+			this.formCopy = JSON.parse(decodeURIComponent(e.item));
+			console.log(this.form)
 		},
-		onShow(){
-			let sysInfo=uni.getSystemInfoSync();
-			this.height= sysInfo.windowHeight  -(sysInfo.screenWidth/750) * (500) +'px';
+		onShow() {
+			let sysInfo = uni.getSystemInfoSync();
+			this.height = sysInfo.windowHeight - (sysInfo.screenWidth / 750) * (500) + 'px';
 			console.log(this.height)
 		},
 		methods: {
-			openRefundShow(){
-				this.RefundShow =true
+			afterSalesSubmit(){
+				console.log(this.goodsIds)
+
+				if (this.goodsIds.length<=0){
+					uni.$u.toast('请选择商品')
+					return
+				}
+
+				if (!this.reason){
+					uni.$u.toast('请选择原因')
+					return
+				}
+				let flag =false
+				let afterSalesGoods =[]
+				this.form.goodsList.forEach(item =>{
+					if (this.goodsIds.indexOf(item.id) !== -1) {
+						if (!item.goodsNum){
+							uni.$u.toast('请选择商品数量')
+							flag = true
+						}
+						afterSalesGoods.push(item)
+					}
+				})
+
+				if (flag){
+					return;
+				}
+
+				let params ={
+					reason:this.reason,
+					orderId:this.form.orderId,
+					afterSalesGoodsList:afterSalesGoods
+				};
+				afterSalesSubmit(params).then(res => {
+					uni.$u.toast(res.msg)
+				}).catch(err =>{
+					uni.$u.toast(err.msg)
+				})
+			},
+
+			vGoods(item,index){
+				item.isVGoods = !item.isVGoods;
+				this.$set(this.form.goodsList,index,item)
+				if (this.goodsIds.indexOf(item.id) === -1){
+					this.goodsIds.push(item.id)
+				}else {
+					this.goodsIds = this.goodsIds.filter(iter => iter !== item.id)
+				}
+			},
+
+
+			openRefundShow() {
+				this.RefundShow = true
+				reasonList().then(res => {
+					this.reasonList = res.data
+					console.log(this.reasonList)
+				})
 			},
 
-			changeTitleType(e){
-				console.log(e)
-			}
 
 
 		}
@@ -174,6 +220,4 @@
 <style lang="scss" scoped>
 	@import "/static/css/common.css";
 	@import './index.rpx.css';
-
-
 </style>