Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
Z
zhongtai-ui
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
chenweiping
zhongtai-ui
Commits
dfc32284
提交
dfc32284
authored
9月 08, 2021
作者:
谢廷雅
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
区域和政府公告管理模块
上级
1bb245fa
全部展开
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
732 行增加
和
0 行删除
+732
-0
area.js
src/api/backstage/area.js
+53
-0
policy.js
src/api/backstage/policy.js
+53
-0
index.vue
src/views/backstage/area/index.vue
+321
-0
index.vue
src/views/backstage/policy/index.vue
+305
-0
没有找到文件。
src/api/backstage/area.js
0 → 100644
浏览文件 @
dfc32284
import
request
from
'@/utils/request'
// 查询区域列表
export
function
listArea
(
query
)
{
return
request
({
url
:
'/backstage/area/list'
,
method
:
'get'
,
params
:
query
})
}
// 查询区域详细
export
function
getArea
(
id
)
{
return
request
({
url
:
'/backstage/area/'
+
id
,
method
:
'get'
})
}
// 新增区域
export
function
addArea
(
data
)
{
return
request
({
url
:
'/backstage/area'
,
method
:
'post'
,
data
:
data
})
}
// 修改区域
export
function
updateArea
(
data
)
{
return
request
({
url
:
'/backstage/area'
,
method
:
'put'
,
data
:
data
})
}
// 删除区域
export
function
delArea
(
id
)
{
return
request
({
url
:
'/backstage/area/'
+
id
,
method
:
'delete'
})
}
// 导出区域
export
function
exportArea
(
query
)
{
return
request
({
url
:
'/backstage/area/export'
,
method
:
'get'
,
params
:
query
})
}
\ No newline at end of file
src/api/backstage/policy.js
0 → 100644
浏览文件 @
dfc32284
import
request
from
'@/utils/request'
// 查询政策公告列表
export
function
listPolicy
(
query
)
{
return
request
({
url
:
'/backstage/policy/list'
,
method
:
'get'
,
params
:
query
})
}
// 查询政策公告详细
export
function
getPolicy
(
id
)
{
return
request
({
url
:
'/backstage/policy/'
+
id
,
method
:
'get'
})
}
// 新增政策公告
export
function
addPolicy
(
data
)
{
return
request
({
url
:
'/backstage/policy'
,
method
:
'post'
,
data
:
data
})
}
// 修改政策公告
export
function
updatePolicy
(
data
)
{
return
request
({
url
:
'/backstage/policy'
,
method
:
'put'
,
data
:
data
})
}
// 删除政策公告
export
function
delPolicy
(
id
)
{
return
request
({
url
:
'/backstage/policy/'
+
id
,
method
:
'delete'
})
}
// 导出政策公告
export
function
exportPolicy
(
query
)
{
return
request
({
url
:
'/backstage/policy/export'
,
method
:
'get'
,
params
:
query
})
}
\ No newline at end of file
src/views/backstage/area/index.vue
0 → 100644
浏览文件 @
dfc32284
差异被折叠。
点击展开。
src/views/backstage/policy/index.vue
0 → 100644
浏览文件 @
dfc32284
<
template
>
<div
class=
"app-container"
>
<el-form
:model=
"queryParams"
ref=
"queryForm"
:inline=
"true"
v-show=
"showSearch"
label-width=
"68px"
>
<!--
<el-form-item
label=
"发布时间"
prop=
"publishTime"
>
-->
<!--
<el-date-picker
clearable
size=
"small"
style=
"width: 200px"
--
>
<!-- v-model="queryParams.publishTime"-->
<!-- type="date"-->
<!-- value-format="yyyy-MM-dd"-->
<!-- placeholder="选择发布时间">-->
<!--
</el-date-picker>
-->
<!--
</el-form-item>
-->
<!--
<el-form-item
label=
"状态 1正常 0删除"
prop=
"status"
>
-->
<!--
<el-select
v-model=
"queryParams.status"
placeholder=
"请选择状态 1正常 0删除"
clearable
size=
"small"
>
-->
<!--
<el-option
label=
"请选择字典生成"
value=
""
/>
-->
<!--
</el-select>
-->
<!--
</el-form-item>
-->
<el-form-item
label=
"公告标题"
prop=
"title"
>
<el-input
v-model=
"queryParams.title"
placeholder=
"请输入公告标题"
clearable
size=
"small"
@
keyup
.
enter
.
native=
"handleQuery"
/>
</el-form-item>
<el-form-item>
<el-button
type=
"cyan"
icon=
"el-icon-search"
size=
"mini"
@
click=
"handleQuery"
>
搜索
</el-button>
<el-button
icon=
"el-icon-refresh"
size=
"mini"
@
click=
"resetQuery"
>
重置
</el-button>
</el-form-item>
</el-form>
<el-row
:gutter=
"10"
class=
"mb8"
>
<el-col
:span=
"1.5"
>
<el-button
type=
"primary"
icon=
"el-icon-plus"
size=
"mini"
@
click=
"handleAdd"
v-hasPermi=
"['backstage:policy:add']"
>
新增
</el-button>
</el-col>
<el-col
:span=
"1.5"
>
<el-button
type=
"success"
icon=
"el-icon-edit"
size=
"mini"
:disabled=
"single"
@
click=
"handleUpdate"
v-hasPermi=
"['backstage:policy:edit']"
>
修改
</el-button>
</el-col>
<el-col
:span=
"1.5"
>
<el-button
type=
"danger"
icon=
"el-icon-delete"
size=
"mini"
:disabled=
"multiple"
@
click=
"handleDelete"
v-hasPermi=
"['backstage:policy:remove']"
>
删除
</el-button>
</el-col>
<!--
<el-col
:span=
"1.5"
>
-->
<!--
<el-button-->
<!-- type="warning"-->
<!-- icon="el-icon-download"-->
<!-- size="mini"-->
<!-- @click="handleExport"-->
<!-- v-hasPermi="['backstage:policy:export']"-->
<!-- >导出
</el-button>
-->
<!--
</el-col>
-->
<right-toolbar
:showSearch
.
sync=
"showSearch"
@
queryTable=
"getList"
></right-toolbar>
</el-row>
<el-table
v-loading=
"loading"
:data=
"policyList"
@
selection-change=
"handleSelectionChange"
>
<el-table-column
type=
"selection"
width=
"55"
align=
"center"
/>
<el-table-column
label=
"id"
align=
"center"
prop=
"id"
/>
<el-table-column
label=
"标题"
align=
"center"
prop=
"title"
/>
<el-table-column
label=
"内容"
align=
"center"
prop=
"content"
/>
<el-table-column
label=
"发布时间"
align=
"center"
prop=
"publishTime"
width=
"180"
>
<template
slot-scope=
"scope"
>
<span>
{{
parseTime
(
scope
.
row
.
publishTime
,
'{y
}
-{m
}
-{d
}
'
)
}}
<
/span
>
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
label
=
"操作"
align
=
"center"
class
-
name
=
"small-padding fixed-width"
>
<
template
slot
-
scope
=
"scope"
>
<
el
-
button
size
=
"mini"
type
=
"text"
icon
=
"el-icon-edit"
@
click
=
"handleUpdate(scope.row)"
v
-
hasPermi
=
"['backstage:policy:edit']"
>
修改
<
/el-button
>
<
el
-
button
size
=
"mini"
type
=
"text"
icon
=
"el-icon-delete"
@
click
=
"handleDelete(scope.row)"
v
-
hasPermi
=
"['backstage:policy:remove']"
>
删除
<
/el-button
>
<
/template
>
<
/el-table-column
>
<
/el-table
>
<
pagination
v
-
show
=
"total>0"
:
total
=
"total"
:
page
.
sync
=
"queryParams.pageNum"
:
limit
.
sync
=
"queryParams.pageSize"
@
pagination
=
"getList"
/>
<!--
添加或修改政策公告对话框
-->
<
el
-
dialog
:
title
=
"title"
:
visible
.
sync
=
"open"
width
=
"500px"
append
-
to
-
body
>
<
el
-
form
ref
=
"form"
:
model
=
"form"
:
rules
=
"rules"
label
-
width
=
"80px"
>
<
el
-
form
-
item
label
=
"标题"
prop
=
"title"
>
<
el
-
input
v
-
model
=
"form.title"
type
=
"textarea"
placeholder
=
"请输入内容"
/>
<
/el-form-item
>
<
el
-
form
-
item
label
=
"内容"
>
<
editor
v
-
model
=
"form.content"
:
min
-
height
=
"192"
/>
<
/el-form-item
>
<!--
<
el
-
form
-
item
label
=
"发布时间"
prop
=
"publishTime"
>-->
<!--
<
el
-
date
-
picker
clearable
size
=
"small"
style
=
"width: 200px"
-->
<!--
v
-
model
=
"form.publishTime"
-->
<!--
type
=
"date"
-->
<!--
value
-
format
=
"yyyy-MM-dd"
-->
<!--
placeholder
=
"选择发布时间"
>-->
<!--
<
/el-date-picker>--
>
<!--
<
/el-form-item>--
>
<!--
<
el
-
form
-
item
label
=
"状态 1正常 0删除"
>-->
<!--
<
el
-
radio
-
group
v
-
model
=
"form.status"
>-->
<!--
<
el
-
radio
label
=
"1"
>
请选择字典生成
<
/el-radio>--
>
<!--
<
/el-radio-group>--
>
<!--
<
/el-form-item>--
>
<
/el-form
>
<
div
slot
=
"footer"
class
=
"dialog-footer"
>
<
el
-
button
type
=
"primary"
@
click
=
"submitForm"
:
disabled
=
"repeatSubmit"
>
确
定
<
/el-button
>
<
el
-
button
@
click
=
"cancel"
>
取
消
<
/el-button
>
<
/div
>
<
/el-dialog
>
<
/div
>
<
/template
>
<
script
>
import
{
listPolicy
,
getPolicy
,
delPolicy
,
addPolicy
,
updatePolicy
,
exportPolicy
}
from
"@/api/backstage/policy"
;
import
Editor
from
'@/components/Editor'
;
export
default
{
name
:
"Policy"
,
components
:
{
Editor
}
,
data
()
{
return
{
// 不可重复提交
repeatSubmit
:
false
,
// 遮罩层
loading
:
true
,
// 选中数组
ids
:
[],
// 非单个禁用
single
:
true
,
// 非多个禁用
multiple
:
true
,
// 显示搜索条件
showSearch
:
true
,
// 总条数
total
:
0
,
// 政策公告表格数据
policyList
:
[],
// 弹出层标题
title
:
""
,
// 是否显示弹出层
open
:
false
,
// 查询参数
queryParams
:
{
pageNum
:
1
,
pageSize
:
10
,
title
:
null
,
content
:
null
,
publishTime
:
null
,
status
:
null
}
,
// 表单参数
form
:
{
}
,
// 表单校验
rules
:
{
}
}
;
}
,
created
()
{
this
.
getList
();
}
,
methods
:
{
/** 查询政策公告列表 */
getList
()
{
this
.
loading
=
true
;
listPolicy
(
this
.
queryParams
).
then
(
response
=>
{
this
.
policyList
=
response
.
rows
;
this
.
total
=
response
.
total
;
this
.
loading
=
false
;
}
);
}
,
// 取消按钮
cancel
()
{
this
.
open
=
false
;
this
.
reset
();
}
,
// 表单重置
reset
()
{
this
.
form
=
{
id
:
null
,
title
:
null
,
content
:
null
,
publishTime
:
null
,
createTime
:
null
,
updateTime
:
null
,
status
:
"0"
}
;
this
.
resetForm
(
"form"
);
}
,
/** 搜索按钮操作 */
handleQuery
()
{
this
.
queryParams
.
pageNum
=
1
;
this
.
getList
();
}
,
/** 重置按钮操作 */
resetQuery
()
{
this
.
resetForm
(
"queryForm"
);
this
.
handleQuery
();
}
,
// 多选框选中数据
handleSelectionChange
(
selection
)
{
this
.
ids
=
selection
.
map
(
item
=>
item
.
id
)
this
.
single
=
selection
.
length
!==
1
this
.
multiple
=
!
selection
.
length
}
,
/** 新增按钮操作 */
handleAdd
()
{
this
.
reset
();
this
.
open
=
true
;
this
.
title
=
"添加政策公告"
;
}
,
/** 修改按钮操作 */
handleUpdate
(
row
)
{
this
.
reset
();
const
id
=
row
.
id
||
this
.
ids
getPolicy
(
id
).
then
(
response
=>
{
this
.
form
=
response
.
data
;
this
.
open
=
true
;
this
.
title
=
"修改政策公告"
;
}
);
}
,
/** 提交按钮 */
submitForm
()
{
this
.
repeatSubmit
=
true
setTimeout
(()
=>
{
this
.
repeatSubmit
=
false
//点击一次时隔两秒后才能再次点击
}
,
2000
)
this
.
$refs
[
"form"
].
validate
(
valid
=>
{
if
(
valid
)
{
if
(
this
.
form
.
id
!=
null
)
{
updatePolicy
(
this
.
form
).
then
(
response
=>
{
this
.
msgSuccess
(
"修改成功"
);
this
.
open
=
false
;
this
.
getList
();
}
);
}
else
{
addPolicy
(
this
.
form
).
then
(
response
=>
{
this
.
msgSuccess
(
"新增成功"
);
this
.
open
=
false
;
this
.
getList
();
}
);
}
}
}
);
}
,
/** 删除按钮操作 */
handleDelete
(
row
)
{
const
ids
=
row
.
id
||
this
.
ids
;
this
.
$confirm
(
'是否确认删除政策公告编号为"'
+
ids
+
'"的数据项?'
,
"警告"
,
{
confirmButtonText
:
"确定"
,
cancelButtonText
:
"取消"
,
type
:
"warning"
}
).
then
(
function
()
{
return
delPolicy
(
ids
);
}
).
then
(()
=>
{
this
.
getList
();
this
.
msgSuccess
(
"删除成功"
);
}
)
}
,
/** 导出按钮操作 */
handleExport
()
{
const
queryParams
=
this
.
queryParams
;
this
.
$confirm
(
'是否确认导出所有政策公告数据项?'
,
"警告"
,
{
confirmButtonText
:
"确定"
,
cancelButtonText
:
"取消"
,
type
:
"warning"
}
).
then
(
function
()
{
return
exportPolicy
(
queryParams
);
}
).
then
(
response
=>
{
this
.
download
(
response
.
msg
);
}
)
}
}
}
;
<
/script
>
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论