|
@@ -88,10 +88,6 @@
|
|
|
</span>
|
|
|
</div>
|
|
|
<!-- 列表数据 -->
|
|
|
- <div class="blist">
|
|
|
- <boxlist type="xmgl"></boxlist>
|
|
|
- </div>
|
|
|
-
|
|
|
</el-tab-pane>
|
|
|
<el-tab-pane name="second">
|
|
|
<div slot="label" class="tab flexc">
|
|
@@ -132,6 +128,9 @@
|
|
|
<el-button type="primary" plain size="small">创建</el-button>
|
|
|
<el-button type="success" class="cbbtn" size="small">审核</el-button>
|
|
|
</div>
|
|
|
+ <div class="blist">
|
|
|
+ <boxlist type="xmgl" :datalist="num"></boxlist>
|
|
|
+ </div>
|
|
|
<Pagination
|
|
|
v-show="total>0"
|
|
|
:total="total"
|
|
@@ -199,6 +198,7 @@ export default {
|
|
|
]
|
|
|
},
|
|
|
tableMaxHeight:380,
|
|
|
+ num:5,
|
|
|
value:'',
|
|
|
options: [{
|
|
|
value: '选项1',
|
|
@@ -233,7 +233,15 @@ export default {
|
|
|
})
|
|
|
},
|
|
|
handleClick(){
|
|
|
-
|
|
|
+ if(this.activeName == 'first'){
|
|
|
+ this.num = 5
|
|
|
+ }else if(this.activeName == 'second'){
|
|
|
+ this.num = 4
|
|
|
+ }else if(this.activeName == 'third'){
|
|
|
+ this.num = 3
|
|
|
+ }else if(this.activeName == 'fourth'){
|
|
|
+ this.num = 2
|
|
|
+ }
|
|
|
},
|
|
|
// 取消按钮
|
|
|
cancel() {
|