feat: 订单详情接口对接

This commit is contained in:
duanshuwen
2025-07-30 20:55:26 +08:00
parent 6831004189
commit b527e6d206
12 changed files with 1628 additions and 37 deletions

View File

@@ -3,20 +3,34 @@
<view class="user-info-title">游客信息</view>
<view class="user-info-item">
<text class="label">联系游客</text>
<text class="value">{{ contactName }}</text>
<text class="value">{{ orderData.visitorName }}</text>
</view>
<view class="user-info-item">
<text class="label">联系电话</text>
<text class="value">{{ contactPhone }}</text>
<text class="value">{{ orderData.contactPhone }}</text>
</view>
</view>
</template>
<script setup>
const contactName = '李元一';
const contactPhone = '13172891829';
import { defineProps } from "vue";
defineProps({
orderData: {
type: Object,
required: true,
default: () => ({
id: "",
createTime: "",
contactName: "",
contactPhone: "",
orderStatus: "0", // pending-待处理, completed-已完成, cancelled-已取消
orderType: undefined, // 0-酒店订单, 1-门票订单, 2-其他订单, undefined-工单
}),
},
});
</script>
<style scoped>
@import './styles/index.scss';
@import "./styles/index.scss";
</style>