22 lines
562 B
Vue
22 lines
562 B
Vue
<template>
|
||
<view class="user-info mb12">
|
||
<view class="user-info-title">游客信息</view>
|
||
<view class="user-info-item">
|
||
<text class="label">联系游客:</text>
|
||
<text class="value">{{ contactName }}</text>
|
||
</view>
|
||
<view class="user-info-item">
|
||
<text class="label">联系电话:</text>
|
||
<text class="value">{{ contactPhone }}</text>
|
||
</view>
|
||
</view>
|
||
</template>
|
||
|
||
<script setup>
|
||
const contactName = '李元一';
|
||
const contactPhone = '13172891829';
|
||
</script>
|
||
|
||
<style scoped>
|
||
@import './styles/index.scss';
|
||
</style> |