Commit 29cbe3f5 authored by 沈翠玲's avatar 沈翠玲

修复样式问题

parent 4eaefc8e
......@@ -356,7 +356,6 @@
<style>
.line-content-item {
width: 100%;
padding: 0 10px;
height: 300px;
display: flex;
flex-wrap: nowrap;
......
......@@ -26,10 +26,10 @@
<view class="list-bar">
<!-- 新增 -->
<view class="btnbox">
<u-button v-if="getAddShow()" type="success" size="medium" @click="handleAddClick">新增</u-button>
<view class="btnbox" v-if="getAddShow()">
<u-button type="success" size="medium" @click="handleAddClick">新增</u-button>
</view>
<view class="tableListClass">
<view class="tableListClass" :class="{'nobtn': !getAddShow()}">
<!-- style="{ height: this.screenHeight - 280 + 'px' }" -->
<zb-table :columns="tableColumn" :data="qcList" :stripe="true">
<template slot="checkResult" slot-scope="scope">
......@@ -874,7 +874,8 @@ export default {
}
.list-bar {
width: calc(100vw - 130px);
width: calc(100vw);
height: calc(100% - 120rpx);
}
.button-bar {
......@@ -886,6 +887,9 @@ export default {
.tableListClass {
height: calc(100vh - 300rpx);
&.nobtn {
height: 100%;
}
}
.button-frame {
......@@ -952,7 +956,6 @@ export default {
.line-content-item {
width: 100%;
padding: 0 10px;
height: 300px;
display: flex;
flex-wrap: nowrap;
......
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