Commit c86358dc authored by zhengke's avatar zhengke

修改少价管理样式

parent eba381c7
...@@ -10,6 +10,9 @@ ...@@ -10,6 +10,9 @@
border-left: 1px solid #d1d1d1; border-left: 1px solid #d1d1d1;
border-right: 1px solid #d1d1d1; border-right: 1px solid #d1d1d1;
font-size: 14px; font-size: 14px;
/* width:100%; */
min-width: 5752px;
padding-bottom: 5px;
} }
.LP_table tr { .LP_table tr {
...@@ -21,8 +24,8 @@ ...@@ -21,8 +24,8 @@
border-right: 1px solid #d1d1d1; border-right: 1px solid #d1d1d1;
position: relative; position: relative;
background-color: #E6E6E6; background-color: #E6E6E6;
width:250px;
} }
th[class=first]:before { th[class=first]:before {
content: ""; content: "";
position: absolute; position: absolute;
...@@ -66,10 +69,16 @@ ...@@ -66,10 +69,16 @@
<template> <template>
<div> <div>
<div class="query-box">
<ul>
<li>
<input type='button' class="normalBtn" @click="AddItem()" value="新增"></input>
</li>
</ul>
</div>
<div class="LM_mainDiv"> <div class="LM_mainDiv">
<!--保存--> <!--保存-->
<table border="0" cellspacing="0" cellpadding="0" class="LP_table" v-loading="this.loading">
<table border="0" cellspacing="0" cellpadding="0" class="LP_table">
<tr> <tr>
<th class="first"> <th class="first">
<span class="Lp_role">角色</span> <span class="Lp_role">角色</span>
...@@ -102,13 +111,6 @@ ...@@ -102,13 +111,6 @@
<input type='button' class="normalBtn" @click="RemoveItem(item,index)" value="删除"></input> <input type='button' class="normalBtn" @click="RemoveItem(item,index)" value="删除"></input>
</td> </td>
</tr> </tr>
<tfoot>
<tr>
<td :colspan="1+BranchList.length">
<input type='button' class="normalBtn" @click="AddItem()" value="新增"></input>
</td>
</tr>
</tfoot>
</table> </table>
</div> </div>
</div> </div>
...@@ -125,7 +127,8 @@ ...@@ -125,7 +127,8 @@
}, },
PageData: [], PageData: [],
//角色列表 //角色列表
RoleList: [] RoleList: [],
loading:false
}; };
}, },
methods: { methods: {
...@@ -166,9 +169,11 @@ ...@@ -166,9 +169,11 @@
}, },
//获取列表 //获取列表
GetList() { GetList() {
this.loading = true;
this.apipost( this.apipost(
"lessprice_get_GetPageList", this.qMsg, "lessprice_get_GetPageList", this.qMsg,
res => { res => {
this.loading = false;
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
this.BranchList = res.data.data.branchList; this.BranchList = res.data.data.branchList;
this.PageData = res.data.data.DataList.pageData; this.PageData = res.data.data.DataList.pageData;
......
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