1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
| <template>
| <div class="inner">
| <a-row type="flex" justify="space-between" style="margin-bottom: 20px">
| <a-col :span="8">
| <a-radio-group v-model="search.searchParams.reviewStatus" @change="getData">
| <a-radio-button :value="null">
| 全部
| </a-radio-button>
| <a-radio-button :value="2">
| 审核通过
| </a-radio-button>
| <a-radio-button :value="1">
| 未审核
| </a-radio-button>
| <a-radio-button :value="3">
| 审核驳回
| </a-radio-button>
| </a-radio-group>
| </a-col>
| <a-col :span="16">
| <a-row type="flex" justify="end" :gutter="12">
| <a-col :span="8">
| <a-range-picker
| v-model="timeRange"
| format="YYYY-MM-DD"
| :placeholder="['开始时间', '结束时间']"
| @change="timeChange"
| @ok="onOk"
| style="width: 100%"
| />
| </a-col>
| <a-col :span="4">
| <a-button type="primary" @click="getData">查询</a-button>
| <a-button style="margin-left: 12px" @click="resetSearch">重置</a-button>
| </a-col>
| </a-row>
| </a-col>
| </a-row>
|
| <div class="table-cont">
| <a-table :columns="columns" :data-source="data" bordered :rowKey="record=>record.id">
| <template #index="text,record,index">
| {{ index+1 }}
| </template>
| <template #disasterType="text">
| {{ getRiskName(text) }}
| </template>
| <template #attachment="text">
| <span v-if="text==='无'">无</span>
| <a v-else><b><a-icon type="paper-clip" /> {{text}}</b></a>
| </template >
| <template #reviewStatus="reviewStatus">
| <a-tag
| :color="reviewStatus === 1 ? 'blue' : reviewStatus === 2 ? 'green' : 'red'"
| >
| {{ reviewStatus==1?'未审核':reviewStatus==2?'已审核':reviewStatus==3?'审核驳回':'' }}
| </a-tag>
| </template>
| <template #operation="text, record, index">
| <a-button type="link" v-if="record.reviewStatus == 2 || record.reviewStatus == 3" @click="openMod('view',record)">查看信息详情</a-button>
| <a-button type="primary" v-if="record.reviewStatus == 1" @click="openMod('review',record)">查看并审核</a-button>
| </template>
| </a-table>
| </div>
| <msg-edit-mod ref="msgEdit" @refresh="getData"></msg-edit-mod>
| </div>
| </template>
|
| <script>
|
| import {getReviewDetail, getReviewRecord} from "@/api/review";
| import msgEditMod from '@/views/Admin/components/msgEditMod'
|
| export default {
| name: 'msgReview',
| components: { msgEditMod },
| data () {
| return {
| search:{
| pageIndex: 1,
| pageSize: 10,
| searchParams:{
| reviewStatus: null,
| startTime: '',
| endTime: ''
| }
| },
| timeRange: [],
| riskOptions: [
| {name: '地震',value: 1},
| {name: '洪涝',value: 2},
| {name: '气象',value: 3},
| {name: '泥石流',value: 4},
| {name: '水旱',value: 5},
| {name: '森林草原火灾',value: 6}
| ],
| columns: [
| {
| title: '序号',
| key: 'index',
| scopedSlots: {
| customRender: 'index'
| },
| },
| {
| title: '提交审核时间',
| key: 'gmtReviewSubmit',
| dataIndex: 'gmtReviewSubmit',
| },
| {
| title: '发布单位',
| key: 'publishingUnit',
| dataIndex: 'publishingUnit',
| },
| {
| title: '灾种',
| dataIndex: 'disasterType',
| key: 'disasterType',
| scopedSlots: {
| customRender: 'disasterType'
| }, //设置定制化表格数据
| },
| {
| title: '信息标题',
| key: 'title',
| dataIndex: 'title',
| },
| {
| title: '附件',
| key: 'attachment',
| dataIndex: 'attachment',
| scopedSlots: {
| customRender: 'attachment'
| },
| },
| {
| title: '审核情况',
| dataIndex: 'reviewStatus',
| scopedSlots: {
| customRender: 'reviewStatus'
| }, //设置定制化表格数据
| },
| {
| title: '操作',
| dataIndex: 'operation',
| scopedSlots: {
| customRender: 'operation'
| },
| },
| ],
| data: []
| }
| },
| created() {
| const t = this
| t.getData()
| },
| methods:{
| async getData(){
| const t = this
| const res = await getReviewRecord(this.search)
| if(res.data.code == 100){
| t.data = res.data.data
| t.pagination.total = res.data.total
| }else{
| this.$message.error(res.data.msg)
| }
| },
|
| resetSearch(){
| const t = this
| t.search = {
| pageIndex: 1,
| pageSize: 10,
| searchParams:{
| reviewStatus: null,
| startTime: '',
| endTime: ''
| }
| }
| t.timeRange = []
| t.getData()
| },
|
| timeChange(value, dateString) {
| const t = this
| if(dateString){
| t.search.searchParams.startTime = value[0].format('YYYY-MM-DD 00:00:00')
| t.search.searchParams.endTime = value[1].format('YYYY-MM-DD 23:59:59')
| }
| },
|
| openMod(type,data){
| const t = this
| getReviewDetail(data.id).then(res=>{
| if(res.data.code == 100){
| t.$refs.msgEdit.openMod(type,res.data.data)
| }else{
| this.$message.error(res.data.msg)
| }
| })
| },
|
| onOk(value) {
| console.log('onOk: ', value);
| },
| getRiskName(disasterType){
| return this.riskOptions.find(i => i.value === disasterType)?.name;
| }
|
| }
| }
| </script>
|
| <style lang="less" scoped>
|
| </style>
|
|