123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- <template>
- <view>
- <view class="top">
- <!-- #ifdef MP-WEIXIN -->
- <NavigateBar title="订单详情" control="back" bgcolor="#a09cc4"></NavigateBar>
- <!-- #endif -->
- <!-- #ifdef MP-ALIPAY -->
- <NavigateBar title="订单详情" bgcolor="#a09cc4"></NavigateBar>
- <!-- #endif -->
- </view>
- <view class="info-item">
- <u-text text="订单id:"></u-text>
- <u-text :text="orderInfo.orderId" align="right"></u-text>
- </view>
- <view class="info-item">
- <u-text text="姓名:"></u-text>
- <u-text :text="orderInfo.name" align="right"></u-text>
- </view>
- <view class="info-item">
- <u-text text="手机号:"></u-text>
- <u-text :text="orderInfo.phone" align="right"></u-text>
- </view>
- <view class="info-item">
- <u-text text="酒店:"></u-text>
- <u-text :text="orderInfo.hotelName" align="right"></u-text>
- </view>
- <view class="info-item">
- <u-text text="房间类型:"></u-text>
- <u-text :text="orderInfo.roomTypeName" align="right"></u-text>
- </view>
- <view class="info-item">
- <u-text text="楼栋:"></u-text>
- <u-text :text="orderInfo.building" align="right"></u-text>
- </view>
- <view class="info-item">
- <u-text text="楼层:"></u-text>
- <u-text :text="orderInfo.floor" align="right"></u-text>
- </view>
- <view class="info-item">
- <u-text text="房间号:"></u-text>
- <u-text :text="orderInfo.room+'('+orderInfo.breakfastNum+')'" align="right"></u-text>
- </view>
- <view class="info-item">
- <u-text text="开始日期:"></u-text>
- <u-text :text="orderInfo.startTime" align="right"></u-text>
- </view>
- <view class="info-item">
- <u-text text="结束日期:"></u-text>
- <u-text :text="orderInfo.endTime" align="right"></u-text>
- </view>
- <view class="info-item">
- <u-text text="创建时间:"></u-text>
- <u-text :text="orderInfo.createTime" align="right"></u-text>
- </view>
- <view class="info-item">
- <u-text text="价格:"></u-text>
- <u-text :text="orderInfo.price" align="right"></u-text>
- </view>
- <view class="info-item">
- <u-text text="支付时间:"></u-text>
- <u-text :text="orderInfo.paymentTime" align="right"></u-text>
- </view>
- <view class="info-item">
- <u-text text="支付方式:"></u-text>
- <u-text :text="orderInfo.paymentMethod" align="right"></u-text>
- </view>
- <view class="info-item">
- <u-text text="订单状态:"></u-text>
- <u-text :text="orderInfo.status" align="right"></u-text>
- </view>
- <view class="info-item">
- <u-text text="支付状态:"></u-text>
- <u-text :text="orderInfo.paymentStatus" align="right"></u-text>
- </view>
- <view class="btn-container">
- <u-button text="删除" type="error" @click="deleteOrder" color="#9e97c3"></u-button>
- </view>
- </view>
- </template>
- <script>
- import moment from "moment"
- import NavigateBar from "../../components/navigateBar/navigate-bar.vue";
- export default {
- components: {
- NavigateBar
- },
- data() {
- return {
- orderId: '',
- orderInfo: {},
- paymentStatus: {
- UNPAID: '待支付',
- PAID: '已支付'
- },
- status: {
- CANCELED: "已取消",
- ORDER_PLACED: "已下单",
- ROOM_SELECTED: "已选房",
- CHECK_IN: "已入住",
- FINISHED: "已完成"
- }
- };
- },
- methods: {
- async queryOrder() {
- let res = await uni.$http.post('/hotelOrder/queryByCondition', {
- orderId: this.orderId,
- deleted: false,
- pageNo: 1,
- pageSize: 999
- })
- console.log(res)
- this.orderInfo = JSON.parse(JSON.stringify(res.data.data.records[0]))
- this.orderInfo.orderId = this.orderInfo.orderId.toUpperCase()
- this.orderInfo.startTime = moment(this.orderInfo.startTime).format('YYYY-MM-DD')
- this.orderInfo.endTime = moment(this.orderInfo.endTime).format('YYYY-MM-DD')
- this.orderInfo.createTime = moment(this.orderInfo.createTime).format('YYYY-MM-DD HH:mm:ss')
- this.orderInfo.paymentTime = this.orderInfo.paymentTime === null ? '' : moment(this.orderInfo
- .paymentTime).format('YYYY-MM-DD HH:mm:ss')
- this.orderInfo.status = this.status[this.orderInfo.status]
- this.orderInfo.paymentStatus = this.paymentStatus[this.orderInfo.paymentStatus]
- this.orderInfo.breakfastNum = this.orderInfo.breakfastNum === undefined ? 0 : this.orderInfo
- .breakfastNum
- },
- async deleteOrder() {
- let res = await uni.$http.delete('/hotelOrder/' + this.orderInfo.id)
- console.log(res)
- if (res.data.code === 200 && res.data.msg === 'SUCCESS') {
- uni.$showMsg('删除成功!')
- setTimeout(() => {
- uni.switchTab({
- url: '/pages/order/order'
- })
- }, 1000)
- } else {
- uni.$showMsg('删除失败!')
- }
- }
- },
- async onLoad(options) {
- console.log(options.orderId)
- this.orderId = options.orderId
- await this.queryOrder()
- },
- // #ifdef MP-WEIXIN
- onShareAppMessage(info) {
- return {
- title: '源享住',
- path: 'pages/login/login',
- imageUrl: "/static/logo.png"
- }
- }
- // #endif
- }
- </script>
- <style lang="scss">
- .info-item {
- margin: 20rpx;
- display: flex;
- }
- .btn-container {
- margin: 40rpx;
- }
- </style>
|