9b7e125f
monkeyhouyi
属地页面
|
1
2
3
4
|
<template>
<div class="overview">
<el-row :gutter="20">
<el-col :span="16">
|
ce1de261
monkeyhouyi
专项行动
|
5
|
<div class="item-box todo">
|
65aeaaa1
monkeyhouyi
样式修改
|
6
|
<div class="item-title public-title">
|
be009217
monkeyhouyi
处理,通知公告,任务中心
|
7
8
9
10
11
12
13
14
|
<div class="left">任务中心</div>
<div class="right">
<!-- <el-button type="success" size="mini" style="margin-right: 10px;" v-if="isSHILevel" @click="announceMsg">发布</el-button> -->
<el-tooltip effect="dark" content="刷新" placement="top">
<el-link icon="icon-ym icon-ym-Refresh NCC-common-head-icon" :underline="false" @click="resetTask"/>
</el-tooltip>
</div>
</div>
|
9b7e125f
monkeyhouyi
属地页面
|
15
16
|
<div class="item-body">
<template>
|
65aeaaa1
monkeyhouyi
样式修改
|
17
|
<el-table :data="taskList" style="width: 100%" stripe v-loading="taskLoading" size="small">
|
2201a66b
monkeyhouyi
专项性行动-首页联动
|
18
19
20
|
<el-table-column type="index" width="40"> </el-table-column>
<el-table-column prop="taskTitle" label="任务名称" show-overflow-tooltip/>
<el-table-column prop="taskType" label="任务类型" show-overflow-tooltip width="100"/>
|
8994407e
monkeyhouyi
优化
|
21
|
<el-table-column prop="taskContent" label="任务内容" show-overflow-tooltip></el-table-column>
|
ff36c85d
monkeyhouyi
1
|
22
23
24
25
26
27
|
<el-table-column prop="taskState" label="状态" show-overflow-tooltip width="80">
<template slot-scope="scope">
<el-tag type="success">{{ scope.row.taskState }}</el-tag>
</template>
</el-table-column>
<el-table-column prop="deadLine" label="任务期限" show-overflow-tooltip :formatter="ncc.tableDateFormat" width="200">
|
5a14192c
monkeyhouyi
1
|
28
|
<template slot-scope="scope">
|
61009cfc
monkeyhouyi
2024/8/8
|
29
|
<el-tag :type="`${ncc.timeDeadLine(scope.row.deadLine)}`">{{ncc.stateDeadLine(scope.row.deadLine)}}{{ ncc.tableDateFormat(scope.row, 'deadLine', scope.row.deadLine) }}</el-tag>
|
5a14192c
monkeyhouyi
1
|
30
31
|
</template>
</el-table-column>
|
2201a66b
monkeyhouyi
专项性行动-首页联动
|
32
33
34
|
<el-table-column label="操作" width="100">
<template slot-scope="scope">
<el-button type="primary" size="small" @click="handleTask(scope.row)">处理</el-button>
|
9b7e125f
monkeyhouyi
属地页面
|
35
36
37
|
</template>
</el-table-column>
</el-table>
|
be009217
monkeyhouyi
处理,通知公告,任务中心
|
38
|
<pagination :total="taskTotal" :page.sync="taskListQuery.currentPage" :limit.sync="taskListQuery.pageSize" @pagination="getAllTaskList" />
|
9b7e125f
monkeyhouyi
属地页面
|
39
40
41
|
</template>
</div>
</div>
|
ce1de261
monkeyhouyi
专项行动
|
42
43
44
45
46
47
|
<!--<div
class="item-box earmarked"
:style="`height: calc(${
isSHILevel ? '50vh - 115px' : '100vh - 205px'
});`"
>
|
9b7e125f
monkeyhouyi
属地页面
|
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
|
<div class="item-title">专项行动</div>
<div class="item-body">
<el-row :gutter="6" class="item-one-list">
<el-col
:span="6"
v-for="(item, index) in aimList"
:key="index"
style="margin-bottom: 6px"
>
<div class="item-one-box">
<div class="one-title">关于xxxxxx的专项行动</div>
<template v-if="item.type == 1">
<div class="one-info">
<div>区县:8(已填7)</div>
<div>外协:无</div>
</div>
<div class="one-info">行动时间:2024-07-01至2024-07-31</div>
<el-button type="text" class="el-button-qu">管理</el-button>
<el-button type="text" class="el-button-qu">查看</el-button>
</template>
<template v-else>
<div class="one-info">行动时间:2024-07-01至2024-07-31</div>
<div class="btn-box">
<el-button type="success" size="small">填报</el-button>
<div class="err">即将超时</div>
</div>
</template>
</div>
</el-col>
</el-row>
</div>
|
ce1de261
monkeyhouyi
专项行动
|
79
|
</div>-->
|
9b7e125f
monkeyhouyi
属地页面
|
80
81
|
</el-col>
<el-col :span="8">
|
93186f57
monkeyhouyi
前端整改页面
|
82
|
<!-- <div class="item-box tip">
|
9b7e125f
monkeyhouyi
属地页面
|
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
<div class="item-title">工作提示</div>
<div class="item-body">
<template>
<el-table :data="todoTableData" style="width: 100%" stripe>
<el-table-column
prop="teskName"
label="内容"
show-overflow-tooltip
>
</el-table-column>
<el-table-column
prop="teskCode"
label="事件"
show-overflow-tooltip
>
</el-table-column>
</el-table>
</template>
</div>
|
93186f57
monkeyhouyi
前端整改页面
|
102
|
</div> -->
|
9b7e125f
monkeyhouyi
属地页面
|
103
|
<div class="item-box msg">
|
ce1de261
monkeyhouyi
专项行动
|
104
105
|
<div class="item-title">
<div class="left">通知公告</div>
|
be009217
monkeyhouyi
处理,通知公告,任务中心
|
106
107
108
109
110
111
|
<div class="right">
<el-button type="success" size="mini" style="margin-right: 10px;" v-if="isSHILevel" @click="announceMsg">发布</el-button>
<el-tooltip effect="dark" content="刷新" placement="top">
<el-link icon="icon-ym icon-ym-Refresh NCC-common-head-icon" :underline="false" @click="resetMsg"/>
</el-tooltip>
</div>
|
ce1de261
monkeyhouyi
专项行动
|
112
|
</div>
|
9b7e125f
monkeyhouyi
属地页面
|
113
114
|
<div class="item-body">
<template>
|
be009217
monkeyhouyi
处理,通知公告,任务中心
|
115
|
<el-table :data="msgList" style="width: 100%" stripe v-loading="msgLoading">
|
62cf4146
monkeyhouyi
通知添加时间
|
116
|
<el-table-column prop="createTime" label="时间" show-overflow-tooltip :formatter="ncc.tableDateFormat"></el-table-column>
|
be009217
monkeyhouyi
处理,通知公告,任务中心
|
117
|
<el-table-column prop="title" label="标题" show-overflow-tooltip>
|
9b7e125f
monkeyhouyi
属地页面
|
118
|
</el-table-column>
|
61009cfc
monkeyhouyi
2024/8/8
|
119
|
<el-table-column label="操作" fixed="right" width="150">
|
be009217
monkeyhouyi
处理,通知公告,任务中心
|
120
|
<template slot-scope="scope">
|
93adad84
monkeyhouyi
网信执法功能添加
|
121
|
<el-button type="text" @click="checkDetail(scope.row, true)">详情</el-button>
|
61009cfc
monkeyhouyi
2024/8/8
|
122
|
<el-button type="text" @click="checkDetail(scope.row)" v-if="isSHILevel">编辑</el-button>
|
73755355
monkeyhouyi
优化
|
123
|
<el-button type="text" style="color: red;" @click="delNew(scope.row)" v-if="isSHILevel">删除</el-button>
|
be009217
monkeyhouyi
处理,通知公告,任务中心
|
124
|
</template>
|
9b7e125f
monkeyhouyi
属地页面
|
125
126
|
</el-table-column>
</el-table>
|
61009cfc
monkeyhouyi
2024/8/8
|
127
|
<pagination :total="msgTotal" :page.sync="msgListQuery.currentPage" :limit.sync="msgListQuery.pageSize" @pagination="getAllMsgList" layout="prev, pager, next"/>
|
9b7e125f
monkeyhouyi
属地页面
|
128
129
130
131
132
|
</template>
</div>
</div>
</el-col>
</el-row>
|
5a14192c
monkeyhouyi
1
|
133
|
<MsgForm v-if="MsgFormVisible" ref="MsgForm" @refresh="msgRefresh"/>
|
2201a66b
monkeyhouyi
专项性行动-首页联动
|
134
|
<HandleInspectForm v-if="HandleInspectFormVisible" ref="HandleInspectForm" @refresh="(val) => {taskRefresh('HandleInspectFormVisible', val)}"/>
|
e47508b6
monkeyhouyi
优化专项行动
|
135
|
<NCC-Form v-if="formVisible" ref="NCCForm" @refreshDataList="(val) => {taskRefresh('formVisible', val)}" />
|
8994407e
monkeyhouyi
优化
|
136
|
|
76e683c7
monkeyhouyi
提交
|
137
|
<!-- 案件处理 -->
|
93adad84
monkeyhouyi
网信执法功能添加
|
138
|
<HandForm v-if="HandFormVisible" ref="HandForm" @refresh="(val) => {taskRefresh('HandFormVisible', val)}" />
|
76e683c7
monkeyhouyi
提交
|
139
140
141
|
<!-- 研判 -->
<DisposalForm v-if="DisposalFormVisible" ref="DisposalForm" @refresh="(val) => {taskRefresh('DisposalFormVisible', val)}"/>
<DisposalHandleForm v-if="DisposalHandleFormVisible" ref="DisposalHandleForm" @refresh="(val) => {taskRefresh('DisposalHandleFormVisible', val)}"/>
|
8994407e
monkeyhouyi
优化
|
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
|
<el-dialog
title="专项行动详情"
:visible.sync="dialogVisible"
class="NCC-dialog NCC-dialog_center baseSpecialAction"
width="60%"
:before-close="closeDis">
<el-row :gutter="15" class="NCC-dialog-content">
<h4>{{dataForm.title}}</h4>
<div class="content" v-html="dataForm.content"></div>
</el-row>
<span slot="footer" class="dialog-footer">
<el-button type="primary" @click="handleEditForm(dataForm.row)">填写表单</el-button>
<el-button @click="closeDis">取 消</el-button>
</span>
</el-dialog>
|
9b7e125f
monkeyhouyi
属地页面
|
157
158
159
160
|
</div>
</template>
<script>
|
be009217
monkeyhouyi
处理,通知公告,任务中心
|
161
162
|
import request from "@/utils/request";
import MsgForm from "./msgForm.vue"
|
2201a66b
monkeyhouyi
专项性行动-首页联动
|
163
164
|
import HandleInspectForm from "@/views/baseSystemInfo/HandleInspectForm.vue"
import NCCForm from '@/views/baseSpecialAction/dynamicModel/list/Form'
|
93adad84
monkeyhouyi
网信执法功能添加
|
165
|
import HandForm from '@/views/baseCaseHandling/Form.vue'
|
76e683c7
monkeyhouyi
提交
|
166
167
168
169
|
// 研判
import DisposalForm from "@/views/DisposalSuggestions/Form.vue";
// 巡查处理
import DisposalHandleForm from "@/views/DisposalSuggestions/HandleForm.vue";
|
541d55ac
monkeyhouyi
优化
|
170
|
import { Loading } from 'element-ui';
|
9b7e125f
monkeyhouyi
属地页面
|
171
172
|
export default {
name: "Overview",
|
76e683c7
monkeyhouyi
提交
|
173
|
components: { MsgForm, HandleInspectForm, NCCForm, HandForm, DisposalForm, DisposalHandleForm },
|
9b7e125f
monkeyhouyi
属地页面
|
174
175
|
data() {
return {
|
ecc43230
monkeyhouyi
优化首页,应用管理
|
176
|
todoTableData: [],
|
9b7e125f
monkeyhouyi
属地页面
|
177
178
|
tipTableData: [],
aimList: [],
|
be009217
monkeyhouyi
处理,通知公告,任务中心
|
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
|
msgLoading: false,
msgListQuery: {
currentPage: 1,
pageSize: 20,
},
msgQuery: {
keyword: ''
},
msgList: [],
msgTotal: 0,
MsgFormVisible: false,
taskLoading: false,
taskListQuery: {
currentPage: 1,
pageSize: 20,
},
taskQuery: {
keyword: ''
},
taskList: [],
taskTotal: 0,
|
2201a66b
monkeyhouyi
专项性行动-首页联动
|
202
|
HandleInspectFormVisible: false,
|
93adad84
monkeyhouyi
网信执法功能添加
|
203
204
|
formVisible: false,
HandFormVisible: false,
|
76e683c7
monkeyhouyi
提交
|
205
206
|
DisposalHandleFormVisible: false,
DisposalFormVisible: false,
|
8994407e
monkeyhouyi
优化
|
207
208
|
dialogVisible: false,
dataForm: {},
|
ce1de261
monkeyhouyi
专项行动
|
209
|
};
|
9b7e125f
monkeyhouyi
属地页面
|
210
211
|
},
created() {
|
be009217
monkeyhouyi
处理,通知公告,任务中心
|
212
213
|
this.getAllMsgList();
this.getAllTaskList();
|
9b7e125f
monkeyhouyi
属地页面
|
214
|
},
|
ecc43230
monkeyhouyi
优化首页,应用管理
|
215
216
217
|
computed: {
isSHILevel() {
// 判断角色是否为‘市级办公室’
|
ce1de261
monkeyhouyi
专项行动
|
218
|
return this.$store.state.user.islader;
|
ecc43230
monkeyhouyi
优化首页,应用管理
|
219
220
|
},
},
|
9b7e125f
monkeyhouyi
属地页面
|
221
|
methods: {
|
be009217
monkeyhouyi
处理,通知公告,任务中心
|
222
223
224
225
226
227
228
229
230
231
232
233
234
235
|
// 通知公告
getAllMsgList() {
this.msgLoading = true;
let _query = {
...this.msgListQuery,
...this.msgQuery,
};
let query = {};
for (let key in _query) {
if (Array.isArray(_query[key])) {
query[key] = _query[key].join();
} else {
query[key] = _query[key];
}
|
9b7e125f
monkeyhouyi
属地页面
|
236
|
}
|
be009217
monkeyhouyi
处理,通知公告,任务中心
|
237
238
239
240
241
242
243
244
|
request({
url: '/SubDev/ZyOaArticle',
method: "GET",
params: query,
}).then((res) => {
this.msgList = res.data.list;
this.msgTotal = res.data.pagination.total;
this.msgLoading = false;
|
5a14192c
monkeyhouyi
1
|
245
246
|
}).catch(() => {
this.msgLoading = false;
|
be009217
monkeyhouyi
处理,通知公告,任务中心
|
247
|
});
|
9b7e125f
monkeyhouyi
属地页面
|
248
|
},
|
ce1de261
monkeyhouyi
专项行动
|
249
250
|
resetMsg() {
this.msgList = [];
|
be009217
monkeyhouyi
处理,通知公告,任务中心
|
251
252
253
254
255
|
this.msgListQuery = {
currentPage: 1,
pageSize: 20,
};
this.getAllMsgList();
|
ce1de261
monkeyhouyi
专项行动
|
256
|
},
|
be009217
monkeyhouyi
处理,通知公告,任务中心
|
257
258
259
260
|
msgRefresh(val) {
this.MsgFormVisible = false;
val && this.getAllMsgList();
},
|
61009cfc
monkeyhouyi
2024/8/8
|
261
|
checkDetail(row, isDetail) {
|
f0d64cc9
monkeyhouyi
优化
|
262
263
264
265
266
|
let type1 = row.communicationAreaList.some((v) => v.IsRead)
let type2 = row.communicationOutList.some((v) => v.IsRead)
if(!isDetail && (type1 || type2)) {
this.$message({
message: '该消息已有区县/外协阅读无法编辑!',
|
bc4f2fcb
monkeyhouyi
1
|
267
|
type: 'error'
|
f0d64cc9
monkeyhouyi
优化
|
268
269
270
271
272
273
274
|
});
} else {
this.MsgFormVisible = true;
this.$nextTick(() => {
this.$refs.MsgForm.init(row.id, isDetail);
})
}
|
9b7e125f
monkeyhouyi
属地页面
|
275
|
},
|
61009cfc
monkeyhouyi
2024/8/8
|
276
|
delNew(row) {
|
f0d64cc9
monkeyhouyi
优化
|
277
278
279
|
let type1 = row.communicationAreaList.some((v) => v.IsRead)
let type2 = row.communicationOutList.some((v) => v.IsRead)
if(type1 || type2) {
|
61009cfc
monkeyhouyi
2024/8/8
|
280
|
this.$message({
|
bc4f2fcb
monkeyhouyi
1
|
281
282
|
message: '该消息已有区县阅读无法删除!',
type: 'error'
|
61009cfc
monkeyhouyi
2024/8/8
|
283
|
});
|
f0d64cc9
monkeyhouyi
优化
|
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
|
} else {
this.$confirm('此操作将永久删除该消息, 是否继续?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(async () => {
let res = await request({
url: `/SubDev/ZyOaArticle/${row.id}`,
method: "DELETE",
});
this.$message({
message: res.msg,
type: 'success'
});
this.getAllMsgList();
});
}
|
61009cfc
monkeyhouyi
2024/8/8
|
301
302
|
},
|
be009217
monkeyhouyi
处理,通知公告,任务中心
|
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
|
// 发布消息通知
announceMsg() {
this.MsgFormVisible = true;
this.$nextTick(() => {
this.$refs.MsgForm.init();
})
},
// 任务中心
getAllTaskList() {
this.taskLoading = true;
let _query = {
...this.taskListQuery,
...this.taskQuery,
};
let query = {};
for (let key in _query) {
if (Array.isArray(_query[key])) {
query[key] = _query[key].join();
|
9b7e125f
monkeyhouyi
属地页面
|
322
|
} else {
|
be009217
monkeyhouyi
处理,通知公告,任务中心
|
323
|
query[key] = _query[key];
|
9b7e125f
monkeyhouyi
属地页面
|
324
325
|
}
}
|
be009217
monkeyhouyi
处理,通知公告,任务中心
|
326
327
328
329
330
331
332
333
|
request({
url: '/Extend/BaseTaskCenter/GetListByCurretUser',
method: "GET",
params: query,
}).then((res) => {
this.taskList = res.data.list;
this.taskTotal = res.data.pagination.total;
this.taskLoading = false;
|
5a14192c
monkeyhouyi
1
|
334
335
|
}).catch(() => {
this.taskLoading = false;
|
be009217
monkeyhouyi
处理,通知公告,任务中心
|
336
337
338
339
340
341
342
343
344
|
});
},
resetTask() {
this.taskList = [];
this.taskListQuery = {
currentPage: 1,
pageSize: 20,
};
this.getAllTaskList();
|
9b7e125f
monkeyhouyi
属地页面
|
345
|
},
|
2201a66b
monkeyhouyi
专项性行动-首页联动
|
346
|
async handleTask(row) {
|
76e683c7
monkeyhouyi
提交
|
347
|
if(row.taskType == '专项行动') {
|
8994407e
monkeyhouyi
优化
|
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
|
this.dialogVisible = true;
this.dataForm = {
content: row.taskContent,
title: row.taskTitle,
row: row,
};
// let loadingInstance = Loading.service({
// lock: true,
// text: 'Loading',
// spinner: 'el-icon-loading',
// background: 'rgba(255, 255, 255, 0.7)'
// });
// this.formVisible = true;
// // let data = await this.getBaseSpecialActionInfo('588008032122701061');
// let data = await this.getBaseSpecialActionInfo(row.taskCorrelationId);
// var Itemid = data.itemId || '';//数据id,没有的话就是新增 ,有的话就是修改
// var modelId = data.formId;//关联的表单id
// var taskId = data.id; // 当前专项行动id
// var isPreview = false;//固定死,值不变
// var useFormPermission = false;//固定死,值不变
// var formData = [];
// request({
// url: '/visualdev/OnlineDev/'+modelId+'/Config',
// method: "GET",
// params:null
// }).then(res => {
// formData = res.data.formData;
// this.$refs.NCCForm.init(formData, modelId, Itemid, isPreview, useFormPermission, taskId);
// loadingInstance.close();
// });
|
76e683c7
monkeyhouyi
提交
|
378
379
|
} else {
let type = row.taskType;
|
cbd5265d
monkeyhouyi
优化
|
380
|
if(row.taskType == '核查处理' || row.taskType == '核查处置' || row.taskType == '研判') {
|
76e683c7
monkeyhouyi
提交
|
381
382
383
384
385
|
let str = row.taskTitle;
type = str.slice(1, str.indexOf('】'));
}
let openObject = this.getDialog(type);
this[openObject.visible] = true;
|
93adad84
monkeyhouyi
网信执法功能添加
|
386
|
this.$nextTick(() => {
|
f0d64cc9
monkeyhouyi
优化
|
387
|
this.$refs[`${openObject.node}`].init(row.taskCorrelationId, openObject.isDetail, openObject.type);
|
93adad84
monkeyhouyi
网信执法功能添加
|
388
|
})
|
2201a66b
monkeyhouyi
专项性行动-首页联动
|
389
390
|
}
},
|
8994407e
monkeyhouyi
优化
|
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
|
closeDis() {
this.dialogVisible = false;
this.dataForm = {};
this.$forceUpdate();
},
async handleEditForm(row) {
let loadingInstance = Loading.service({
lock: true,
text: 'Loading',
spinner: 'el-icon-loading',
background: 'rgba(255, 255, 255, 0.7)'
});
this.formVisible = true;
// let data = await this.getBaseSpecialActionInfo('588008032122701061');
let data = await this.getBaseSpecialActionInfo(row.taskCorrelationId);
var Itemid = data.itemId || '';//数据id,没有的话就是新增 ,有的话就是修改
var modelId = data.formId;//关联的表单id
var taskId = data.id; // 当前专项行动id
var isPreview = false;//固定死,值不变
var useFormPermission = false;//固定死,值不变
var formData = [];
request({
url: '/visualdev/OnlineDev/'+modelId+'/Config',
method: "GET",
params:null
}).then(res => {
formData = res.data.formData;
this.$refs.NCCForm.init(formData, modelId, Itemid, isPreview, useFormPermission, taskId);
loadingInstance.close();
});
},
|
76e683c7
monkeyhouyi
提交
|
422
|
getDialog(type) {
|
bc4f2fcb
monkeyhouyi
1
|
423
424
|
console.log(type);
|
76e683c7
monkeyhouyi
提交
|
425
426
427
428
429
430
431
432
433
|
switch (type) {
case '归属地变更':
return { visible: 'HandleInspectFormVisible', node: 'HandleInspectForm', isDetail: true }
break;
case '专项行动':
break;
case '案件处理':
case '网信执法':
|
f0d64cc9
monkeyhouyi
优化
|
434
|
return { visible: 'HandFormVisible', node: 'HandForm', isDetail: false, type: 2}
|
76e683c7
monkeyhouyi
提交
|
435
436
|
break;
case '研判':
|
76e683c7
monkeyhouyi
提交
|
437
|
case '进一步处置':
|
bc4f2fcb
monkeyhouyi
1
|
438
439
440
441
442
|
if(this.isSHILevel) {
return { visible: 'DisposalFormVisible', node: 'DisposalForm', isDetail: false}
} else {
return { visible: 'DisposalHandleFormVisible', node: 'DisposalHandleForm', isDetail: false}
}
|
76e683c7
monkeyhouyi
提交
|
443
|
break;
|
bc4f2fcb
monkeyhouyi
1
|
444
445
|
// case '进一步处置':
// break;
|
76e683c7
monkeyhouyi
提交
|
446
447
448
449
|
default:
break;
}
},
|
2201a66b
monkeyhouyi
专项性行动-首页联动
|
450
451
452
453
454
455
456
457
458
|
async getBaseSpecialActionInfo(id) {
let {data} = await request({
url: `/Extend/BaseSpecialActionInfo/${id}`,
method: "GET",
})
return data;
},
taskRefresh(key, val) {
this[key] = false;
|
8994407e
monkeyhouyi
优化
|
459
|
key == 'formVisible' && (this.dialogVisible = false);
|
2201a66b
monkeyhouyi
专项性行动-首页联动
|
460
461
|
val && this.getAllTaskList();
}
|
9b7e125f
monkeyhouyi
属地页面
|
462
|
},
|
9b7e125f
monkeyhouyi
属地页面
|
463
464
465
466
467
468
469
|
};
</script>
<style scoped lang="scss">
.overview {
.item-box {
width: 100%;
border-radius: 10px;
|
65aeaaa1
monkeyhouyi
样式修改
|
470
471
472
473
474
475
476
477
|
background-color: rgba(228, 231, 237, 0.23);
// margin-bottom: 15px;
// border-image-source:url('/src/assets/images/box-bc.png');
// border-image-slice:33%;
// border-image-width:40px;
// border-image-outset:0;
// border-image-repeat:repeat;
overflow: hidden;
|
9b7e125f
monkeyhouyi
属地页面
|
478
|
&.todo {
|
5a14192c
monkeyhouyi
1
|
479
|
height: calc(100vh - 160px);
|
9b7e125f
monkeyhouyi
属地页面
|
480
|
}
|
ce1de261
monkeyhouyi
专项行动
|
481
|
//&.earmarked {
|
ecc43230
monkeyhouyi
优化首页,应用管理
|
482
|
// height: calc(50vh - 115px);
|
ce1de261
monkeyhouyi
专项行动
|
483
484
|
//margin-bottom: 0;
//}
|
93186f57
monkeyhouyi
前端整改页面
|
485
486
487
|
// &.tip {
// height: calc(50vh - 60px);
// }
|
9b7e125f
monkeyhouyi
属地页面
|
488
|
&.msg {
|
5a14192c
monkeyhouyi
1
|
489
|
height: calc(100vh - 160px);
|
9b7e125f
monkeyhouyi
属地页面
|
490
491
|
margin-bottom: 0;
}
|
65aeaaa1
monkeyhouyi
样式修改
|
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
|
.public-title {
width: calc(100% - 20px);
height: 30px;
position: relative;
top: 0;
left: 5px;
color: white;
padding-left: 16px;
line-height: 30px;
font-size: 14px;
&::before {
width: 4px;
height: 20px;
top: 5px;
position: absolute;
content: "";
background: #2997e4;
border-radius: 2px;
left: 5px;
}
}
|
9b7e125f
monkeyhouyi
属地页面
|
513
|
.item-title {
|
ce1de261
monkeyhouyi
专项行动
|
514
515
516
|
display: flex;
justify-content: space-between;
align-items: center;
|
65aeaaa1
monkeyhouyi
样式修改
|
517
518
519
520
521
522
|
padding: 0px 15px;
margin: 6px 10px;
// color: rgba(255, 255, 255, 1);
// font-size: 16px;
// line-height: 23px;
// padding: 10px;
|
ce1de261
monkeyhouyi
专项行动
|
523
524
525
|
.el-link.el-link--default {
color: #fff !important;
}
|
9b7e125f
monkeyhouyi
属地页面
|
526
527
|
}
.item-body {
|
be009217
monkeyhouyi
处理,通知公告,任务中心
|
528
|
height: calc(100% - 95px);
|
9b7e125f
monkeyhouyi
属地页面
|
529
|
margin: 0 13px;
|
ecc43230
monkeyhouyi
优化首页,应用管理
|
530
|
// padding-bottom: 28px;
|
9b7e125f
monkeyhouyi
属地页面
|
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
|
.el-table {
border-radius: 10px;
height: 100%;
:deep(.el-table__body-wrapper.is-scrolling-none) {
height: calc(100% - 47px);
overflow-y: scroll;
}
}
}
}
.earmarked {
.item-title {
margin-bottom: 0;
}
.item-one-list {
max-height: 100%;
overflow-y: scroll;
margin-bottom: -6px;
.item-one-box {
box-sizing: border-box;
background-color: #fff;
border-radius: 5px;
padding: 3px;
height: 90px;
.one-title {
color: rgba(0, 122, 255, 1);
font-size: 14px;
line-height: 20px;
}
.one-info {
display: flex;
font-size: 12px;
line-height: 20px;
}
.el-button-qu {
padding: 5px 0;
}
.btn-box {
margin-top: 10px;
display: flex;
align-items: flex-end;
.err {
margin-left: 10px;
color: rgba(236, 47, 47, 1);
font-size: 12px;
line-height: 17px;
}
}
}
}
}
}
|
8994407e
monkeyhouyi
优化
|
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
|
.baseSpecialAction {
h4 {
text-align: center;
line-height: 40px;
border-bottom: 1px solid #ccc;
}
.content {
padding: 20px;
border-bottom: 1px solid #ccc;
}
.tag-group {
margin: 10px 0;
}
.title-tag {
margin: 5px 8px;
}
:deep(.el-tag) {
margin: 4px 4px;
}
}
|
9b7e125f
monkeyhouyi
属地页面
|
603
|
</style>
|