Commit 6dec8cc6 authored by 沈良进's avatar 沈良进

save

parent a31ca5d9
...@@ -6,6 +6,10 @@ ...@@ -6,6 +6,10 @@
.per_first_menu li{float: left; margin-right: 30px; position: relative; cursor: pointer; background: #fff; color: #999; width: 80px; font-size: 12px; height: 60px; padding: 10px 0; border-radius: 4px; text-align: center;} .per_first_menu li{float: left; margin-right: 30px; position: relative; cursor: pointer; background: #fff; color: #999; width: 80px; font-size: 12px; height: 60px; padding: 10px 0; border-radius: 4px; text-align: center;}
.per_first_menu li.FirsrMenuCked{background: #E95252; color: #f1f1f1;} .per_first_menu li.FirsrMenuCked{background: #E95252; color: #f1f1f1;}
.per_first_menu li i{font-size: 30px; line-height: 35px;} .per_first_menu li i{font-size: 30px; line-height: 35px;}
.per_first_menu-set{overflow: hidden;}
.per_first_menu-set li{float: left; margin-right: 30px; position: relative; cursor: pointer; background: #fff; color: #999; width: 140px; font-size: 12px; height: 80px; padding:0 10px; border-radius: 4px;}
.per_first_menu-set li.FirsrMenuCked{background: #E95252; color: #f1f1f1;}
.per_first_menu-set li i{font-size: 30px;}
.per_detail_menu{width: 100%; height: 300px; padding: 20px; margin: 40px 0; background: #fff; border-radius: 8px;} .per_detail_menu{width: 100%; height: 300px; padding: 20px; margin: 40px 0; background: #fff; border-radius: 8px;}
.per_secondMenu{height: auto; overflow: hidden; margin-bottom: 20px;} .per_secondMenu{height: auto; overflow: hidden; margin-bottom: 20px;}
.per_secondMenu li{float: left; height: 24px; font-size:12px; cursor: pointer; padding: 0 30px; position: relative;} .per_secondMenu li{float: left; height: 24px; font-size:12px; cursor: pointer; padding: 0 30px; position: relative;}
...@@ -47,12 +51,14 @@ ...@@ -47,12 +51,14 @@
</div> </div>
<div class="per_title">功能管理</div> <div class="per_title">功能管理</div>
<div class="per_first_menu"> <div class="per_first_menu-set">
<ul> <ul>
<li v-model="item.IsShow" v-for="(item,index) in actionList" @click="item.IsShow = !item.IsShow;" > <li v-model="item.IsShow" v-for="(item,index) in actionList" @click="item.IsShow = !item.IsShow;" >
<i :class="[fontPub,item.icon]"></i><br/>{{item.ActionName}} <el-checkbox type="checkbox" :value="item.IsShow" v-model="item.IsShow"
<el-checkbox class="per_firstLevelCkbox" type="checkbox" :value="item.IsShow" v-model="item.IsShow"
v-bind:checked="item.IsShow" ></el-checkbox> v-bind:checked="item.IsShow" ></el-checkbox>
<i :class="[fontPub,item.icon]"></i><span>{{item.ActionName}}</span>
<div style="border-bottom: 1px solid #eee"></div>
<span>{{item.ActionCode}}</span>
</li> </li>
<input type="button" value="保存" class="normalBtn per_SaveBtn" @click="saveAction()"/> <input type="button" value="保存" class="normalBtn per_SaveBtn" @click="saveAction()"/>
</ul> </ul>
......
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