|
@@ -28,23 +28,31 @@
|
|
|
</view>
|
|
|
<view class="order">
|
|
|
<view class="order_a"><text class="order_yuan"></text> <text>取</text></view>
|
|
|
- <view class="order_b">
|
|
|
+ <view class="order_b" @click="copy(info.from_addr.location)">
|
|
|
<view class="order_p">{{info.from_addr.location}}</view>
|
|
|
<view class="order_c">
|
|
|
<view class="order_p1">{{info.from_addr.name}}</view>
|
|
|
<view class="order_p2">{{info.from_addr.mobile}}</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
+ <view class="order_c" @click="callPhone(info.from_addr.mobile)">
|
|
|
+ <image src="https://pet.hdlkeji.com/assets/static/phone.png" style="width: 50rpx;height: 50rpx;">
|
|
|
+ </image>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
<view class="order" style="margin-bottom: 20rpx;">
|
|
|
<view class="order_a"><text class="order_yuana order_yuan "></text> <text>送</text></view>
|
|
|
- <view class="order_b">
|
|
|
+ <view class="order_b" @click="copy(info.to_addr.location)">
|
|
|
<view class="order_p">{{info.to_addr.location}}</view>
|
|
|
<view class="order_c">
|
|
|
<view class="order_p1">{{info.to_addr.name}}</view>
|
|
|
<view class="order_p2">{{info.to_addr.mobile}}</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
+ <view class="order_c" @click="callPhone(info.to_addr.mobile)">
|
|
|
+ <image src="https://pet.hdlkeji.com/assets/static/phone.png" style="width: 50rpx;height: 50rpx;">
|
|
|
+ </image>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
<view class="row">
|
|
|
<view class="row half">
|
|
@@ -124,12 +132,12 @@
|
|
|
备注信息
|
|
|
</view>
|
|
|
<view class="text">
|
|
|
-
|
|
|
+
|
|
|
</view>
|
|
|
</view>
|
|
|
- </view>
|
|
|
- <view class="row">
|
|
|
- {{info.remark === null ?'无':info.remark}}
|
|
|
+ </view>
|
|
|
+ <view class="row">
|
|
|
+ {{info.remark === null ?'无':info.remark}}
|
|
|
</view>
|
|
|
<view class="row" v-if="info.images.length > 1" @click="clickImage(info.images)">
|
|
|
<view class="row half">
|
|
@@ -146,22 +154,22 @@
|
|
|
<view class="card">
|
|
|
<view class="title">
|
|
|
订单信息
|
|
|
- </view>
|
|
|
- <view class="row" v-if="isAdmin">
|
|
|
- <view class="name">
|
|
|
- 订单金额
|
|
|
- </view>
|
|
|
- <view class="text" style="color: red;">
|
|
|
- ¥{{info.real_amount}}
|
|
|
- </view>
|
|
|
- </view>
|
|
|
- <view class="row" v-if="isAdmin">
|
|
|
- <view class="name">
|
|
|
- 优惠金额
|
|
|
- </view>
|
|
|
- <view class="text" style="color: red;">
|
|
|
- ¥{{info.discount_amount}}
|
|
|
- </view>
|
|
|
+ </view>
|
|
|
+ <view class="row" v-if="isAdmin">
|
|
|
+ <view class="name">
|
|
|
+ 订单金额
|
|
|
+ </view>
|
|
|
+ <view class="text" style="color: red;">
|
|
|
+ ¥{{info.real_amount}}
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="row" v-if="isAdmin">
|
|
|
+ <view class="name">
|
|
|
+ 优惠金额
|
|
|
+ </view>
|
|
|
+ <view class="text" style="color: red;">
|
|
|
+ ¥{{info.discount_amount}}
|
|
|
+ </view>
|
|
|
</view>
|
|
|
<view class="row">
|
|
|
<view class="name">
|
|
@@ -176,7 +184,7 @@
|
|
|
下单时间
|
|
|
</view>
|
|
|
<view class="text">
|
|
|
- <!-- {{info.created_at?$u.timeFormat(info.created_at, 'yyyy年mm月dd日 hh时MM分'):"-"}} -->
|
|
|
+ <!-- {{info.created_at?$u.timeFormat(info.created_at, 'yyyy年mm月dd日 hh时MM分'):"-"}} -->
|
|
|
{{info.created_at?info.created_at:"-"}}
|
|
|
</view>
|
|
|
</view>
|
|
@@ -185,7 +193,7 @@
|
|
|
支付方式
|
|
|
</view>
|
|
|
<view class="text">
|
|
|
- {{info.pay_type === 1?"余额":"微信"}}
|
|
|
+ {{info.pay_type === 1?"余额支付":"微信支付"}}
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="row">
|
|
@@ -193,23 +201,23 @@
|
|
|
支付时间
|
|
|
</view>
|
|
|
<view class="text">
|
|
|
- <!-- {{info.pay_time?$u.timeFormat(info.pay_time, 'yyyy年mm月dd日 hh时MM分'):'-'}} -->
|
|
|
+ <!-- {{info.pay_time?$u.timeFormat(info.pay_time, 'yyyy年mm月dd日 hh时MM分'):'-'}} -->
|
|
|
{{info.pay_time?info.pay_time:"-"}}
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
|
|
|
- <view class="card" v-if="info.protect_valid">
|
|
|
+ <view class="card">
|
|
|
<view class="row">
|
|
|
<view class="row half">
|
|
|
<image src="http://pet.hdlkeji.com/assets/static/detaila.png" style="width: 30rpx;height: 30rpx;">
|
|
|
</image>
|
|
|
- <view style="margin: 0 20rpx;">宠物安心保</view>
|
|
|
+ <view class="yellow" style="margin: 0 20rpx;">宠物安心保</view>
|
|
|
<image src="http://pet.hdlkeji.com/assets/static/1/29.png" style="width: 30rpx;height: 30rpx;">
|
|
|
</image>
|
|
|
</view>
|
|
|
<view class="row half yellow">
|
|
|
- 生效中
|
|
|
+ {{info.protect_valid?"生效中":"已失效"}}
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="row">
|
|
@@ -235,8 +243,12 @@
|
|
|
<view class="name">
|
|
|
联系电话
|
|
|
</view>
|
|
|
- <view class="text">
|
|
|
- {{info.senders[0]?info.senders[0].user.mobile: "-"}}
|
|
|
+ <view class="text row" style="justify-content: space-between;">
|
|
|
+ <view>
|
|
|
+ {{info.senders[0]?info.senders[0].user.mobile: "-"}}
|
|
|
+ </view>
|
|
|
+ <image src="https://pet.hdlkeji.com/assets/static/phone.png" style="width: 30rpx;height: 30rpx;" @click="callPhone(info.senders[0].user.mobile)">
|
|
|
+ </image>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="row" v-if="info.senders[1].user.nickname">
|
|
@@ -249,17 +261,19 @@
|
|
|
</view>
|
|
|
<view class="row" v-if="info.senders[1].user.mobile">
|
|
|
<view class="name">
|
|
|
- 联系方式
|
|
|
+ 联系电话
|
|
|
</view>
|
|
|
- <view class="text">
|
|
|
- {{info.senders[1]?info.senders[1].user.mobile: "-"}}
|
|
|
+ <view class="text row" style="justify-content: space-between;">
|
|
|
+ <view>{{info.senders[1]?info.senders[1].user.mobile: "-"}}</view>
|
|
|
+ <image src="https://pet.hdlkeji.com/assets/static/phone.png" style="width: 30rpx;height: 30rpx;" @click="callPhone(info.senders[1].user.mobile)">
|
|
|
+ </image>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="row" v-if="">
|
|
|
<view class="name">
|
|
|
完成时间
|
|
|
</view>
|
|
|
- <view class="text">
|
|
|
+ <view class="text">
|
|
|
{{info.completed_at}}
|
|
|
<!-- {{info.completed_at?$u.timeFormat(info.completed_at, 'yyyy年mm月dd日 hh时MM分'):'-'}} -->
|
|
|
</view>
|
|
@@ -273,7 +287,7 @@
|
|
|
<view class="row">
|
|
|
<view class="row half">
|
|
|
<view class="name">
|
|
|
- 取件费
|
|
|
+ 取件费
|
|
|
</view>
|
|
|
<view class="text red">
|
|
|
¥{{info.current_send_order.fee_1}}
|
|
@@ -281,7 +295,7 @@
|
|
|
</view>
|
|
|
<view class="row half">
|
|
|
<view class="name">
|
|
|
- 派送费
|
|
|
+ 派送费
|
|
|
</view>
|
|
|
<view class="text red">
|
|
|
¥{{info.current_send_order.fee_3}}
|
|
@@ -291,7 +305,7 @@
|
|
|
<view class="row">
|
|
|
<view class="row half">
|
|
|
<view class="name">
|
|
|
- 运输费
|
|
|
+ 运输费
|
|
|
</view>
|
|
|
<view class="text red">
|
|
|
¥{{info.current_send_order.fee_2}}
|
|
@@ -299,7 +313,7 @@
|
|
|
</view>
|
|
|
<view class="row half">
|
|
|
<view class="name">
|
|
|
- 寄养费
|
|
|
+ 寄养费
|
|
|
</view>
|
|
|
<view class="text red">
|
|
|
¥{{info.current_send_order.fee_5}}
|
|
@@ -309,7 +323,7 @@
|
|
|
<view class="row">
|
|
|
<view class="row half">
|
|
|
<view class="name">
|
|
|
- 宠具费
|
|
|
+ 宠具费
|
|
|
</view>
|
|
|
<view class="text red">
|
|
|
¥{{info.current_send_order.fee_4}}
|
|
@@ -317,7 +331,7 @@
|
|
|
</view>
|
|
|
<view class="row half">
|
|
|
<view class="name">
|
|
|
- 其他
|
|
|
+ 其他
|
|
|
</view>
|
|
|
<view class="text red">
|
|
|
¥{{info.current_send_order.fee_6}}
|
|
@@ -332,14 +346,14 @@
|
|
|
<view class="text red">
|
|
|
¥{{info.current_send_order.fee_total}}
|
|
|
</view>
|
|
|
- </view>
|
|
|
- <view class="row half">
|
|
|
-
|
|
|
+ </view>
|
|
|
+ <view class="row half">
|
|
|
+
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
|
|
|
- <view class="card" v-if="info.status === 70">
|
|
|
+ <view class="card" v-if="info.status === 80 && info.refund_status > -1">
|
|
|
<view class="title">
|
|
|
退款信息
|
|
|
</view>
|
|
@@ -359,7 +373,7 @@
|
|
|
退款时间
|
|
|
</view>
|
|
|
<view class="text red">
|
|
|
- <!-- {{info.refund_at?$u.timeFormat(info.refund_at, 'yyyy年mm月dd日 hh时MM分'):'-'}} -->
|
|
|
+ <!-- {{info.refund_at?$u.timeFormat(info.refund_at, 'yyyy年mm月dd日 hh时MM分'):'-'}} -->
|
|
|
{{info.refund_at}}
|
|
|
</view>
|
|
|
</view>
|
|
@@ -370,12 +384,12 @@
|
|
|
退款原因
|
|
|
</view>
|
|
|
<view class="text">
|
|
|
-
|
|
|
+
|
|
|
</view>
|
|
|
</view>
|
|
|
- </view>
|
|
|
- <view class="row">
|
|
|
- {{info.refund_reason||''}}
|
|
|
+ </view>
|
|
|
+ <view class="row">
|
|
|
+ {{info.refund_reason||''}}
|
|
|
</view>
|
|
|
<view class="row">
|
|
|
<view class="row half">
|
|
@@ -385,22 +399,23 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="image">
|
|
|
- <image :src="item" class="image-dom" v-for="(item,index) in info.refund_images" @click="clickImage(info.refund_images)"></image>
|
|
|
+ <image :src="item" class="image-dom" v-for="(item,index) in info.refund_images"
|
|
|
+ @click="clickImage(info.refund_images)"></image>
|
|
|
</view>
|
|
|
</view>
|
|
|
|
|
|
- <view class="card" style="margin-bottom: 15vh;">
|
|
|
+ <view class="card" style="margin-bottom: 15vh;" v-if="info.user_remark.length>0">
|
|
|
<view class="title">
|
|
|
备注信息
|
|
|
</view>
|
|
|
- <view class="col">
|
|
|
- <view class="name" v-for="(item,key) in info.user_remark">
|
|
|
+ <view class="col" style="width: 100%;">
|
|
|
+ <view class="name" v-for="(item,key) in info.user_remark" style="width: 100%;">
|
|
|
{{item.txt}}
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
|
|
|
- <view class="bottom-btn" v-if="!(isAdmin&&info.status === 10&&info.status===1&&info.status!==40) && !isAdmin">
|
|
|
+ <view class="bottom-btn" v-if="!isAdmin">
|
|
|
<view class="buttom-dom" @click="create(info.id)" v-if="info.status === 1 && !isAdmin">
|
|
|
立即接单
|
|
|
</view>
|
|
@@ -411,15 +426,39 @@
|
|
|
<view class="buttom-dom" @click="video(0,2,info.id)" v-if="info.status === 10 || info.status === 20">
|
|
|
上传更多
|
|
|
</view>
|
|
|
- <view class="buttom-dom" @click="video(info.status,3,info.id)" v-if="info.status === 10">
|
|
|
+ <view class="buttom-dom" @click="video(info.status,3,info.id)"
|
|
|
+ v-if="info.status === 10 && info.current_send_order.type === 1">
|
|
|
上传取宠视频
|
|
|
</view>
|
|
|
- <view class="buttom-dom" @click="video(info.status,4,info.id)" v-if="info.status === 20">
|
|
|
+ <view class="buttom-dom" @click="video(info.status,4,info.id)"
|
|
|
+ v-if="info.status === 20 && info.current_send_order.type === 1">
|
|
|
上传运输视频
|
|
|
</view>
|
|
|
- <view class="buttom-dom" @click="video(info.status,5,info.id)" v-if="info.status === 30">
|
|
|
+ <view class="buttom-dom" @click="video(info.status,5,info.id)"
|
|
|
+ v-if="info.status === 30 && info.current_send_order.type === 2">
|
|
|
上传送达视频
|
|
|
</view>
|
|
|
+ <view class="buttom-dom" @click="del(info.id)" v-if="info.status === 60 && info.refund_status !== 0">
|
|
|
+ 删除订单
|
|
|
+ </view>
|
|
|
+ <view class="buttom-dom" @click="del(info.id)" v-if="info.status === 80 && info.refund_status !== 0">
|
|
|
+ 删除订单
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="bottom-btn" v-if="isAdmin">
|
|
|
+ <view class="buttom-dom" @click.stop="transport(info.id)" v-if="info.status>1">运送详情</view>
|
|
|
+ <view class="buttom-dom" @click="video(0,1,info.id)"
|
|
|
+ v-if="info.status === 1 || info.status === 10 || info.status === 20 || info.status === 30">
|
|
|
+ 备注
|
|
|
+ </view>
|
|
|
+ <view class="buttom-dom" @click.stop="push(info.id)" v-if="info.status == 55">结算</view>
|
|
|
+ <view class="buttom-dom" @click.stop="refuse(info.id)" v-if="info.status == 55">拒绝</view>
|
|
|
+ <view class="buttom-dom" @click="del(info.id)" v-if="info.status === 60 && info.refund_status !== 0">
|
|
|
+ 删除订单
|
|
|
+ </view>
|
|
|
+ <view class="buttom-dom" @click="del(info.id)" v-if="info.status === 80 && info.refund_status !== 0">
|
|
|
+ 删除订单
|
|
|
+ </view>
|
|
|
</view>
|
|
|
</view>
|
|
|
</template>
|
|
@@ -430,21 +469,90 @@
|
|
|
return {
|
|
|
// 是否是管理员
|
|
|
isAdmin: false,
|
|
|
- info: {},
|
|
|
- id:''
|
|
|
+ info: {},
|
|
|
+ id: ''
|
|
|
}
|
|
|
},
|
|
|
onShow() {
|
|
|
- this.isAdmin = getApp().globalData.isAdmin
|
|
|
- this.getData(this.id);
|
|
|
+ // this.isAdmin = getApp().globalData.isAdmin
|
|
|
+ // this.getData(this.id);
|
|
|
},
|
|
|
onLoad(e) {
|
|
|
let id = e.id
|
|
|
this.isAdmin = getApp().globalData.isAdmin
|
|
|
- this.getData(id);
|
|
|
+ this.getData(id);
|
|
|
this.id = id
|
|
|
},
|
|
|
methods: {
|
|
|
+ // 拒绝结算
|
|
|
+ refuse(id) {
|
|
|
+ this.request("/admin_order/deal_settle", {
|
|
|
+ id: id,
|
|
|
+ status: 2
|
|
|
+ }, "GET").then(res => {
|
|
|
+ if (res.code === 1) {
|
|
|
+ uni.navigateBack({
|
|
|
+ delta: 1
|
|
|
+ })
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ // 结算
|
|
|
+ push(id) {
|
|
|
+ this.request("/admin_order/deal_settle", {
|
|
|
+ id: id,
|
|
|
+ status: 1
|
|
|
+ }, "GET").then(res => {
|
|
|
+ if (res.code === 1) {
|
|
|
+ uni.navigateBack({
|
|
|
+ delta: 1
|
|
|
+ })
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ // 运行详情
|
|
|
+ transport(id) {
|
|
|
+ uni.navigateTo({
|
|
|
+ url: "./transport?id=" + id + "&admin=" + 1
|
|
|
+ })
|
|
|
+ },
|
|
|
+ // 删除订单
|
|
|
+ del(id) {
|
|
|
+ let url = ""
|
|
|
+ if (this.isAdmin) {
|
|
|
+ url = "/admin_order/order_delete"
|
|
|
+ } else {
|
|
|
+ url = "/sender_order_controller/delete"
|
|
|
+ }
|
|
|
+ this.request(url, {
|
|
|
+ id: id
|
|
|
+ }, "GET").then(res => {
|
|
|
+ if (res.code === 1) {
|
|
|
+ uni.navigateBack({
|
|
|
+ delta: 1
|
|
|
+ })
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ // 点击复制
|
|
|
+ copy(str) {
|
|
|
+ wx.setClipboardData({
|
|
|
+ data: str,
|
|
|
+ success(res) {
|
|
|
+ wx.getClipboardData({
|
|
|
+ success(res) {
|
|
|
+ console.log(res.data) // data
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ // 点击拨打电话
|
|
|
+ callPhone(tel) {
|
|
|
+ uni.makePhoneCall({
|
|
|
+ phoneNumber: tel
|
|
|
+ })
|
|
|
+ },
|
|
|
// 点击查看图片
|
|
|
clickImage(images) {
|
|
|
uni.previewImage({
|
|
@@ -503,7 +611,7 @@
|
|
|
// }
|
|
|
// })
|
|
|
// }
|
|
|
- uni.navigateTo({
|
|
|
+ uni.redirectTo({
|
|
|
url: "./video?status=" + status + "&type=" + type + "&id=" + id
|
|
|
})
|
|
|
}
|
|
@@ -514,7 +622,6 @@
|
|
|
<style lang="scss">
|
|
|
.content {
|
|
|
padding-top: 40rpx;
|
|
|
- padding-bottom: 5vh;
|
|
|
}
|
|
|
|
|
|
.yellow {
|
|
@@ -526,12 +633,13 @@
|
|
|
}
|
|
|
|
|
|
.row {
|
|
|
- justify-content: flex-start;
|
|
|
- .row{
|
|
|
- .name{
|
|
|
- min-width: 90rpx;
|
|
|
- text-align: right;
|
|
|
- }
|
|
|
+ justify-content: flex-start;
|
|
|
+
|
|
|
+ .row {
|
|
|
+ .name {
|
|
|
+ min-width: 90rpx;
|
|
|
+ text-align: right;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -549,13 +657,13 @@
|
|
|
justify-content: space-between;
|
|
|
|
|
|
.name {
|
|
|
- color: #999;
|
|
|
+ color: #999;
|
|
|
min-width: 20%;
|
|
|
}
|
|
|
|
|
|
.text {
|
|
|
- text-indent: 1em;
|
|
|
- overflow-x: scroll;
|
|
|
+ text-indent: 1em;
|
|
|
+ overflow-x: scroll;
|
|
|
white-space: nowrap;
|
|
|
}
|
|
|
|
|
@@ -600,6 +708,7 @@
|
|
|
justify-content: flex-start;
|
|
|
align-items: center;
|
|
|
|
|
|
+
|
|
|
.order_yuan {
|
|
|
display: inline-block;
|
|
|
width: 14rpx;
|
|
@@ -622,9 +731,10 @@
|
|
|
}
|
|
|
|
|
|
.order_b {
|
|
|
- width: 85%;
|
|
|
+ width: 80%;
|
|
|
text-align: left;
|
|
|
|
|
|
+
|
|
|
.order_p {
|
|
|
font-size: 26rpx;
|
|
|
font-family: PingFang SC;
|
|
@@ -688,8 +798,6 @@
|
|
|
|
|
|
|
|
|
.bottom-btn {
|
|
|
- position: fixed;
|
|
|
- bottom: 0;
|
|
|
width: 100vw;
|
|
|
height: 10vh;
|
|
|
background-color: #FFFFFF;
|