emis-sapp/pages/complaint/complaint.vue
2023-12-05 22:16:45 +08:00

48 lines
1.2 KiB
Vue

<template>
<view class="com-jianju" style="padding-top: 30rpx;">
<view class="com-radius" style="background-color: #fff;padding: 26rpx 30rpx;">
<u-row justify="between">
<u-text size="28" color="#0E0708" :bold="true" text="T7080123982301"></u-text>
<u-text align="right" color="#A81729" size="28" text="查看"></u-text>
</u-row>
<u-line color="#D9D9D9" margin="26rpx 0"></u-line>
<u-text size="30" color="#333" :bold="true" text="投诉原因:×××"></u-text>
<u-text size="30" color="#333" :bold="true" text="投诉描述:×××" margin="30rpx 0 0 0"></u-text>
<u-text align="right" size="28" color="#333" text="投诉时间:2023-11-20 13:28:56" margin="30rpx 0 0 0"></u-text>
</view>
</view>
</template>
<script>
import getCdnUrl from "@/common/getCdnUrl"
export default {
props: {
// hasLeftWin: {
// type: Boolean
// }
},
data() {
return {
}
},
onShareAppMessage() {
return {
// title: '',
// path: 'TODO'
}
},
methods: {
getCdnUrl,
}
}
</script>
<style lang="scss">
@import '@/common/uni-nvue.scss';
page{
background: #F5F7F9;
}
</style>
<style scoped lang="scss">
</style>