Commit f9fc7b62 authored by 黄奎's avatar 黄奎

页面修改

parent 215d3627
......@@ -603,16 +603,18 @@
},
//跳转至最后一步
LastStep() {
this.apipost("/api/Tenant/SetTenantSecond", this.msg2, res => {
if (res.data.resultCode == 1) {
this.StepIndex = 3;
} else {
this.Info(res.data.message);
}
})
},
//跳转登录
goLogin() {
this.$router.push({
name: 'login',
query: {
blank: "y"
}
});
this.CommonJump('login')
},
},
mounted() {
......@@ -623,4 +625,5 @@
}
}
};
</script>
<style>
.menuDiv{
padding:20px;
.menuDiv {
padding: 20px;
}
.menuDiv .query-box {
width: 100%;
padding: 0 0 20px;
......@@ -9,6 +10,7 @@
position: relative;
text-align: right;
}
.menuDiv .normalBtn {
color: #fff;
padding: 0 15px;
......@@ -20,6 +22,7 @@
margin-left: 10px;
outline: none;
}
</style>
<template>
<div class="menuDiv">
......@@ -44,14 +47,8 @@
<td>正常</td>
</tr>
</table>
<el-pagination background
@current-change="handleCurrentChange"
:current-page.sync="currentPage"
v-if="dataList.length>0"
layout="total,prev, pager, next, jumper"
:page-size="msg.pageSize"
:total="total"
>
<el-pagination background @current-change="handleCurrentChange" :current-page.sync="currentPage"
v-if="dataList.length>0" layout="total,prev, pager, next, jumper" :page-size="msg.pageSize" :total="total">
</el-pagination>
<!-- 修改密码 -->
......@@ -64,7 +61,11 @@
<el-input type="text" style="width:234px" size="small" maxlength="25" v-model="addMsg.MenuUrl"></el-input>
</el-form-item>
<el-form-item label="菜单等级" prop="MenuLevel">
<el-input type="text" style="width:234px" size="small" maxlength="25" v-model="addMsg.MenuLevel"></el-input>
<el-select style="width:234px;" size="small" v-model="addMsg.MenuLevel">
<el-option label="一级" :key="1" :value="1"></el-option>
<el-option label="二级" :key="2" :value="2"></el-option>
<el-option label="三级" :key="3" :value="3"></el-option>
</el-select>
</el-form-item>
<el-form-item label="父级菜单编号" prop="ParentId">
<el-select style="width:234px;" size="small" v-model="addMsg.ParentId">
......@@ -88,24 +89,24 @@
export default {
data() {
return {
loading:false,
menuDialog:false,
loading: false,
menuDialog: false,
currentPage: 1,
total: 0,
msg: {
pageIndex:1,
pageSize:20
pageIndex: 1,
pageSize: 20
},
dataList:[],
addMsg:{
MenuName:'',
MenuUrl:'',
MenuLevel:0,
ParentId:0,
IconClass:'',
Status:0,
dataList: [],
addMsg: {
MenuName: '',
MenuUrl: '',
MenuLevel: 0,
ParentId: 0,
IconClass: '',
Status: 0,
},
menurules:{
menurules: {
}
};
......@@ -119,15 +120,14 @@
this.getList();
},
//获取数据
getList(){
getList() {
},
addMenu(){
addMenu() {
}
},
mounted() {
this.getList();
}
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment