emis-sapp/pages/complaint/complaint.vue
2023-12-07 12:05:57 +08:00

78 lines
2.0 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<tpx-layout>
<template v-slot:body>
<view class="com-jianju" style="padding-top: 30rpx;">
<view class="com-radius" style="background-color: #fff;padding: 26rpx 30rpx;">
<u-row @click="handleEditItem()" justify="between">
<u-text size="30" 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>
<view>
<u-text size="28" color="#333" :bold="true" text="投诉原因"></u-text>
<u-text size="26" color="#999" margin="10rpx 0 0 0" text="×××"></u-text>
</view>
<view class="mt-30">
<u-text size="28" color="#333" :bold="true" text="投诉描述"></u-text>
<u-text size="26" color="#999" margin="10rpx 0 0 0" text="×××"></u-text>
</view>
<view class="mt-30">
<u-text size="28" color="#333" :bold="true" text="投诉时间"></u-text>
<u-text size="26" color="#999" margin="10rpx 0 0 0" text="2023-11-20 13:28:56"></u-text>
</view>
</view>
</view>
</template>
<template v-slot:footer>
<view class="blcok-white-noradius">
<u-button @click="handleEditItem()" type="primary" size="large" shape="circle"
custom-style="height:80rpx;font-size: 30rpx;"
>新增</u-button>
</view>
</template>
</tpx-layout>
</template>
<script>
import getCdnUrl from "@/common/getCdnUrl"
import { goto, goBack, setClipboardData, confirmModal, showLoading } from "@/common/untool"
export default {
props: {
// hasLeftWin: {
// type: Boolean
// }
},
data() {
return {
}
},
onShareAppMessage() {
return {
// title: '',
// path: 'TODO'
}
},
methods: {
getCdnUrl,
handleEditItem(item={}) {
goto(`complaint/edit?id=${item.id}`)
},
}
}
</script>
<style lang="scss">
@import '@/common/uni-nvue.scss';
page{
background: #F5F7F9;
}
</style>
<style scoped lang="scss">
</style>