672 lines
19 KiB
Vue
672 lines
19 KiB
Vue
<!--
|
|
* @Descripttion:
|
|
* @version:
|
|
* @Author: kBank
|
|
* @Date: 2022-10-24 15:45:01
|
|
-->
|
|
<template>
|
|
<div class="page">
|
|
<topBar
|
|
v-if="topList.length > 0"
|
|
:topList="topList"
|
|
:moren="moren"
|
|
></topBar>
|
|
<div v-if="topList[0].changed == true">
|
|
<div class="main">
|
|
<el-form
|
|
ref="select"
|
|
:model="select"
|
|
|
|
label-width="80px"
|
|
>
|
|
<el-row>
|
|
<!-- 一层 -->
|
|
<el-col :span="8">
|
|
<el-form-item :label="'公告标题'">
|
|
<el-input clearable v-model="select.title"></el-input>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="4">
|
|
<el-form-item :label="'显示类型'">
|
|
<el-select
|
|
clearable
|
|
:placeholder="'请选择'"
|
|
v-model="select.websiteType"
|
|
>
|
|
<el-option
|
|
v-for="item in webList"
|
|
:key="item.value"
|
|
:label="item.label"
|
|
:value="item.value"
|
|
></el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="4">
|
|
<el-form-item :label="'发布位置'">
|
|
<el-select
|
|
clearable
|
|
:placeholder="'请选择'"
|
|
v-model="select.publishLocation"
|
|
>
|
|
<el-option
|
|
v-for="item in localList"
|
|
:key="item.value"
|
|
:label="item.label"
|
|
:value="item.value"
|
|
></el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="4">
|
|
<el-form-item :label="'结算等级'">
|
|
<el-select clearable :placeholder="'请选择'" v-model="select.grade">
|
|
<el-option
|
|
v-for="item in gradeList"
|
|
:key="item.pkId"
|
|
:label="item.gradeName"
|
|
:value="item.pkId"
|
|
></el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="4">
|
|
<el-form-item :label="'强制弹窗'">
|
|
<el-select
|
|
clearable
|
|
:placeholder="'请选择'"
|
|
v-model="select.isPopScreen"
|
|
>
|
|
<el-option
|
|
v-for="item in popList"
|
|
:key="item.value"
|
|
:label="item.label"
|
|
:value="item.value"
|
|
></el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="4">
|
|
<el-form-item :label="'状态'">
|
|
<el-select clearable :placeholder="'请选择'" v-model="select.state">
|
|
<el-option
|
|
v-for="item in stateList"
|
|
:key="item.value"
|
|
:label="item.label"
|
|
:value="item.value"
|
|
></el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="8">
|
|
<el-form-item :label="'创建日期'">
|
|
<el-date-picker
|
|
v-model="creationTime"
|
|
@change="changeTime"
|
|
value-format="yyyy-MM-dd"
|
|
type="daterange"
|
|
:range-separator="'至'"
|
|
:start-placeholder="'开始日期'"
|
|
:end-placeholder="'结束日期'"
|
|
>
|
|
</el-date-picker>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="8">
|
|
<el-form-item :label="'起止日期'">
|
|
<el-date-picker
|
|
v-model="creationTime1"
|
|
@change="changeTime1"
|
|
value-format="yyyy-MM-dd"
|
|
type="daterange"
|
|
:range-separator="'至'"
|
|
:start-placeholder="'开始日期'"
|
|
:end-placeholder="'结束日期'"
|
|
>
|
|
</el-date-picker>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="4" >
|
|
<el-button type="primary" class="searchbtn" @click="getDataList"
|
|
> {{ '搜索' }}</el-button
|
|
>
|
|
<el-button @click="reset"> {{ '重置' }}</el-button>
|
|
</el-col>
|
|
</el-row>
|
|
</el-form>
|
|
<div class="maintop">
|
|
<div class="mainbtn">
|
|
<el-button size="small" @click="openDig" class="thebtn1"
|
|
v-has-buttons="['NoticeAdd']"
|
|
>{{'添加'}}</el-button
|
|
>
|
|
</div>
|
|
</div>
|
|
<div class="maintable">
|
|
<el-table
|
|
:data="tableData"
|
|
v-loading="loading"
|
|
style="width: 100%"
|
|
height="720px"
|
|
:header-cell-style="{ background: '#EEEEEE' }"
|
|
:row-class-name="tableRowClassName"
|
|
@selection-change="handleSelectionChange"
|
|
>
|
|
<el-table-column type="selection" width="55"> </el-table-column>
|
|
<el-table-column align="center" prop="title" :label="'公告标题'">
|
|
</el-table-column>
|
|
<el-table-column
|
|
align="center"
|
|
prop="websiteTypeVal"
|
|
:label="'显示类型'"
|
|
>
|
|
</el-table-column>
|
|
<el-table-column align="center" prop="locationVOList" :label="'发布位置'">
|
|
<template slot-scope="scope">
|
|
<div
|
|
v-for="item in scope.row.locationVOList"
|
|
:key="item.locationKey"
|
|
>
|
|
{{ item.locationKeyVal }}
|
|
</div>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column align="center" width="200" prop="noticeGradeVOList" :label="'结算等级'">
|
|
<template slot-scope="scope">
|
|
<div v-if="scope.row.noticeGradeVOList.length>2">
|
|
{{ scope.row.noticeGradeVOList[0].gradeKeyVal }}、{{ scope.row.noticeGradeVOList[1].gradeKeyVal }}、...
|
|
</div>
|
|
<div v-else-if="scope.row.noticeGradeVOList.length==2"> {{ scope.row.noticeGradeVOList[0].gradeKeyVal }}、{{ scope.row.noticeGradeVOList[1].gradeKeyVal }}</div>
|
|
<div v-else-if="scope.row.noticeGradeVOList.length==1"> {{ scope.row.noticeGradeVOList[0].gradeKeyVal }}</div>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column align="center" width="200" prop="awardsVOList" :label="'真实奖衔'">
|
|
<template slot-scope="scope">
|
|
|
|
<div v-if="scope.row.awardsVOList.length>2">
|
|
{{ scope.row.awardsVOList[0].awardKeyVal }}、{{ scope.row.awardsVOList[1].awardKeyVal }}、...
|
|
</div>
|
|
<div v-else-if="scope.row.awardsVOList.length==2"> {{ scope.row.awardsVOList[0].awardKeyVal }}、{{ scope.row.awardsVOList[1].awardKeyVal }}</div>
|
|
<div v-else-if="scope.row.awardsVOList.length==1"> {{ scope.row.awardsVOList[0].awardKeyVal }}</div>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column
|
|
align="center"
|
|
prop="isPopScreenVal"
|
|
:label="'强制弹窗'"
|
|
>
|
|
</el-table-column>
|
|
<el-table-column align="center" prop="stateVal" :label="'状态'">
|
|
</el-table-column>
|
|
<el-table-column align="center" prop="approveStateVal" :label="'审核状态'">
|
|
</el-table-column>
|
|
<el-table-column align="center" prop="endTime" :label="'起止日期'">
|
|
<template slot-scope="scope">
|
|
<div>{{ scope.row.startTime }}-{{ scope.row.endTime }}</div>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column align="center" prop="creationTime" :label="'创建日期'">
|
|
</el-table-column>
|
|
<el-table-column
|
|
align="center"
|
|
prop="time"
|
|
:label="'操作'"
|
|
fixed="right"
|
|
width="150"
|
|
>
|
|
<template slot-scope="scope">
|
|
<div class="btnHeng">
|
|
<div v-if="scope.row.approveState == 3||scope.row.approveState == 2" style="color:#48B2FD"
|
|
v-has-buttons="['noticeEdit']"
|
|
@click="toFixed(scope.row.pkId, 0)"
|
|
>
|
|
{{ '修改' }}
|
|
</div>
|
|
<div
|
|
@click="toFixed(scope.row.pkId, 1)"
|
|
style="color:#48B2FD"
|
|
v-has-buttons="['noticeOpen']"
|
|
>
|
|
{{ '查看' }}
|
|
</div>
|
|
<div v-if="scope.row.approveState == 2"
|
|
@click="toFixed(scope.row.pkId,2)"
|
|
style="color: #c73030"
|
|
v-has-buttons="['noticeDel']"
|
|
>
|
|
{{'删除'}}
|
|
</div>
|
|
</div>
|
|
<div class="btnHeng">
|
|
<div @click="upOrUnder(scope.row,0)"
|
|
type="text"
|
|
size="small"
|
|
v-has-buttons="['noticeUp']"
|
|
style="color: #108EE9">
|
|
{{'上移'}}
|
|
</div>
|
|
<div @click="upOrUnder(scope.row,1)"
|
|
type="text"
|
|
size="small"
|
|
v-has-buttons="['noticeDown']"
|
|
style="color: #108EE9">
|
|
{{'下移'}}
|
|
</div>
|
|
<div v-if="scope.row.top==1&&scope.row.approveState == 2" @click="upOrUnder(scope.row,2)"
|
|
type="text"
|
|
size="small"
|
|
v-has-buttons="['noticeTop']"
|
|
style="color: #009B58">
|
|
{{'置顶'}}
|
|
</div>
|
|
<div v-if="scope.row.top==0&&scope.row.approveState == 2" @click="upOrUnder(scope.row,3)"
|
|
type="text"
|
|
size="small"
|
|
v-has-buttons="['noticeOff']"
|
|
style="color: #009B58">
|
|
{{'取消置顶'}}
|
|
</div>
|
|
</div>
|
|
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
</div>
|
|
</div>
|
|
<pagination
|
|
v-show="total > 0"
|
|
:total="total"
|
|
:page.sync="queryParams.pageNum"
|
|
:limit.sync="queryParams.pageSize"
|
|
@pagination="getDataList"
|
|
/>
|
|
</div>
|
|
<el-dialog
|
|
:title="'添加'"
|
|
:close-on-click-modal="false"
|
|
:visible.sync="dialogVisible"
|
|
width="40%"
|
|
center
|
|
:before-close="handleClose"
|
|
>
|
|
<el-form ref="form" :rules="rules" :model="form" label-width="80px">
|
|
<el-row>
|
|
<el-col>
|
|
<el-form-item :label="'审核状态'" prop="name">
|
|
<el-input
|
|
clearable
|
|
v-model="form.name"
|
|
:placeholder="'请输入'"
|
|
></el-input>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
</el-form>
|
|
<span slot="footer" class="dialog-footer">
|
|
<el-button @click="handleClose">{{'取消'}}</el-button>
|
|
<el-button type="primary" @click="onSubmit('form')">{{'确认'}}</el-button>
|
|
</span>
|
|
</el-dialog>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import topBar from "@/components/topBarRole";
|
|
import * as api from "@/api/notice.js";
|
|
import { classifyUpdate, classifySave } from "@/api/product";
|
|
import {getRouters} from "@/api/settle";
|
|
export default {
|
|
name: "Bzpz",
|
|
components: {
|
|
topBar,
|
|
},
|
|
filters: {
|
|
isAgree(val) {
|
|
if (!val) {
|
|
return '允许';
|
|
} else {
|
|
return '禁止';
|
|
}
|
|
},
|
|
},
|
|
data() {
|
|
return {
|
|
typeList: [
|
|
{
|
|
value: 0,
|
|
label: '前台',
|
|
},
|
|
{
|
|
value: 1,
|
|
label: '后台',
|
|
},
|
|
],
|
|
digList: [
|
|
{
|
|
value: 0,
|
|
label: '允许',
|
|
},
|
|
{
|
|
value: 1,
|
|
label: '禁止',
|
|
},
|
|
],
|
|
creationTime: [],
|
|
creationTime1: [],
|
|
select: {
|
|
|
|
functionType: 1,
|
|
},
|
|
// 查询参数
|
|
queryParams: {
|
|
pageNum: 1,
|
|
pageSize: 50,
|
|
},
|
|
addOrEdit: "",
|
|
total: 0,
|
|
dialogVisible: false,
|
|
loading:false,
|
|
tableData: [],
|
|
moren: "/announcement/noticeList",
|
|
topList: [
|
|
{
|
|
name: '前台公告',
|
|
path: "/announcement/noticeList",
|
|
url: "Notice",
|
|
changed: false,
|
|
},
|
|
{
|
|
name: '后台公告',
|
|
path: "/announcement/noticeList/admin",
|
|
url: "NoticeAdmin",
|
|
changed: false,
|
|
},
|
|
],
|
|
form: {
|
|
name: "",
|
|
},
|
|
rules: {
|
|
name: [{ required: true, message: '请输入规格类型', trigger: "blur" }],
|
|
},
|
|
webList: [],
|
|
localList: [],
|
|
popList: [],
|
|
gradeList: [],
|
|
stateList: [],
|
|
};
|
|
},
|
|
mounted() {
|
|
// 获取下拉
|
|
this.getData();
|
|
// 获取列表
|
|
this.getDataList();
|
|
this.getUserRoute()
|
|
},
|
|
methods: {
|
|
upOrUnder(item,index){
|
|
let url
|
|
if(index == 0){
|
|
url=api.upMove
|
|
}else if(index == 1){
|
|
url=api.dowmMove
|
|
}else if(index == 2){
|
|
url=api.topMove
|
|
}else if(index == 3){
|
|
url=api.cancelMove
|
|
}
|
|
url({
|
|
pkId:item.pkId,
|
|
sort:item.sort,
|
|
}).then(res=>{
|
|
if(res.code == 200){
|
|
this.getDataList();
|
|
}
|
|
})
|
|
},
|
|
getUserRoute() {
|
|
getRouters().then((res)=>{
|
|
res.data.forEach((item)=>{
|
|
this.topList.forEach((items)=>{
|
|
if (item.routeName == items.url){
|
|
items.changed = true
|
|
}
|
|
})
|
|
})
|
|
})
|
|
},
|
|
//重置
|
|
reset() {
|
|
this.select = {
|
|
websiteType: 1,
|
|
functionType: 1,
|
|
};
|
|
this.creationTime = [];
|
|
this.creationTime1 = [];
|
|
this.getDataList()
|
|
},
|
|
getData() {
|
|
api.noticeWebsite().then((res) => {
|
|
this.webList = res.data;
|
|
});
|
|
api.noticeLocation().then((res) => {
|
|
this.localList = res.data;
|
|
});
|
|
api.noticePopup().then((res) => {
|
|
this.popList = res.data;
|
|
});
|
|
api.getGradeRanglist().then((res) => {
|
|
this.gradeList = res.data;
|
|
});
|
|
api.noticeState().then((res) => {
|
|
this.stateList = res.data;
|
|
});
|
|
},
|
|
changeTime(val) {
|
|
this.select.startDate = val[0];
|
|
this.select.endDate = val[1];
|
|
},
|
|
changeTime1(val) {
|
|
this.select.startFinishtDate = val[0];
|
|
this.select.endFinishDate = val[1];
|
|
},
|
|
// 点击修改
|
|
toFixed(id, index) {
|
|
// this.addOrEdit = false
|
|
// this.dialogVisible = true
|
|
this.$router.push({
|
|
path: "noticeList/details",
|
|
query: {
|
|
pkId: id,
|
|
type: index,
|
|
// functionType:this.select.functionType
|
|
},
|
|
});
|
|
},
|
|
// 删除
|
|
handleDelete(id) {
|
|
// this.$confirm('确认删除?', '提示', {
|
|
// confirmButtonText: '确定',
|
|
// cancelButtonText: '取消',
|
|
// type: "warning",
|
|
// }).then(() => {
|
|
// api.noticeDelete({ pkId: id }).then((res) => {
|
|
// this.getDataList();
|
|
// });
|
|
// });
|
|
this.$router.push({
|
|
path: "noticeList/details",
|
|
query: {
|
|
pkId: id,
|
|
type: index,
|
|
// functionType:this.select.functionType
|
|
},
|
|
});
|
|
},
|
|
onSubmit(formName) {
|
|
this.$refs[formName].validate((valid) => {
|
|
if (valid) {
|
|
let url = "";
|
|
if (this.addOrEdit == true) {
|
|
url = classifySave;
|
|
} else {
|
|
url = classifyUpdate;
|
|
}
|
|
url(this.form).then((res) => {
|
|
if (res.code == 200) {
|
|
this.$message({
|
|
message: res.msg,
|
|
type: "success",
|
|
});
|
|
this.dialogVisible = false;
|
|
// 充值数据
|
|
this.$refs[formName].resetFields();
|
|
// 获取列表
|
|
this.getDataList();
|
|
}
|
|
});
|
|
} else {
|
|
return false;
|
|
}
|
|
});
|
|
},
|
|
handleClose() {
|
|
this.dialogVisible = false;
|
|
this.$refs["form"].clearValidate();
|
|
this.$refs["form"].resetFields();
|
|
},
|
|
openDig() {
|
|
this.$router.push({
|
|
path: "noticeList/details",
|
|
});
|
|
},
|
|
getDataList() {
|
|
this.loading = true
|
|
api
|
|
.noticeMemberList(Object.assign({}, this.queryParams, this.select))
|
|
.then((res) => {
|
|
this.loading = false
|
|
this.tableData = res.rows;
|
|
this.total = res.total;
|
|
});
|
|
},
|
|
handleSelectionChange(val) {},
|
|
/** 导出按钮操作 */
|
|
handleExport() {
|
|
const queryParams = this.queryParams;
|
|
this.$confirm('是否确认导出所有数据项?', '警告', {
|
|
confirmButtonText: '确定',
|
|
cancelButtonText: '取消',
|
|
type: "warning",
|
|
})
|
|
.then(function () {
|
|
return api.exportClassIfy(queryParams);
|
|
})
|
|
.then((response) => {
|
|
this.download(response);
|
|
});
|
|
},
|
|
tableRowClassName({ row, rowIndex }) {
|
|
if (rowIndex % 2 == 1) {
|
|
return "warning-row";
|
|
} else if (rowIndex % 2 == 0) {
|
|
return "success-row";
|
|
}
|
|
return "";
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
<style scoped lang="scss">
|
|
::v-deep .el-table .warning-row {
|
|
background: #f9f9f9;
|
|
}
|
|
|
|
::v-deep .el-table .success-row {
|
|
background: #ffffff;
|
|
}
|
|
::v-deep .el-table thead {
|
|
color: #000000;
|
|
}
|
|
::v-deep .el-select {
|
|
width: 100%;
|
|
}
|
|
.searchbtn {
|
|
background: #c8161d;
|
|
color: #ffffff;
|
|
margin-left: 10px;
|
|
}
|
|
.uploadIcon ::v-deep .el-upload--picture-card {
|
|
display: none !important; /* 上传按钮隐藏 */
|
|
}
|
|
.page {
|
|
padding:10px 20px;
|
|
background: #f9f9f9;
|
|
font-size: 14px;
|
|
.main {
|
|
background: #ffffff;
|
|
border-radius: 8px;
|
|
box-shadow: 0px 2px 20px 0px rgba(238, 238, 238, 0.5);
|
|
.maintop {
|
|
display: flex;
|
|
padding: 0px 0 3px 0;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
background: #f9f9f9;
|
|
.mainbtn {
|
|
.thebtn1 {
|
|
background: #3181e5;
|
|
color: #ffffff;
|
|
}
|
|
.thebtn2 {
|
|
background: #ffad41;
|
|
color: #ffffff;
|
|
}
|
|
}
|
|
.maintitle {
|
|
font-size: 10px;
|
|
font-family: MicrosoftYaHei;
|
|
color: #999999;
|
|
}
|
|
}
|
|
}
|
|
.tem {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
img {
|
|
width: 28px;
|
|
height: 20px;
|
|
margin-right: 3px;
|
|
}
|
|
}
|
|
.isRed {
|
|
color: #ed1d25;
|
|
}
|
|
.isGreen {
|
|
color: #1ab62b;
|
|
}
|
|
.bgImg {
|
|
width: 48px;
|
|
height: 48px;
|
|
}
|
|
}
|
|
.openClose {
|
|
text-align: right;
|
|
margin-right: 10px;
|
|
color: #3181e5;
|
|
}
|
|
::v-deep .el-date-editor.el-input,
|
|
.el-date-editor.el-input__inner {
|
|
width: auto;
|
|
}
|
|
::v-deep .el-date-editor{
|
|
width: 100%!important;
|
|
}
|
|
.btnHeng {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
font-size: 12px;
|
|
cursor: pointer;
|
|
}
|
|
</style>
|