Commit 71d8727c authored by 黄奎's avatar 黄奎

页面修改

parent c7040a02
......@@ -23,14 +23,14 @@
<template>
<div class="menuDiv">
<div class="query-box">
名称: <el-input type="text" style="width:234px;" size="small" v-model="msg.MenuName" clearable @keyup.enter.native="msg.pageIndex=1,getPageList()"></el-input>
等级: <el-select style="width:234px;" size="small" v-model="msg.MenuLevel">
名称: <el-input type="text" style="width:234px;" size="small" v-model="msg.MenuName" clearable
@keyup.enter.native="msg.pageIndex=1,getPageList()" @clear="msg.pageIndex=1,getPageList()"></el-input>
等级: <el-select style="width:234px;" size="small" v-model="msg.MenuLevel" @change="msg.pageIndex=1,getPageList()">
<el-option label="全部" :key="0" :value="0"></el-option>
<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>
<button type="button" class="normalBtn" @click="msg.pageIndex=1,getPageList()">查询</button>
<button type="button" class="normalBtn" @click="menuDialog=true,resetMsg()">新增</button>
<button type="button" class="normalBtn" @click="CommonJump('sysmenu',{})">设置商城菜单</button>
</div>
......
<style>
.minimenuDiv .query-box {
width: 100%;
padding: 0 0 20px;
......@@ -24,17 +23,16 @@
<div class="minimenuDiv">
<div class="query-box">
名称: <el-input type="text" style="width:234px;" size="small" v-model="msg.PageName" clearable
@keyup.enter.native="msg.pageIndex=1,getPageList()"></el-input>
类型: <el-select style="width:234px;" size="small" v-model="msg.QPageType">
@keyup.enter.native="msg.pageIndex=1,getPageList()" @clear="msg.pageIndex=1,getPageList()"></el-input>
类型: <el-select style="width:234px;" size="small" v-model="msg.QPageType" @change="msg.pageIndex=1,getPageList()">
<el-option label="全部" :key="0" :value="0"></el-option>
<el-option v-for="item in pageType" :key="item.Id" :value="item.Id" :label="item.Name"></el-option>
</el-select>
状态: <el-select style="width:234px;" size="small" v-model="msg.Status">
状态: <el-select style="width:234px;" size="small" v-model="msg.Status" @change="msg.pageIndex=1,getPageList()">
<el-option label="全部" :key="-1" :value="-1"></el-option>
<el-option :key="0" :value="0" label="正常"></el-option>
<el-option :key="1" :value="1" label="禁用"></el-option>
</el-select>
<button type="button" class="normalBtn" @click="msg.pageIndex=1,getPageList()">查询</button>
<button type="button" class="normalBtn" @click="menuDialog=true,resetMsg()">新增</button>
<button type="button" class="normalBtn" @click="CommonJump('setminipage',{})">设置小程序菜单</button>
</div>
......@@ -267,4 +265,4 @@
}
};
</script>
\ No newline at end of file
</script>
......@@ -23,8 +23,7 @@
<div class="pluglistDiv">
<div class="query-box">
名称: <el-input type="text" style="width:234px;" size="small" v-model="msg.PlugName" clearable
@keyup.enter.native="msg.pageIndex=1,getPageList()"></el-input>
<button type="button" class="normalBtn" @click="msg.pageIndex=1,getPageList()">查询</button>
@keyup.enter.native="msg.pageIndex=1,getPageList()" @clear="msg.pageIndex=1,getPageList()"></el-input>
<button type="button" class="normalBtn" @click="marketingPlugDialog=true,resetMsg()">新增</button>
<button type="button" class="normalBtn" @click="CommonJump('setmarketingplug',{})">设置营销插件</button>
</div>
......
<style>
.setmarketingplugDiv {
padding: 20px;
}
.setmarketingplugDiv .query-box {
width: 100%;
padding: 0 0 20px;
......@@ -32,7 +28,7 @@
</div>
<table class="commonTable" border="0" cellspacing="0" cellpadding="0" v-loading="loading">
<tr>
<th>插件类型</th>
<th style="width:200px">插件类型</th>
<th>插件名称</th>
</tr>
<tr v-for="(item,index) in dataList" :key="index">
......
<style>
.minimenuDiv {
padding: 20px;
}
.minimenuDiv .query-box {
width: 100%;
padding: 0 0 20px;
......@@ -32,7 +28,7 @@
</div>
<table class="commonTable" border="0" cellspacing="0" cellpadding="0" v-loading="loading">
<tr>
<th>菜单类型</th>
<th style="width:200px;">菜单类型</th>
<th>菜单</th>
</tr>
<tr v-for="(item,index) in dataList" :key="index">
......
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