城阳车管所项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

118 lines
2.8 KiB

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>文章</title>
<#include "../../include/head-file.ftl">
<#include "../../include/increase-search.ftl">
</head>
<body style="overflow: hidden">
<div id="index" v-cloak>
<!--左侧-->
<el-container class="index-menu">
7 years ago
<div class="left-tree">
<el-tree :indent="5" v-loading="loading" :expand-on-click-node="false" default-expand-all :empty-text="emptyText" :data="treeData" :props="defaultProps" @node-click="handleNodeClick" style="padding: 10px;height: 100%;"></el-tree>
</div>
<iframe :src="action" class="ms-iframe-style">
</iframe>
</el-container>
</div>
</body>
</html>
<script>
var indexVue = new Vue({
el: "#index",
data: {
action:"", //跳转页面
7 years ago
defaultProps: {
children: 'children',
label: 'categoryTitle'
},
treeData:[],
loading:true,
emptyText:'',
},
methods:{
7 years ago
handleNodeClick: function(data){
7 years ago
if(data.categoryType == '1'){
this.action = ms.manager +"/cms/content/main.do?categoryId="+data.id;
} else if(data.categoryType == '2'){
this.action = ms.manager +"/cms/content/form.do?categoryId="+data.id;
} else{
this.action = ms.manager +"/cms/content/main.do";
}
7 years ago
},
treeList: function(){
var that = this;
this.loadState = false;
this.loading = true;
ms.http.get(ms.manager+"/cms/category/list.do").then(
function(res) {
if(that.loadState){
that.loading = false;
}else {
that.loadState = true
}
if (!res.result||res.data.total <= 0) {
that.emptyText = '暂无数据';
that.treeData = [];
} else {
that.emptyText = '';
that.treeData = ms.util.treeData(res.data.rows,'id','categoryId','children');
that.treeData = [{
id:0,
categoryTitle:'全部',
children: that.treeData,
}]
}
}).catch(function(err) {
console.log(err);
});
setTimeout(()=>{
if(that.loadState){
that.loading = false;
}else {
that.loadState = true
}
}, 500);
},
},
mounted(){
this.action = ms.manager +"/cms/content/main.do";
7 years ago
this.treeList();
}
})
</script>
<style>
#index .index-menu {
min-height: 100vh;
min-width: 140px;
}
#index .ms-iframe-style {
width: 100%;
border: 0;
}
#index .index-menu .el-main {
padding: 0;
}
#index .left-tree{
min-height: 100vh;
background: #fff;
width: 180px;
border-right: solid 1px #e6e6e6;
}
#index .index-menu .el-main .index-menu-menu .el-menu-item {
min-width: 140px;
width: 100%;
}
#index .index-menu .el-main .index-material-item {
min-width: 100% !important
}
#index .index-menu-menu-item , .el-submenu__title {
height: 40px !important;
line-height: 46px !important;
}
</style>