Commit b0e05ab8 by lichengming

修改了备样管理

parent 2ce4eb9e
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
</Col> </Col>
<!-- 表格 --> <!-- 表格 -->
<Col span="24"> <Col span="24">
<PTVXETable ref="pageTable" :table-height="tableHeight" :loading="true" <PTVXETableHeight ref="pageTable" :table-height="tableHeight" :loading="true"
:get-page="getPage" :icon-msg="iconMsg" @on-result-change="_tableResultChange"> :get-page="getPage" :icon-msg="iconMsg" @on-result-change="_tableResultChange">
<vxe-table-column <vxe-table-column
v-for="item in pageColumns" v-for="item in pageColumns"
...@@ -43,7 +43,7 @@ ...@@ -43,7 +43,7 @@
<span v-else>{{scope.row[item.key]}}</span> <span v-else>{{scope.row[item.key]}}</span>
</template> </template>
</vxe-table-column> </vxe-table-column>
</PTVXETable> </PTVXETableHeight>
</Col> </Col>
</Row> </Row>
</div> </div>
...@@ -106,9 +106,9 @@ export default { ...@@ -106,9 +106,9 @@ export default {
computed: { computed: {
tableHeight: function() { tableHeight: function() {
if (this.searchOpen) { if (this.searchOpen) {
return this.$tableHeight('tabSearchTwo') return this.$tableHeight('', 250)
} else { } else {
return this.$tableHeight('tabNoSearch') return this.$tableHeight('', 210)
} }
} }
}, },
......
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