|
@@ -1,11 +1,6 @@
|
|
|
<template>
|
|
|
<div class="main animate__animated animate__backInRight" v-loading="loading">
|
|
|
- <custom-search-bar
|
|
|
- :fields="fields.filter((f) => f.isSearch)"
|
|
|
- v-model="searchForm"
|
|
|
- @search="search"
|
|
|
- @reset="toReset"
|
|
|
- >
|
|
|
+ <custom-search-bar :fields="fields.filter((f) => f.isSearch)" v-model="searchForm" @search="search" @reset="toReset">
|
|
|
<template #type>
|
|
|
<el-option value="1" label="投诉反馈"></el-option>
|
|
|
<el-option value="2" label="意见建议"></el-option>
|
|
@@ -16,51 +11,25 @@
|
|
|
<el-option value="1" label="已处理"></el-option>
|
|
|
</template>
|
|
|
</custom-search-bar>
|
|
|
- <custom-button-bar :fields="buttonFields" @add="toAdd"></custom-button-bar>
|
|
|
- <custom-table
|
|
|
- :data="data"
|
|
|
- :fields="fields"
|
|
|
- @query="search"
|
|
|
- :total="total"
|
|
|
- :opera="opera"
|
|
|
- @view="toView"
|
|
|
- >
|
|
|
+ <custom-table :data="data" :fields="fields" @query="search" :total="total" :opera="opera" @view="toView">
|
|
|
<template #is_use="{ row }">
|
|
|
<el-tag v-if="row.is_use == '0'" type="success">启用</el-tag>
|
|
|
<el-tag v-else type="info">禁用</el-tag>
|
|
|
</template>
|
|
|
</custom-table>
|
|
|
- <el-dialog
|
|
|
- v-model="dialog.show"
|
|
|
- :title="dialog.title"
|
|
|
- :destroy-on-close="false"
|
|
|
- @close="toClose"
|
|
|
- :top="dialog.top"
|
|
|
- >
|
|
|
+ <el-dialog v-model="dialog.show" :title="dialog.title" :destroy-on-close="false" @close="toClose" :top="dialog.top">
|
|
|
<el-row>
|
|
|
<el-col :span="24" v-if="dialog.type == '1'">
|
|
|
<el-row>
|
|
|
<el-col :span="24">
|
|
|
<el-descriptions :column="3" :size="size" border>
|
|
|
- <el-descriptions-item
|
|
|
- v-for="i in questionViewConfig()"
|
|
|
- :label="i.label"
|
|
|
- :span="i.span"
|
|
|
- label-width="20px"
|
|
|
- >
|
|
|
+ <el-descriptions-item v-for="i in questionViewConfig()" :label="i.label" :span="i.span" label-width="20px">
|
|
|
<div class="desc_content">{{ i.value }}</div>
|
|
|
</el-descriptions-item>
|
|
|
</el-descriptions>
|
|
|
</el-col>
|
|
|
<el-col :span="24" style="margin-top: 20px">
|
|
|
- <custom-form
|
|
|
- v-if="form.deal_status === '0'"
|
|
|
- v-model="form"
|
|
|
- :fields="replyFields"
|
|
|
- @save="toSave"
|
|
|
- submitText="标记处理"
|
|
|
- >
|
|
|
- </custom-form>
|
|
|
+ <custom-form v-if="form.deal_status === '0'" v-model="form" :fields="replyFields" @save="toSave" submitText="标记处理"> </custom-form>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
</el-col>
|
|
@@ -73,7 +42,6 @@
|
|
|
const $checkRes = inject('$checkRes')
|
|
|
import dayjs from 'dayjs'
|
|
|
import { cloneDeep, get } from 'lodash-es'
|
|
|
-const { t } = useI18n()
|
|
|
// 接口
|
|
|
import { QuestionStore } from '@/store/api/question'
|
|
|
const store = QuestionStore()
|
|
@@ -101,7 +69,6 @@ const getDealStatus = (data) => {
|
|
|
return data === '0' ? '未处理' : '已处理'
|
|
|
}
|
|
|
const opera = [{ label: '查看', method: 'view' }]
|
|
|
-const buttonFields = [{ label: t('common.add'), method: 'add' }]
|
|
|
let skip = 0
|
|
|
let limit = inject('limit')
|
|
|
const total = ref(20)
|
|
@@ -137,7 +104,7 @@ const questionViewConfig = () => {
|
|
|
{ label: '地址', value: get(form, 'value.address'), span: 3 },
|
|
|
{ label: '反馈详情', value: get(form, 'value.description'), span: 3 },
|
|
|
{ label: '处理状态', value: getDealStatus(get(form, 'value.deal_status')) },
|
|
|
- { label: '处理时间', value: get(form, 'value.deal_time'), span: 3 },
|
|
|
+ { label: '处理时间', value: get(form, 'value.deal_time'), span: 3 },
|
|
|
{ label: '处理反馈', value: get(form, 'value.deal_desc'), span: 3 }
|
|
|
]
|
|
|
}
|