1
This commit is contained in:
parent
417f759e87
commit
3233576b46
@ -32,13 +32,13 @@
|
|||||||
<!-- </view>-->
|
<!-- </view>-->
|
||||||
<view class="baseInfo">
|
<view class="baseInfo">
|
||||||
<view>
|
<view>
|
||||||
客户信息:{{ order.userName }} {{ order.userPhone }}
|
客户信息:{{ order.userName }} {{ order.userMobile }}
|
||||||
</view>
|
</view>
|
||||||
<view v-if="order.appointDate">
|
<view v-if="order.bookingTime">
|
||||||
预约时间:{{ order.appointDate }}
|
预约时间:{{ order.bookingTime }}
|
||||||
</view>
|
</view>
|
||||||
<view v-if="order.counselorName">
|
<view v-if="order.adviserName">
|
||||||
服务顾问:{{ order.counselorName }}
|
服务顾问:{{ order.adviserName }}
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<!-- <view class="footer">-->
|
<!-- <view class="footer">-->
|
||||||
|
@ -34,6 +34,7 @@ import VNavigationBar from '@/components/VNavigationBar.vue'
|
|||||||
import OrderCard from "@/components/orderCard.vue";
|
import OrderCard from "@/components/orderCard.vue";
|
||||||
import request from "@/utils/request";
|
import request from "@/utils/request";
|
||||||
import BookingOrderCard from "@/components/bookingOrderCard.vue";
|
import BookingOrderCard from "@/components/bookingOrderCard.vue";
|
||||||
|
import {formatTimestamp, formatTimestampCustom} from "@/utils/utils";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
@ -78,8 +79,7 @@ export default {
|
|||||||
console.log(res);
|
console.log(res);
|
||||||
this.orderList = res.data
|
this.orderList = res.data
|
||||||
this.orderList.map((item) => {
|
this.orderList.map((item) => {
|
||||||
item.userPhone = item.userMobile
|
item.bookingTime = formatTimestamp( item.bookingTime)
|
||||||
item.appointDate = item.bookingTime
|
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user