|
@@ -0,0 +1,312 @@
|
|
|
|
+<template>
|
|
|
|
+ <div class="app-container">
|
|
|
|
+ <el-card class="filter-container" shadow="never">
|
|
|
|
+ <div>
|
|
|
|
+ <i class="el-icon-search"></i>
|
|
|
|
+ <span>筛选搜索</span>
|
|
|
|
+ <el-button
|
|
|
|
+ style="float:right"
|
|
|
|
+ type="primary"
|
|
|
|
+ @click="handleSearchList()"
|
|
|
|
+ size="small">
|
|
|
|
+ 查询搜索
|
|
|
|
+ </el-button>
|
|
|
|
+ <el-button
|
|
|
|
+ style="float:right;margin-right: 15px"
|
|
|
|
+ @click="handleResetSearch()"
|
|
|
|
+ size="small">
|
|
|
|
+ 重置
|
|
|
|
+ </el-button>
|
|
|
|
+ </div>
|
|
|
|
+ <div style="margin-top: 15px">
|
|
|
|
+ <el-form :inline="true" :model="listQuery" size="small" label-width="140px">
|
|
|
|
+ <el-form-item label="输入搜索:">
|
|
|
|
+ <el-input v-model="listQuery.keyword" class="input-width" placeholder="专题名称" clearable></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-form>
|
|
|
|
+ </div>
|
|
|
|
+ </el-card>
|
|
|
|
+ <el-card class="operate-container" shadow="never">
|
|
|
|
+ <i class="el-icon-tickets"></i>
|
|
|
|
+ <span>数据列表</span>
|
|
|
|
+ <el-button v-if="createuse" size="mini" class="btn-add" @click="handleAdd()" style="margin-left: 20px">添加</el-button>
|
|
|
|
+ </el-card>
|
|
|
|
+ <div class="table-container">
|
|
|
|
+ <el-table ref="subjectTable"
|
|
|
|
+ :data="list"
|
|
|
|
+ style="width: 100%;"
|
|
|
|
+ v-loading="listLoading" border>
|
|
|
|
+ <el-table-column label="编号" width="100" align="center">
|
|
|
|
+ <template slot-scope="scope">{{scope.row.id}}</template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column label="专题名称" align="center">
|
|
|
|
+ <template slot-scope="scope">{{scope.row.title}}</template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column label="专题类别" align="center">
|
|
|
|
+ <template slot-scope="scope">{{scope.row.categoryName}}</template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column label="添加时间" width="160" align="center">
|
|
|
|
+ <template slot-scope="scope">{{scope.row.createTime | formatDateTime}}</template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <!-- <el-table-column label="是否启用" width="140" align="center">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <el-switch
|
|
|
|
+ @change="handleStatusChange(scope.$index, scope.row)"
|
|
|
|
+ :active-value="1"
|
|
|
|
+ :inactive-value="0"
|
|
|
|
+ v-model="scope.row.status">
|
|
|
|
+ </el-switch>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column> -->
|
|
|
|
+ <el-table-column label="操作" width="180" align="center">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <el-button size="mini" v-if="updateuse"
|
|
|
|
+ type="text"
|
|
|
|
+ @click="handleUpdate(scope.$index, scope.row)">
|
|
|
|
+ 编辑
|
|
|
|
+ </el-button>
|
|
|
|
+ <el-button size="mini" v-if="deleteuse"
|
|
|
|
+ type="text"
|
|
|
|
+ @click="handleDelete(scope.$index, scope.row)">删除
|
|
|
|
+ </el-button>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ </el-table>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="pagination-container">
|
|
|
|
+ <el-pagination
|
|
|
|
+ background
|
|
|
|
+ @size-change="handleSizeChange"
|
|
|
|
+ @current-change="handleCurrentChange"
|
|
|
|
+ layout="total, sizes,prev, pager, next,jumper"
|
|
|
|
+ :current-page.sync="listQuery.pageNum"
|
|
|
|
+ :page-size="listQuery.pageSize"
|
|
|
|
+ :page-sizes="[10,15,20]"
|
|
|
|
+ :total="total">
|
|
|
|
+ </el-pagination>
|
|
|
|
+ </div>
|
|
|
|
+ <el-dialog
|
|
|
|
+ :title="isEdit?'编辑专题':'添加专题'"
|
|
|
|
+ :visible.sync="dialogVisible"
|
|
|
|
+ width="40%">
|
|
|
|
+ <el-form :model="subject"
|
|
|
|
+ ref="subjectForm"
|
|
|
|
+ label-width="150px" size="small">
|
|
|
|
+ <el-form-item label="专题名称:">
|
|
|
|
+ <el-input v-model="subject.title" style="width: 250px"></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="专题类别:">
|
|
|
|
+ <el-select v-model="subject.categoryName" @change="subjectChange($event)" filterable placeholder="请选择">
|
|
|
|
+ <el-option
|
|
|
|
+ v-for="item in subjectType"
|
|
|
|
+ :key="item.id"
|
|
|
|
+ :label="item.name"
|
|
|
|
+ :value="item.name">
|
|
|
|
+ </el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="主图:">
|
|
|
|
+ <single-upload v-model="subject.pic"></single-upload>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="专题描述 :">
|
|
|
|
+ <el-input v-model="subject.description"
|
|
|
|
+ type="textarea"
|
|
|
|
+ :rows="5"
|
|
|
|
+ style="width: 250px"></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <!-- <el-form-item label="是否启用:">
|
|
|
|
+ <el-radio-group v-model="subject.status">
|
|
|
|
+ <el-radio :label="1">是</el-radio>
|
|
|
|
+ <el-radio :label="0">否</el-radio>
|
|
|
|
+ </el-radio-group>
|
|
|
|
+ </el-form-item> -->
|
|
|
|
+ </el-form>
|
|
|
|
+ <span slot="footer" class="dialog-footer">
|
|
|
|
+ <el-button @click="dialogVisible = false" size="small">取 消</el-button>
|
|
|
|
+ <el-button type="primary" @click="handleDialogConfirm()" size="small">确 定</el-button>
|
|
|
|
+ </span>
|
|
|
|
+ </el-dialog>
|
|
|
|
+
|
|
|
|
+ </div>
|
|
|
|
+</template>
|
|
|
|
+<script>
|
|
|
|
+ import {fetchList, createsubject, updatesubject, deletesubject, subjectTypeList} from '@/api/subject';
|
|
|
|
+ import {formatDate} from '@/utils/date';
|
|
|
|
+ import {createuse,updateuse,deleteuse,roleuse} from '@/api/permissions'
|
|
|
|
+ import SingleUpload from '@/components/Upload/singleUpload'
|
|
|
|
+ // import MultiUpload from '@/components/Upload/multiUpload'
|
|
|
|
+
|
|
|
|
+ const defaultListQuery = {
|
|
|
|
+ pageNum: 1,
|
|
|
|
+ pageSize: 10,
|
|
|
|
+ keyword: null
|
|
|
|
+ };
|
|
|
|
+ const defaultSubject = {
|
|
|
|
+ id: null,
|
|
|
|
+ title: null,
|
|
|
|
+ categoryName: null,
|
|
|
|
+ categoryId:null,
|
|
|
|
+ description: null,
|
|
|
|
+ pic:'',
|
|
|
|
+ status: 1
|
|
|
|
+ };
|
|
|
|
+ export default {
|
|
|
|
+ components: {SingleUpload},
|
|
|
|
+ name: 'subjectList',
|
|
|
|
+ data() {
|
|
|
|
+ return {
|
|
|
|
+ createuse,
|
|
|
|
+ updateuse,
|
|
|
|
+ deleteuse,
|
|
|
|
+ roleuse,
|
|
|
|
+ listQuery: Object.assign({}, defaultListQuery),
|
|
|
|
+ list: null,
|
|
|
|
+ total: null,
|
|
|
|
+ listLoading: false,
|
|
|
|
+ dialogVisible: false,
|
|
|
|
+ subject: Object.assign({}, defaultSubject),
|
|
|
|
+ isEdit: false,
|
|
|
|
+ // allocDialogVisible: false,
|
|
|
|
+ // allocRoleIds:[],
|
|
|
|
+ // allRoleList:[],
|
|
|
|
+ // allocsubjectId:null,
|
|
|
|
+ subjectType:[],
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ created() {
|
|
|
|
+ this.getList();
|
|
|
|
+ this.getSubjectType();
|
|
|
|
+ },
|
|
|
|
+ filters: {
|
|
|
|
+ formatDateTime(time) {
|
|
|
|
+ if (time == null || time === '') {
|
|
|
|
+ return 'N/A';
|
|
|
|
+ }
|
|
|
|
+ let date = new Date(time);
|
|
|
|
+ return formatDate(date, 'yyyy-MM-dd hh:mm:ss')
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ methods: {
|
|
|
|
+ handleResetSearch() {
|
|
|
|
+ this.listQuery = Object.assign({}, defaultListQuery);
|
|
|
|
+ this.getList();
|
|
|
|
+ },
|
|
|
|
+ handleSearchList() {
|
|
|
|
+ this.listQuery.pageNum = 1;
|
|
|
|
+ this.getList();
|
|
|
|
+ },
|
|
|
|
+ handleSizeChange(val) {
|
|
|
|
+ this.listQuery.pageNum = 1;
|
|
|
|
+ this.listQuery.pageSize = val;
|
|
|
|
+ this.getList();
|
|
|
|
+ },
|
|
|
|
+ handleCurrentChange(val) {
|
|
|
|
+ this.listQuery.pageNum = val;
|
|
|
|
+ this.getList();
|
|
|
|
+ },
|
|
|
|
+ handleAdd() {
|
|
|
|
+ this.dialogVisible = true;
|
|
|
|
+ this.isEdit = false;
|
|
|
|
+ this.subject = Object.assign({},defaultSubject);
|
|
|
|
+ },
|
|
|
|
+ subjectChange(e){
|
|
|
|
+ let obj = this.subjectType.filter( (item) =>{
|
|
|
|
+ return item.name == e
|
|
|
|
+ })
|
|
|
|
+ if(obj.length>0){
|
|
|
|
+ this.subject.categoryId = obj[0].id
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ // handleStatusChange(index, row) {
|
|
|
|
+ // this.$confirm('是否要修改该状态?', '提示', {
|
|
|
|
+ // confirmButtonText: '确定',
|
|
|
|
+ // cancelButtonText: '取消',
|
|
|
|
+ // type: 'warning'
|
|
|
|
+ // }).then(() => {
|
|
|
|
+ // updateStatus(row.id, {status: row.status}).then(response => {
|
|
|
|
+ // this.$message({
|
|
|
|
+ // type: 'success',
|
|
|
|
+ // message: '修改成功!'
|
|
|
|
+ // });
|
|
|
|
+ // });
|
|
|
|
+ // }).catch(() => {
|
|
|
|
+ // this.$message({
|
|
|
|
+ // type: 'info',
|
|
|
|
+ // message: '取消修改'
|
|
|
|
+ // });
|
|
|
|
+ // this.getList();
|
|
|
|
+ // });
|
|
|
|
+ // },
|
|
|
|
+ handleDelete(index, row) {
|
|
|
|
+ this.$confirm('是否要删除该专题?', '提示', {
|
|
|
|
+ confirmButtonText: '确定',
|
|
|
|
+ cancelButtonText: '取消',
|
|
|
|
+ type: 'warning'
|
|
|
|
+ }).then(() => {
|
|
|
|
+ deletesubject(row.id).then(response => {
|
|
|
|
+ this.$message({
|
|
|
|
+ type: 'success',
|
|
|
|
+ message: '删除成功!'
|
|
|
|
+ });
|
|
|
|
+ this.getList();
|
|
|
|
+ }).catch( err =>{ console.log('handleDelete err',err)});
|
|
|
|
+ });
|
|
|
|
+ },
|
|
|
|
+ handleUpdate(index, row) {
|
|
|
|
+ this.dialogVisible = true;
|
|
|
|
+ this.isEdit = true;
|
|
|
|
+ this.subject = Object.assign({},row);
|
|
|
|
+ console.log('row',row);
|
|
|
|
+ },
|
|
|
|
+ handleDialogConfirm() {
|
|
|
|
+ this.$confirm('是否要确认?', '提示', {
|
|
|
|
+ confirmButtonText: '确定',
|
|
|
|
+ cancelButtonText: '取消',
|
|
|
|
+ type: 'warning'
|
|
|
|
+ }).then(() => {
|
|
|
|
+ if (this.isEdit) {
|
|
|
|
+ // console.log('this.company',this.company);
|
|
|
|
+ // console.log('this.subject',this.subject);
|
|
|
|
+ // return false;
|
|
|
|
+ updatesubject(this.subject).then(response => {
|
|
|
|
+ this.$message({
|
|
|
|
+ message: '修改成功!',
|
|
|
|
+ type: 'success'
|
|
|
|
+ });
|
|
|
|
+ this.dialogVisible =false;
|
|
|
|
+ this.getList();
|
|
|
|
+ })
|
|
|
|
+ } else {
|
|
|
|
+ createsubject(this.subject).then(response => {
|
|
|
|
+ this.$message({
|
|
|
|
+ message: '添加成功!',
|
|
|
|
+ type: 'success'
|
|
|
|
+ });
|
|
|
|
+ this.dialogVisible =false;
|
|
|
|
+ this.getList();
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ getList() {
|
|
|
|
+ this.listLoading = true;
|
|
|
|
+ fetchList(this.listQuery).then(response => {
|
|
|
|
+ this.listLoading = false;
|
|
|
|
+ this.list = response.data.list;
|
|
|
|
+ this.total = response.data.total;
|
|
|
|
+ });
|
|
|
|
+ },
|
|
|
|
+ getSubjectType(){
|
|
|
|
+ subjectTypeList().then(response =>{
|
|
|
|
+ this.subjectType = response.data
|
|
|
|
+ })
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+</script>
|
|
|
|
+<style></style>
|
|
|
|
+
|
|
|
|
+
|