|
@@ -2,46 +2,44 @@
|
|
|
<div class="app-container calendar-list-container exchangeView">
|
|
|
<!-- 查询和其他操作 -->
|
|
|
<div class="filter-container">
|
|
|
- <el-select v-model="listQuery.type" clearable placeholder="勋章类型" style="top: -4px;width: 200px;">
|
|
|
- <el-option :key="item.type" v-for="item in typeList" :label="item.name" :value="item.type">
|
|
|
+ <el-input clearable class="filter-item" style="width: 200px;" placeholder="勋章名称"
|
|
|
+ v-model="listQuery.name"></el-input>
|
|
|
+ <el-input clearable class="filter-item" style="width: 200px;" placeholder="勋章类型"
|
|
|
+ v-model="listQuery.type"></el-input>
|
|
|
+ <el-select v-model="listQuery.status" clearable placeholder="状态" style="top: -4px;width: 200px;">
|
|
|
+ <el-option :key="item.dictValue" v-for="item in statusList" :label="item.dictLabel" :value="item.dictValue">
|
|
|
</el-option>
|
|
|
</el-select>
|
|
|
<el-button class="filter-item" type="primary" v-waves icon="el-icon-search" @click="handleFilter">查找</el-button>
|
|
|
+ <el-button class="filter-item" type="primary" @click="handleCreate" icon="el-icon-edit">添加</el-button>
|
|
|
+ <el-button class="filter-item" type="warning" icon="el-icon-delete" @click="delAll">批量删除</el-button>
|
|
|
</div>
|
|
|
|
|
|
<!-- 查询结果 -->
|
|
|
- <el-table size="small" :data="list" v-loading="listLoading" element-loading-text="正在查询中。。。" border fit
|
|
|
- highlight-current-row>
|
|
|
+ <el-table size="small" :data="list" @selection-change="handleSelectionChange" v-loading="listLoading"
|
|
|
+ element-loading-text="正在查询中。。。" border fit highlight-current-row>
|
|
|
+ <el-table-column type="selection" width="55px"> </el-table-column>
|
|
|
<el-table-column type="index" label="序号" header-align="center" align="center">
|
|
|
</el-table-column>
|
|
|
- <el-table-column align="center" min-width="80px" label="勋章类型" prop="type">
|
|
|
- </el-table-column>
|
|
|
- <el-table-column align="center" min-width="60px" label="金">
|
|
|
- <template slot-scope="props">
|
|
|
- <img style="width: 50px; height: 50px" :src="props.row.goldMedal">
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column align="center" min-width="60px" label="银">
|
|
|
- <template slot-scope="props">
|
|
|
- <img style="width: 50px; height: 50px" :src="props.row.silverMedal">
|
|
|
- </template>
|
|
|
+ <el-table-column align="center" min-width="80px" label="勋章名称" prop="name">
|
|
|
</el-table-column>
|
|
|
- <el-table-column align="center" min-width="60px" label="铜">
|
|
|
- <template slot-scope="props">
|
|
|
- <img style="width: 50px; height: 50px" :src="props.row.copperMedal">
|
|
|
- </template>
|
|
|
+ <el-table-column align="center" min-width="80px" label="勋章类型" prop="type">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <router-link :to="{name: 'medalDataList', params: { id: scope.row.type }}">
|
|
|
+ <div style="color: #337ab7;cursor: pointer;">{{ scope.row.type }}</div>
|
|
|
+ </router-link>
|
|
|
+ </template>
|
|
|
</el-table-column>
|
|
|
<el-table-column align="center" min-width="80px" label="状态" prop="statusName">
|
|
|
</el-table-column>
|
|
|
+ <el-table-column align="center" min-width="80px" label="排序" prop="sort">
|
|
|
+ </el-table-column>
|
|
|
<el-table-column align="center" min-width="150px" label="创建时间" prop="createTime">
|
|
|
</el-table-column>
|
|
|
<el-table-column align="center" label="操作" width="240px" class-name="small-padding fixed-width">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button type="primary" size="small" @click="handleUpdate(scope.row)">编辑</el-button>
|
|
|
- <el-button v-if="scope.row.status == 0" type="success" size="small"
|
|
|
- @click="changeState(scope.row.welfareId, 1)">开启</el-button>
|
|
|
- <el-button v-if="scope.row.status == 1" type="warning" size="small"
|
|
|
- @click="changeState(scope.row.welfareId, 0)">关闭</el-button>
|
|
|
+ <el-button type="danger" size="small" @click="handleDelete(scope.row)">删除</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
@@ -53,65 +51,36 @@
|
|
|
layout="total, sizes, prev, pager, next, jumper" :total="total">
|
|
|
</el-pagination>
|
|
|
</div>
|
|
|
- <!-- 添加或修改对话框 -->
|
|
|
- <el-dialog :close-on-click-modal="false" title="编辑" :visible.sync="dialogFormVisible" width="40%">
|
|
|
- <el-form ref="dataForm" :model="dataForm" status-icon label-position="left" label-width="100px">
|
|
|
- <el-form-item label="勋章类型">
|
|
|
- <el-input readonly v-model="dataForm.type" style="width: 330px"></el-input>
|
|
|
+ <!-- 添加或修改对话框 -->
|
|
|
+ <el-dialog
|
|
|
+ :close-on-click-modal="false"
|
|
|
+ :title="textMap[dialogStatus]"
|
|
|
+ :visible.sync="dialogFormVisible"
|
|
|
+ width="40%"
|
|
|
+ >
|
|
|
+ <el-form :rules="rules" ref="dataForm" :model="dataForm" status-icon label-position="left" label-width="80px" style='width: 700px; margin-left:50px;'>
|
|
|
+ <el-form-item label="勋章名称" prop="name">
|
|
|
+ <el-input v-model="dataForm.name" style="width: 330px"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="勋章类型" prop="type">
|
|
|
+ <el-input v-model="dataForm.type" style="width: 330px"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="状态" prop="status">
|
|
|
+ <el-radio-group v-model="dataForm.status">
|
|
|
+ <el-radio v-for="item in statusList" :key="item.dictValue" :label="item.dictValue">{{ item.dictLabel
|
|
|
+ }}</el-radio>
|
|
|
+ </el-radio-group>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="排序" prop="sort">
|
|
|
+ <el-input-number :precision="0" :step="1" v-model="dataForm.sort"></el-input-number>
|
|
|
</el-form-item>
|
|
|
- <div style="display: flex;">
|
|
|
- <el-form-item style="width: 250px" label="默认勋章">
|
|
|
- <el-upload
|
|
|
- class="avatar-uploader"
|
|
|
- :action="fileImgUrl"
|
|
|
- :show-file-list="false"
|
|
|
- :on-success="handleMedalSuccess"
|
|
|
- :before-upload="beforeAvatarUpload">
|
|
|
- <img v-if="dataForm.medal" :src="dataForm.medal" class="avatar">
|
|
|
- <i v-else class="el-icon-plus avatar-uploader-icon"></i>
|
|
|
- </el-upload>
|
|
|
- </el-form-item>
|
|
|
- <el-form-item style="width: 250px" label="金勋章">
|
|
|
- <el-upload
|
|
|
- class="avatar-uploader"
|
|
|
- :action="fileImgUrl"
|
|
|
- :show-file-list="false"
|
|
|
- :on-success="handleGoldMedalSuccess"
|
|
|
- :before-upload="beforeAvatarUpload">
|
|
|
- <img v-if="dataForm.goldMedal" :src="dataForm.goldMedal" class="avatar">
|
|
|
- <i v-else class="el-icon-plus avatar-uploader-icon"></i>
|
|
|
- </el-upload>
|
|
|
- </el-form-item>
|
|
|
- </div>
|
|
|
- <div style="display: flex;">
|
|
|
- <el-form-item style="width: 250px" label="银勋章">
|
|
|
- <el-upload
|
|
|
- class="avatar-uploader"
|
|
|
- :action="fileImgUrl"
|
|
|
- :show-file-list="false"
|
|
|
- :on-success="handleSilverMedalSuccess"
|
|
|
- :before-upload="beforeAvatarUpload">
|
|
|
- <img v-if="dataForm.silverMedal" :src="dataForm.silverMedal" class="avatar">
|
|
|
- <i v-else class="el-icon-plus avatar-uploader-icon"></i>
|
|
|
- </el-upload>
|
|
|
- </el-form-item>
|
|
|
- <el-form-item style="width: 250px" label="铜勋章">
|
|
|
- <el-upload
|
|
|
- class="avatar-uploader"
|
|
|
- :action="fileImgUrl"
|
|
|
- :show-file-list="false"
|
|
|
- :on-success="handleCopperMedalSuccess"
|
|
|
- :before-upload="beforeAvatarUpload">
|
|
|
- <img v-if="dataForm.copperMedal" :src="dataForm.copperMedal" class="avatar">
|
|
|
- <i v-else class="el-icon-plus avatar-uploader-icon"></i>
|
|
|
- </el-upload>
|
|
|
- </el-form-item>
|
|
|
- </div>
|
|
|
-
|
|
|
+
|
|
|
+
|
|
|
</el-form>
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
<el-button @click="dialogFormVisible = false">取消</el-button>
|
|
|
- <el-button type="primary" @click="updateData">确定</el-button>
|
|
|
+ <el-button v-if="dialogStatus == 'create'" type="primary" @click="createData">确定</el-button>
|
|
|
+ <el-button v-else type="primary" @click="updateData">确定</el-button>
|
|
|
</div>
|
|
|
</el-dialog>
|
|
|
</div>
|
|
@@ -124,23 +93,27 @@
|
|
|
cursor: pointer;
|
|
|
position: relative;
|
|
|
overflow: hidden;
|
|
|
- }
|
|
|
- .avatar-uploader .el-upload:hover {
|
|
|
+}
|
|
|
+
|
|
|
+.avatar-uploader .el-upload:hover {
|
|
|
border-color: #409EFF;
|
|
|
- }
|
|
|
- .avatar-uploader-icon {
|
|
|
+}
|
|
|
+
|
|
|
+.avatar-uploader-icon {
|
|
|
font-size: 28px;
|
|
|
color: #8c939d;
|
|
|
width: 80px;
|
|
|
height: 80px;
|
|
|
line-height: 80px;
|
|
|
text-align: center;
|
|
|
- }
|
|
|
- .avatar {
|
|
|
+}
|
|
|
+
|
|
|
+.avatar {
|
|
|
width: 80px;
|
|
|
height: 80px;
|
|
|
display: block;
|
|
|
- }
|
|
|
+}
|
|
|
+
|
|
|
.demo-table-expand {
|
|
|
font-size: 0;
|
|
|
}
|
|
@@ -157,7 +130,8 @@
|
|
|
</style>
|
|
|
|
|
|
<script>
|
|
|
-import { list, updateItem, stateItem } from "@/api/medalList";
|
|
|
+import { list, updateItem, createItem, deleteitem } from "@/api/medalList";
|
|
|
+import { dataTypeList } from "@/api/public";
|
|
|
import waves from "@/directive/waves"; // 水波纹指令
|
|
|
import Tinymce from '@/components/Tinymce'
|
|
|
|
|
@@ -166,114 +140,82 @@ export default {
|
|
|
directives: { waves },
|
|
|
data() {
|
|
|
return {
|
|
|
- fileImgUrl: this.upLoadUrl,
|
|
|
+ rules: {
|
|
|
+ name: [{ required: true, message: "勋章名称不能为空", trigger: "blur" }],
|
|
|
+ type: [{ required: true, message: "勋章名称不能为空", trigger: "blur" }],
|
|
|
+ status: [{ required: true, message: "请选择勋章状态", trigger: "blur" }],
|
|
|
+ sort: [{ required: true, message: "排序不能为空", trigger: "blur" }],
|
|
|
+ },
|
|
|
+ dialogStatus: '',
|
|
|
+ textMap: {
|
|
|
+ update: "编辑",
|
|
|
+ create: "创建",
|
|
|
+ },
|
|
|
dialogFormVisible: false,
|
|
|
dataForm: {
|
|
|
- type:'',
|
|
|
- medal:'',
|
|
|
- goldMedal:'',
|
|
|
- silverMedal:'',
|
|
|
- copperMedal:'',
|
|
|
+ name: '',
|
|
|
+ type: '',
|
|
|
+ status: '',
|
|
|
+ sort: '',
|
|
|
},
|
|
|
- typeList: [
|
|
|
- {
|
|
|
- type: 0,
|
|
|
- name: '当前积分'
|
|
|
- },
|
|
|
- {
|
|
|
- type: 1,
|
|
|
- name: '获取总积分'
|
|
|
- },
|
|
|
- ],
|
|
|
- list: [
|
|
|
- {
|
|
|
- id:'1',
|
|
|
- type:'入职年限',
|
|
|
- medal:'https://cube.elemecdn.com/3/7c/3ea6beec64369c2642b92c6726f1epng.png',
|
|
|
- goldMedal:'https://cube.elemecdn.com/3/7c/3ea6beec64369c2642b92c6726f1epng.png',
|
|
|
- silverMedal:'https://cube.elemecdn.com/3/7c/3ea6beec64369c2642b92c6726f1epng.png',
|
|
|
- copperMedal:'https://cube.elemecdn.com/3/7c/3ea6beec64369c2642b92c6726f1epng.png',
|
|
|
- status:1,
|
|
|
- statusName:'开启',
|
|
|
- createTime:'2023-4-25',
|
|
|
- },
|
|
|
- {
|
|
|
- id:'2',
|
|
|
- type:'入职年限',
|
|
|
- medal:'https://cube.elemecdn.com/3/7c/3ea6beec64369c2642b92c6726f1epng.png',
|
|
|
- goldMedal:'https://cube.elemecdn.com/3/7c/3ea6beec64369c2642b92c6726f1epng.png',
|
|
|
- silverMedal:'https://cube.elemecdn.com/3/7c/3ea6beec64369c2642b92c6726f1epng.png',
|
|
|
- copperMedal:'https://cube.elemecdn.com/3/7c/3ea6beec64369c2642b92c6726f1epng.png',
|
|
|
- status:0,
|
|
|
- statusName:'关闭',
|
|
|
- createTime:'2023-4-25',
|
|
|
- },
|
|
|
- ],
|
|
|
+ statusList: [],
|
|
|
+ list: [],
|
|
|
total: 0,
|
|
|
listLoading: false,
|
|
|
listQuery: {
|
|
|
page: 1,
|
|
|
limit: 10,
|
|
|
+ name: '',
|
|
|
type: '',
|
|
|
-
|
|
|
+ status: '',
|
|
|
+
|
|
|
},
|
|
|
}
|
|
|
},
|
|
|
created() {
|
|
|
- // this.getList();
|
|
|
+ this.getStatusList();
|
|
|
+ this.getList();
|
|
|
},
|
|
|
methods: {
|
|
|
- handleMedalSuccess(res,file) {
|
|
|
- this.dataForm.medal = URL.createObjectURL(file.raw);
|
|
|
- },
|
|
|
- handleGoldMedalSuccess(res,file) {
|
|
|
- this.dataForm.goldMedal = URL.createObjectURL(file.raw);
|
|
|
- },
|
|
|
- handleSilverMedalSuccess(res,file) {
|
|
|
- this.dataForm.silverMedal = URL.createObjectURL(file.raw);
|
|
|
- },
|
|
|
- handleCopperMedalSuccess(res,file) {
|
|
|
- this.dataForm.copperMedal = URL.createObjectURL(file.raw);
|
|
|
-
|
|
|
- },
|
|
|
- beforeAvatarUpload(file) {
|
|
|
- const isJPG = file.type === 'image/jpeg';
|
|
|
- const isLt2M = file.size / 1024 / 1024 < 2;
|
|
|
-
|
|
|
- if (!isJPG) {
|
|
|
- this.$message.error('上传头像图片只能是 JPG 格式!');
|
|
|
- }
|
|
|
- if (!isLt2M) {
|
|
|
- this.$message.error('上传头像图片大小不能超过 2MB!');
|
|
|
- }
|
|
|
- return isJPG && isLt2M;
|
|
|
+ resetForm() {
|
|
|
+ this.dataForm = {
|
|
|
+ name: '',
|
|
|
+ type: '',
|
|
|
+ status: '',
|
|
|
+ sort: '',
|
|
|
+ };
|
|
|
},
|
|
|
- handleUpdate(row) {
|
|
|
- this.dataForm = Object.assign({}, row);
|
|
|
+ handleCreate() {
|
|
|
+ this.resetForm();
|
|
|
this.dialogFormVisible = true;
|
|
|
+ this.dialogStatus = "create";
|
|
|
+ this.$nextTick(() => {
|
|
|
+ this.$refs["dataForm"].clearValidate();
|
|
|
+ });
|
|
|
},
|
|
|
- updateData() {
|
|
|
- updateItem(this.dataForm).then(() => {
|
|
|
- this.dialogFormVisible = false
|
|
|
- this.$notify({
|
|
|
- title: '成功',
|
|
|
- message: '更新成功',
|
|
|
- type: 'success',
|
|
|
- duration: 2000
|
|
|
- })
|
|
|
- this.getList()
|
|
|
- })
|
|
|
+ createData() {
|
|
|
+ this.$refs["dataForm"].validate((valid) => {
|
|
|
+ if (valid) {
|
|
|
+ createItem(this.dataForm)
|
|
|
+ .then(() => {
|
|
|
+ this.getList();
|
|
|
+ this.dialogFormVisible = false;
|
|
|
+
|
|
|
+ this.$notify({
|
|
|
+ title: "成功",
|
|
|
+ message: "创建成功",
|
|
|
+ type: "success",
|
|
|
+ duration: 2000,
|
|
|
+ });
|
|
|
+ this.getList()
|
|
|
+ })
|
|
|
+ }
|
|
|
+ });
|
|
|
},
|
|
|
- changeState(welfareId, index) {
|
|
|
- stateItem({ welfareId: welfareId, status: index }).then(response => {
|
|
|
- this.$notify({
|
|
|
- title: '成功',
|
|
|
- message: '状态修改成功',
|
|
|
- type: 'success',
|
|
|
- duration: 2000
|
|
|
- })
|
|
|
- this.getList()
|
|
|
- })
|
|
|
+ getStatusList() {
|
|
|
+ dataTypeList({ dictType: 'medal_status_option_select' }).then(response => {
|
|
|
+ this.statusList = response.data.data;
|
|
|
+ }).catch(() => { });
|
|
|
},
|
|
|
getList() {
|
|
|
this.listLoading = true
|
|
@@ -281,7 +223,7 @@ export default {
|
|
|
this.list = response.data.data.items
|
|
|
this.total = response.data.data.total
|
|
|
this.listLoading = false
|
|
|
- }).catch(() => {})
|
|
|
+ }).catch(() => { })
|
|
|
},
|
|
|
handleFilter() {
|
|
|
this.listQuery.page = 1
|
|
@@ -295,6 +237,92 @@ export default {
|
|
|
this.listQuery.page = val
|
|
|
this.getList()
|
|
|
},
|
|
|
+ handleUpdate(row) {
|
|
|
+ this.dataForm = Object.assign({}, row);
|
|
|
+ this.dialogStatus = 'update'
|
|
|
+ this.dialogFormVisible = true
|
|
|
+ this.$nextTick(() => {
|
|
|
+ this.$refs['dataForm'].clearValidate()
|
|
|
+ })
|
|
|
+ },
|
|
|
+
|
|
|
+ updateData() {
|
|
|
+ this.$refs['dataForm'].validate((valid) => {
|
|
|
+ if (valid) {
|
|
|
+ updateItem(this.dataForm).then(() => {
|
|
|
+ this.dialogFormVisible = false
|
|
|
+ this.$notify({
|
|
|
+ title: '成功',
|
|
|
+ message: '更新成功',
|
|
|
+ type: 'success',
|
|
|
+ duration: 2000
|
|
|
+ })
|
|
|
+ this.getList()
|
|
|
+ })
|
|
|
+
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+
|
|
|
+ handleDelete(row) {
|
|
|
+
|
|
|
+ this.$confirm('确认删除吗?', '提示', {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning'
|
|
|
+ }).then(() => {
|
|
|
+ deleteitem({ ids: row.id }).then(response => {
|
|
|
+ this.$notify({
|
|
|
+ title: '成功',
|
|
|
+ message: '删除成功',
|
|
|
+ type: 'success',
|
|
|
+ duration: 2000
|
|
|
+ })
|
|
|
+ this.getList()
|
|
|
+ })
|
|
|
+ }).catch(() => {
|
|
|
+
|
|
|
+ })
|
|
|
+
|
|
|
+ },
|
|
|
+ delAll() {
|
|
|
+ this.$confirm("确认删除吗?", "提示", {
|
|
|
+ confirmButtonText: "确定",
|
|
|
+ cancelButtonText: "取消",
|
|
|
+ type: "warning",
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ const length = this.multipleSelection.length;
|
|
|
+
|
|
|
+ if (length > 0) {
|
|
|
+ for (let i = 0; i < length; i++) {
|
|
|
+ this.delarr.push(this.multipleSelection[i].id);
|
|
|
+ }
|
|
|
+ const dictIds = this.delarr.join(",");
|
|
|
+ deleteitem({ ids: dictIds })
|
|
|
+ .then(() => {
|
|
|
+ this.$notify({
|
|
|
+ title: "成功",
|
|
|
+ message: "删除成功",
|
|
|
+ type: "success",
|
|
|
+ duration: 2000,
|
|
|
+ });
|
|
|
+ this.getList();
|
|
|
+ })
|
|
|
+ .catch(() => { });
|
|
|
+ } else {
|
|
|
+ this.$notify({
|
|
|
+ title: "警告提示",
|
|
|
+ message: "请选择要删除的信息!",
|
|
|
+ type: "warning",
|
|
|
+ });
|
|
|
+ }
|
|
|
+ })
|
|
|
+ .catch(() => { });
|
|
|
+ },
|
|
|
+ handleSelectionChange(val) {
|
|
|
+ this.multipleSelection = val;
|
|
|
+ },
|
|
|
}
|
|
|
}
|
|
|
</script>
|
|
@@ -323,6 +351,7 @@ export default {
|
|
|
.ad-avatar {
|
|
|
display: block;
|
|
|
}
|
|
|
+
|
|
|
.exchangeView .el-dialog__body {
|
|
|
padding-top: 0px;
|
|
|
}
|