jiangchengfeiyi-xiaochengxu/pages/book/component/cancelOrder.vue

110 lines
2.5 KiB
Vue
Raw Normal View History

2025-02-27 06:24:27 +00:00
<template>
<view class="flex-col page">
<text class="self-center text">确认取消该订单</text>
<view class="flex-row justify-between self-stretch mt-33">
<view class="flex-col justify-start items-center text-wrapper" @click="cancel"><text class="font text_2">取消</text></view>
2025-02-28 04:03:29 +00:00
<view class="flex-col justify-start items-center text-wrapper_2" @click="confirm"><text class="font text_3">确定</text></view>
2025-02-27 06:24:27 +00:00
</view>
</view>
</template>
<script setup lang="ts">
2025-03-09 10:55:38 +00:00
import { onMounted, onUnmounted, ref } from 'vue';
2025-02-27 06:24:27 +00:00
import emitter from '../../../utils/emitter';
2025-02-28 04:03:29 +00:00
import { baseUrl } from '../../../api/request';
2025-03-12 13:15:24 +00:00
import { onLoad } from "@dcloudio/uni-app";
import { getFonts } from '../../../common/globalFont';
onLoad(() => {
getFonts()
})
2025-02-28 04:03:29 +00:00
const oid = ref(0)
const cookie = wx.getStorageSync("cookie") //请求头
onMounted(() => {
2025-03-09 10:55:38 +00:00
emitter.on('sendBookingOrderId', sendBookingOrderIdHandler)
})
const sendBookingOrderIdHandler = (orderId:any) => {
oid.value = orderId
console.log(oid.value)
}
onUnmounted(() => {
emitter.off('sendBookingOrderId', sendBookingOrderIdHandler)
2025-02-28 04:03:29 +00:00
})
const cancelBookingOrder = async () => {
const res = await uni.request({
url: baseUrl + '/advanceOrder/cancel/id',
method: 'POST',
header: {
cookie
},
data: {
id: oid.value
}
})
console.log(res.data.data)
}
2025-02-27 06:24:27 +00:00
const cancel = () => {
emitter.emit('closeCancelOrderPopup')
}
2025-02-28 04:03:29 +00:00
const confirm = async () => {
await cancelBookingOrder()
emitter.emit('closeCancelOrderPopup')
emitter.emit('flushAdvanceOrderList')
}
2025-02-27 06:24:27 +00:00
</script>
<style scoped lang="scss">
.mt-33 {
margin-top: 77.59rpx;
}
.page {
padding: 65.83rpx 73.45rpx 58.78rpx;
background-color: #ffffff;
border-radius: 25.02rpx;
width: 100%;
overflow-y: auto;
overflow-x: hidden;
height: 100%;
}
.text {
color: #000000;
font-size: 37.32rpx;
2025-03-16 13:35:20 +00:00
font-family: FZSongKeBenXiuKaiS-R-GB;
2025-02-27 06:24:27 +00:00
line-height: 41.66rpx;
}
.text-wrapper {
padding: 23.51rpx 0;
background-color: #d9d9d9;
border-radius: 47.02rpx;
width: 216.3rpx;
height: 84.64rpx;
margin-right: 20rpx;
}
.font {
font-size: 37.62rpx;
2025-03-16 13:35:20 +00:00
font-family: FZSongKeBenXiuKaiS-R-GB;
2025-02-27 06:24:27 +00:00
line-height: 35.41rpx;
}
.text_2 {
color: #000000;
font-size: 30rpx;
}
.text-wrapper_2 {
padding: 23.51rpx 0;
background-color: #ffb6b9;
border-radius: 47.02rpx;
width: 216.3rpx;
height: 84.64rpx;
margin-left: 20rpx;
}
.text_3 {
color: #ffffff;
font-size: 30rpx;
}
@import url(../../../common/css/global.css);
</style>