|
@@ -16,7 +16,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="view-dataType-table">
|
|
|
- <LTable ref="table" @selection-change="selection" :defaultFetch="false" :fetch="fetch" :columns="columns" :dataSource="tableData" :options="options" :pagination="tableRequset"></LTable>
|
|
|
+ <LTable ref="table" @selection-change="selection" :defaultFetch="false" :fetch="fetch" :columns="columns" :dataSource="tableData" :options="options"></LTable>
|
|
|
</div>
|
|
|
<!-- 添加或修改飞机构型对话框 -->
|
|
|
<el-dialog :title="dialogTitle" :visible.sync="dialogVisible" width="600px" :before-close="handleClose">
|
|
@@ -174,7 +174,7 @@ export default {
|
|
|
tableRequset: {
|
|
|
total: 0,
|
|
|
pageIndex: 1,
|
|
|
- pageSize: 10,
|
|
|
+ pageSize: 20,
|
|
|
searchValue: ''
|
|
|
},
|
|
|
form: {
|
|
@@ -272,9 +272,9 @@ export default {
|
|
|
|
|
|
async getAirConfigurationAPI(params) {
|
|
|
if (this.$refs.table) this.$refs.table.clearSelection()
|
|
|
- const { keyWord } = this
|
|
|
- const { pageSize, pageIndex } = this.tableRequset
|
|
|
- const { data, code } = await getAirConfiguration({ pageSize, pageNum: pageIndex, ...params })
|
|
|
+ // const { keyWord } = this
|
|
|
+ // const { pageSize, pageIndex } = this.tableRequset
|
|
|
+ const { data, code } = await getAirConfiguration({ ...params })
|
|
|
if (code === 200) {
|
|
|
this.tableData = []
|
|
|
if (!(this.currentNode.type == 1 && this.currentNode.children.length == 0)) {
|