|
@@ -1,118 +1,159 @@
|
|
|
-<template>
|
|
|
- <view class="box">
|
|
|
- <view class="content">
|
|
|
- <view class="viewBg">
|
|
|
- <image src="../../static/img/icon_xinghao.png" mode="" style="width: 14rpx; height: 14rpx;"></image>
|
|
|
- <view class="leftTitle">退款原因</view>
|
|
|
- <picker class="width70" mode="selector" :range="reasonArray" @change="reasonChange" >
|
|
|
- <view class="blackColor" :class="{grayColor: reason==''}">{{reason?reason:'请选择'}}</view>
|
|
|
- </picker>
|
|
|
-
|
|
|
- <image src="../../static/img/rightArrow.png" mode="" style="width: 13rpx; height: 23rpx;"></image>
|
|
|
- </view>
|
|
|
+<template>
|
|
|
+ <view class="box">
|
|
|
+ <view class="content">
|
|
|
+ <view class="viewBg">
|
|
|
+ <image src="../../static/img/icon_xinghao.png" mode="" style="width: 14rpx; height: 14rpx;"></image>
|
|
|
+ <view class="leftTitle">退款原因</view>
|
|
|
+ <picker :value="firstIndex" class="width70" mode="selector" :range="reasonArray" range-key="contents"
|
|
|
+ @change="reasonChange">
|
|
|
+ <view class="blackColor" :class="{grayColor: firstIndex==null}">
|
|
|
+ {{firstIndex == null ? '请选择' : reasonArray[firstIndex].contents}}
|
|
|
+ </view>
|
|
|
+ </picker>
|
|
|
+
|
|
|
+ <image src="../../static/img/rightArrow.png" mode="" style="width: 13rpx; height: 23rpx;"></image>
|
|
|
+ </view>
|
|
|
+
|
|
|
+ <view class="moneyBg">
|
|
|
+ <view class="viewBg2">
|
|
|
+ <image src="../../static/img/icon_xinghao.png" mode="" style="width: 14rpx; height: 14rpx;"></image>
|
|
|
+ <view class="leftTitle">退款金额</view>
|
|
|
+ <input class="blackColor" type="number" v-model="money" :placeholder="'最大可退 ¥'+maxMoney"
|
|
|
+ placeholder-style="color:#999999" />
|
|
|
+
|
|
|
+ </view>
|
|
|
+ <view class="grayColor">如全额退款,优惠券会退回到您的账户</view>
|
|
|
+ </view>
|
|
|
+
|
|
|
+
|
|
|
+ <view class="contentBg">
|
|
|
+ <view class="leftTitle">补充描述</view>
|
|
|
+
|
|
|
+ <textarea placeholder-style="color:#999999" placeholder="选填,请输入补充描述" v-model="exeContent"
|
|
|
+ class="textareaCont" maxlength="-1" auto-height="true" @confirm="feedDone" />
|
|
|
+
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+ export default {
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ id:'',
|
|
|
+ reasonArray: [],
|
|
|
+ firstIndex: null,
|
|
|
+ reasonId: '',
|
|
|
+ maxMoney: '',
|
|
|
+ money: '',
|
|
|
+ exeContent: '',
|
|
|
+ }
|
|
|
+ },
|
|
|
+ onLoad(opt) {
|
|
|
+ this.id = opt.id;
|
|
|
+ this.maxMoney = opt.maxMoney;
|
|
|
+ this.getRefundData();
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ getRefundData() {
|
|
|
+ uni.showLoading({
|
|
|
+ title: '加载中'
|
|
|
+ })
|
|
|
+ let url = 'worldKeepCar/orderRefund/refuseReasonList',
|
|
|
+ params = {
|
|
|
+ type: 3,
|
|
|
|
|
|
- <view class="moneyBg">
|
|
|
- <view class="viewBg2">
|
|
|
- <image src="../../static/img/icon_xinghao.png" mode="" style="width: 14rpx; height: 14rpx;"></image>
|
|
|
- <view class="leftTitle">退款金额</view>
|
|
|
- <input class="blackColor" type="number" v-model ="money" placeholder="最大可退 ¥123"
|
|
|
- placeholder-style="color:#999999" />
|
|
|
-
|
|
|
- </view>
|
|
|
- <view class="grayColor">如全额退款,优惠券会退回到您的账户</view>
|
|
|
- </view>
|
|
|
+ }
|
|
|
+ this.$http(url, params, 'GET').then(res => {
|
|
|
|
|
|
+ uni.hideLoading();
|
|
|
|
|
|
- <view class="contentBg">
|
|
|
- <view class="leftTitle">补充描述</view>
|
|
|
-
|
|
|
- <textarea placeholder-style="color:#999999" placeholder="选填,请输入补充描述" v-model="exeContent"
|
|
|
- class="textareaCont" maxlength="-1" auto-height="true" @confirm="feedDone" />
|
|
|
-
|
|
|
- </view>
|
|
|
- </view>
|
|
|
- </view>
|
|
|
-</template>
|
|
|
-
|
|
|
-<script>
|
|
|
- export default {
|
|
|
- data() {
|
|
|
- return {
|
|
|
- maxMoney:'',
|
|
|
- reasonArray:['不想要了','质量不好'],
|
|
|
- reason:'',
|
|
|
- money:'',
|
|
|
- exeContent:'',
|
|
|
- }
|
|
|
- },
|
|
|
- methods: {
|
|
|
- feedDone(e) {
|
|
|
- this.exeContent = e.target.value
|
|
|
|
|
|
- },
|
|
|
- reasonChange(e){
|
|
|
- this.reason = this.reasonArray[e.detail.value];
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-</script>
|
|
|
-
|
|
|
-<style scoped>
|
|
|
- .box {
|
|
|
- min-height: 100vh;
|
|
|
- background: #F4F5F7;
|
|
|
- padding-top: 20rpx;
|
|
|
- }
|
|
|
-
|
|
|
- .content{
|
|
|
- background-color: #FFFFFF;
|
|
|
- border-radius: 10rpx;
|
|
|
- margin: 20rpx 24rpx;
|
|
|
- padding: 0 20rpx;
|
|
|
- }
|
|
|
- .viewBg{
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- padding: 30rpx 0;
|
|
|
- border-bottom: 1rpx solid #EEEEEE;
|
|
|
- }
|
|
|
- .width70{
|
|
|
- width: 70%;
|
|
|
- }
|
|
|
- .moneyBg{
|
|
|
- padding: 30rpx 0;
|
|
|
- border-bottom: 1rpx solid #EEEEEE;
|
|
|
- }
|
|
|
- .viewBg2{
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- margin-bottom: 20rpx;
|
|
|
- }
|
|
|
- .leftTitle{
|
|
|
- color: #333333;
|
|
|
- font-size: 28rpx;
|
|
|
- width: 130rpx;
|
|
|
- margin-right: 50rpx;
|
|
|
- }
|
|
|
- .blackColor{
|
|
|
- color: #333333;
|
|
|
- font-size: 28rpx;
|
|
|
- }
|
|
|
- .grayColor{
|
|
|
- color: #999999;
|
|
|
- font-size: 28rpx;
|
|
|
- }
|
|
|
- .textareaCont {
|
|
|
-
|
|
|
- width: 70%;
|
|
|
- font-size: 28rpx;
|
|
|
- color: #333333;
|
|
|
-
|
|
|
- }
|
|
|
- .contentBg{
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- padding: 30rpx 0;
|
|
|
-
|
|
|
- }
|
|
|
+ this.reasonArray = res.data
|
|
|
+ console.log(this.reasonArray);
|
|
|
+
|
|
|
+ })
|
|
|
+ },
|
|
|
+ feedDone(e) {
|
|
|
+ this.exeContent = e.target.value
|
|
|
+
|
|
|
+ },
|
|
|
+ reasonChange(e) {
|
|
|
+
|
|
|
+ this.firstIndex = e.target.value
|
|
|
+ this.reasonId = this.reasonArray[this.firstIndex].ID
|
|
|
+
|
|
|
+ },
|
|
|
+ }
|
|
|
+ }
|
|
|
+</script>
|
|
|
+
|
|
|
+<style scoped>
|
|
|
+ .box {
|
|
|
+ min-height: 100vh;
|
|
|
+ background: #F4F5F7;
|
|
|
+ padding-top: 20rpx;
|
|
|
+ }
|
|
|
+
|
|
|
+ .content {
|
|
|
+ background-color: #FFFFFF;
|
|
|
+ border-radius: 10rpx;
|
|
|
+ margin: 20rpx 24rpx;
|
|
|
+ padding: 0 20rpx;
|
|
|
+ }
|
|
|
+
|
|
|
+ .viewBg {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ padding: 30rpx 0;
|
|
|
+ border-bottom: 1rpx solid #EEEEEE;
|
|
|
+ }
|
|
|
+
|
|
|
+ .width70 {
|
|
|
+ width: 70%;
|
|
|
+ }
|
|
|
+
|
|
|
+ .moneyBg {
|
|
|
+ padding: 30rpx 0;
|
|
|
+ border-bottom: 1rpx solid #EEEEEE;
|
|
|
+ }
|
|
|
+
|
|
|
+ .viewBg2 {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ margin-bottom: 20rpx;
|
|
|
+ }
|
|
|
+
|
|
|
+ .leftTitle {
|
|
|
+ color: #333333;
|
|
|
+ font-size: 28rpx;
|
|
|
+ width: 130rpx;
|
|
|
+ margin-right: 50rpx;
|
|
|
+ }
|
|
|
+
|
|
|
+ .blackColor {
|
|
|
+ color: #333333;
|
|
|
+ font-size: 28rpx;
|
|
|
+ }
|
|
|
+
|
|
|
+ .grayColor {
|
|
|
+ color: #999999;
|
|
|
+ font-size: 28rpx;
|
|
|
+ }
|
|
|
+
|
|
|
+ .textareaCont {
|
|
|
+
|
|
|
+ width: 70%;
|
|
|
+ font-size: 28rpx;
|
|
|
+ color: #333333;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ .contentBg {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ padding: 30rpx 0;
|
|
|
+
|
|
|
+ }
|
|
|
</style>
|