<!DOCTYPE html> <html> <head> <title>自定义页面</title> <#include "../../include/head-file.ftl"> </head> <body> <div id="index" v-cloak class="ms-index"> <el-header class="ms-header" height="50px"> <el-col :span="12"> <@shiro.hasPermission name="mdiy:page:save"> <el-button type="primary" icon="el-icon-plus" size="mini" @click="save()">新增</el-button> </@shiro.hasPermission> <@shiro.hasPermission name="mdiy:page:del"> <el-button type="danger" icon="el-icon-delete" size="mini" @click="del(selectionList)" :disabled="!selectionList.length">删除</el-button> </@shiro.hasPermission> </el-col> </el-header> <div class="ms-search" style="padding: 20px 10px 0 10px;"> <el-row> <el-form :model="form" ref="searchForm" label-width="60px" size="mini"> <el-row> <el-col :span="8"> <el-form-item label="标题" prop="pageTitle"> <el-input v-model="form.pageTitle" :disabled="false" :style="{width: '100%'}" :clearable="true" placeholder="请输入自定义页面标题"> </el-input> </el-form-item> </el-col> <el-col :span="8"> <el-form-item label="分类" prop="pageType" label-width="100px"> <el-select v-model="form.pageType" :style="{width: '100%'}" :filterable="true" :disabled="false" :multiple="false" :clearable="true" placeholder="请选择分类"> <el-option v-for='item in pageTypeOptions' :key="item.dictValue" :value="item.dictValue" :label="item.dictLabel"></el-option> </el-select> </el-form-item> </el-col> <el-col :span="8" style="text-align: right"> <el-button type="primary" icon="el-icon-search" size="mini" @click="loading=true;currentPage=1;list()">查询</el-button> <el-button @click="rest" icon="el-icon-refresh" size="mini">重置</el-button> </el-col> </el-row> </el-form> </el-row> </div> <el-main class="ms-container"> <el-table v-loading="loading" ref="multipleTable" height="calc(100% - 68px)" class="ms-table-pagination" border :data="treeList" tooltip-effect="dark" @selection-change="handleSelectionChange"> <template slot="empty"> {{emptyText}} </template> <el-table-column type="selection" :selectable="isChecked" width="40"></el-table-column> <el-table-column label="标题" min-width="150px" align="left" prop="pageTitle"> </el-table-column> <el-table-column label="分类" :formatter="PageTypeFormat" align="left" prop="pageType"> </el-table-column> <el-table-column label="绑定模板" min-width="200px" align="left" prop="pagePath"> </el-table-column> <el-table-column label="路径关键字" min-width="150px" align="left" prop="pageKey"> </el-table-column> <el-table-column label="访问地址" min-width="150px" align="left" > <template slot-scope="scope"> <el-link :underline="false" target="_blank" type="primary" size="medium" :href="location.origin+ms.base+'/'+(scope.row.pageKey.startsWith('people/')?scope.row.pageKey:'mdiyPage/'+scope.row.pageKey)+'.do'"> {{location.origin+ms.base+'/'+(scope.row.pageKey.startsWith('people/')?scope.row.pageKey:'mdiyPage/'+scope.row.pageKey)+'.do'}}</el-link> </template> </el-table-column> <@shiro.hasPermission name="mdiy:page:update"> <el-table-column label="操作" align="center" width="180"> <template slot-scope="scope"> <el-link :underline="false" type="primary" size="medium" @click="save(scope.row.pageId)">编辑</el-link> <@shiro.hasPermission name="mdiy:page:del"> <el-link :underline="false" type="primary" v-if="scope.row.del != 3" @click="del([scope.row])">删除</el-link> </@shiro.hasPermission> </template> </el-table-column> </@shiro.hasPermission> </el-table> <el-pagination background :page-sizes="[5, 10, 20]" layout="total, sizes, prev, pager, next, jumper" :current-page="currentPage" :page-size="pageSize" :total="total" class="ms-pagination" @current-change='currentChange' @size-change="sizeChange"> </el-pagination> </el-main> </div> <#include "/mdiy/page/form.ftl"> </body> </html> <script> var indexVue = new Vue({ el: '#index', data: { treeList: [], //自定义页面列表 selectionList: [], //自定义页面列表选中 total: 0, //总记录数量 pageSize: 10, //页面数量 currentPage: 1, //初始页 mananger: ms.manager, loading: true, emptyText: '', pageTypeOptions: [], //搜索表单 form: { // 自定义页面标题 pageTitle: '', // 分类 pageType: null } }, methods: { //查询列表 list: function() { var that = this; var page = { pageNo: that.currentPage, pageSize: that.pageSize }; var form = JSON.parse(JSON.stringify(that.form)); for (key in form) { if (!form[key]) { delete form[key]; } } history.replaceState({ form: form, page: page, total: that.total }, ""); setTimeout(function () { ms.http.get(ms.manager + "/mdiy/page/list.do", Object.assign({}, that.form, page)).then(function (data) { if (data.result){ if (data.data.total <= 0) { that.loading = false; that.emptyText = '暂无数据'; that.treeList = []; } else { that.emptyText = ''; that.loading = false; that.total = data.data.total; that.treeList = data.data.rows; } } }).catch(function (err) { console.log(err); }); }, 500); }, //自定义页面列表选中 handleSelectionChange: function(val) { this.selectionList = val; }, //删除 del: function(row) { var that = this; that.$confirm('此操作将永久删除所选内容, 是否继续?', '提示', { confirmButtonText: '确定', cancelButtonText: '取消', type: 'warning' }).then(function () { ms.http.post(ms.manager + "/mdiy/page/delete.do", row.length ? row : [row], { headers: { 'Content-Type': 'application/json' } }).then(function (data) { if (data.result) { that.$notify({ type: 'success', message: '删除成功!' }); //删除成功,刷新列表 that.list(); } else { that.$notify({ title: '失败', message: data.msg, type: 'warning' }); } }); }).catch(function () { that.$notify({ type: 'info', message: '已取消删除' }); }); }, //新增 save: function (id) { form.open(id); }, isChecked: function (row) { if (row.del == 3) { return false; } return true; }, //pageSize改变时会触发 sizeChange: function (pagesize) { this.loading = true; this.pageSize = pagesize; this.list(); }, //currentPage改变时会触发 currentChange: function (currentPage) { this.loading = true; this.currentPage = currentPage; this.list(); }, PageTypeFormat: function (row, column, cellValue, index) { var value = cellValue; var data = this.pageTypeOptions.find(function (value) { return value.dictValue == cellValue; }); if (data) { value = data.dictLabel; } return value; }, //获取pageType数据源 pageTypeOptionsGet: function () { var that = this; ms.http.get(ms.base + '/mdiy/dict/list.do', { dictType: '自定义页面类型', pageSize: 99999 }).then(function (data) { if(data.result){ data = data.data; that.pageTypeOptions = data.rows; } }).catch(function (err) { console.log(err); }); }, //重置表单 rest: function () { this.currentPage = 1; this.loading = true; this.$refs.searchForm.resetFields(); this.list(); } }, created: function () { //适配IE无法获取location.origin if (!window.location.origin) { window.location.origin = window.location.protocol + "//" + window.location.hostname + (window.location.port ? ':' + window.location.port: ''); } this.pageTypeOptionsGet(); if (history.hasOwnProperty("state")&&history.state) { this.form = history.state.form; this.total = history.state.total; this.currentPage = history.state.page.pageNo; this.pageSize = history.state.page.pageSize; } this.list(); } }); </script> <style> #index .ms-search{ padding: 20px 10px 0 10px; } </style>