101 lines
2.0 KiB
Vue
101 lines
2.0 KiB
Vue
<template>
|
|
<cl-page>
|
|
<view class="page">
|
|
<view class="header">
|
|
<cl-tag type="info">{{ dict.getLabel("complainType", info?.type) }}</cl-tag>
|
|
<cl-text :value="info?.content" block :margin="[20, 0, 30, 0]" :line-height="1.5" />
|
|
|
|
<view class="pics">
|
|
<cl-image
|
|
v-for="(item, index) in info?.images"
|
|
:key="index"
|
|
:src="item"
|
|
:preview-list="info?.images"
|
|
:size="180"
|
|
:margin="[0, 20, 30, 0]"
|
|
/>
|
|
</view>
|
|
|
|
<cl-row type="flex" justify="space-between">
|
|
<cl-text :value="info?.createTime" color="info" block />
|
|
|
|
<cl-text :value="`${info?.status == 1 ? '已处理' : '核实中'}`" />
|
|
</cl-row>
|
|
</view>
|
|
|
|
<view class="container">
|
|
<view class="card">
|
|
<cl-text block bold value="受理完成" :margin="[0, 0, 20, 0]" :size="28" />
|
|
|
|
<cl-text
|
|
value="我们已收到您的反馈,平台将持续重点关注,一经核实将从严处理!"
|
|
:line-height="1.5"
|
|
/>
|
|
</view>
|
|
|
|
<view class="card" v-if="info?.remark">
|
|
<cl-text block bold value="处理结果" :margin="[0, 0, 20, 0]" :size="28" />
|
|
|
|
<cl-text :value="info?.remark" :line-height="1.5" />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</cl-page>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from "vue";
|
|
import { useCool, useStore } from "/@/cool";
|
|
import { onReady } from "@dcloudio/uni-app";
|
|
import { useUi } from "/$/cool-ui";
|
|
|
|
const { service, router } = useCool();
|
|
const ui = useUi();
|
|
const { dict } = useStore();
|
|
|
|
const info = ref<Eps.AppComplainEntity>();
|
|
|
|
async function refresh() {
|
|
ui.showLoading();
|
|
|
|
await service.app.complain
|
|
.info({
|
|
id: router.query.id,
|
|
})
|
|
.then((res) => {
|
|
info.value = res;
|
|
});
|
|
|
|
ui.hideLoading();
|
|
}
|
|
|
|
onReady(() => {
|
|
refresh();
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.page {
|
|
.header {
|
|
background-color: #fff;
|
|
padding: 24rpx;
|
|
|
|
.pics {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
}
|
|
|
|
.container {
|
|
padding: 24rpx;
|
|
|
|
.card {
|
|
border-radius: 16rpx;
|
|
background-color: #fff;
|
|
padding: 24rpx;
|
|
margin-bottom: 24rpx;
|
|
}
|
|
}
|
|
}
|
|
</style>
|