Blame view

ant-design-vue-jeecg/src/views/jeecg/JVxeDemo/layout-demo/Template4.vue 11.4 KB
肖超群 authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<template>
  <a-card :bordered="false">

    <a-row :gutter="8">
      <a-col :span="12">
        <!-- 左上父 -->
        <j-vxe-table
          toolbar
          row-number
          row-selection
          click-select-row
          highlight-current-row
          :radio-config="{highlight: false}"
          :checkbox-config="{highlight: false}"
          :height="340"
          :loading="table1.loading"
          :columns="table1.columns"
          :dataSource="table1.dataSource"
          :pagination="table1.pagination"
          style="margin-bottom: 8px;"
          @pageChange="handleTable1PageChange"
          @selectRowChange="handleTable1SelectRowChange"
        />
        <!-- 左下子 -->
        <j-vxe-table
          toolbar
          row-number
          row-selection
          click-select-row
          :height="350"
          :loading="table2.loading"
          :columns="table2.columns"
          :dataSource="table2.dataSource"
          :pagination="table2.pagination"
          @pageChange="handleTable2PageChange"
        />
      </a-col>
      <!-- 左侧父选择的数据展示在这里 -->
      <a-col :span="12">
        <!-- 右上父 -->
        <j-vxe-table
          row-number
          row-selection
          click-select-row
          highlight-current-row
          :radio-config="{highlight: false}"
          :checkbox-config="{highlight: false}"
          :height="340"
          :columns="table1.columns"
          :dataSource="table1.selectedRows"
          style="margin: 40px 0 8px;"
          @selectRowChange="handleTable3SelectRowChange"
        />
        <!-- 右下子 -->
        <j-vxe-table
          toolbar
          row-number
          row-selection
          click-select-row
          :height="350"
          :loading="table4.loading"
          :columns="table4.columns"
          :dataSource="table4.dataSource"
          :pagination="table4.pagination"
          style="margin: 48px 0 0;"
        />
      </a-col>
    </a-row>

  </a-card>
</template>

<script>
肖超群 authored
74
75
import {getAction} from '@api/manage'
import {JVXETypes} from '@/components/jeecg/JVxeTable'
肖超群 authored
76
肖超群 authored
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
export default {
  name: 'Template4',
  data() {
    return {
      table1: {
        // 是否正在加载
        loading: false,
        // 分页器参数
        pagination: {
          // 当前页码
          current: 1,
          // 每页的条数
          pageSize: 200,
          // 可切换的条数
          pageSizeOptions: ['10', '20', '30', '100', '200'],
          // 数据总数(目前并不知道真实的总数,所以先填写0,在后台查出来后再赋值)
          total: 0,
肖超群 authored
94
        },
肖超群 authored
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
        // 最后选中的行
        lastRow: null,
        // 选择的行
        selectedRows: [],
        // 数据源,控制表格的数据
        dataSource: [],
        // 列配置,控制表格显示的列
        columns: [
          {key: 'num', title: '序号', width: '80px'},
          {
            // 字段key,跟后台数据的字段名匹配
            key: 'ship_name',
            // 列的标题
            title: '船名',
            // 列的宽度
            width: '180px',
            // 如果加上了该属性,就代表当前单元格是可编辑的,type就是表单的类型,input就是简单的输入框
            type: JVXETypes.input
          },
          {key: 'call', title: '呼叫', width: '80px', type: JVXETypes.input},
          {key: 'len', title: '长', width: '80px', type: JVXETypes.input},
          {key: 'ton', title: '吨', width: '120px', type: JVXETypes.input},
          {key: 'payer', title: '付款方', width: '120px', type: JVXETypes.input},
          {key: 'count', title: '数', width: '40px'},
          {
            key: 'company',
            title: '公司',
            // 最小宽度,与宽度不同的是,这个不是固定的宽度,如果表格有多余的空间,会平均分配给设置了 minWidth 的列
            // 如果要做占满表格的列可以这么写
            minWidth: '180px',
            type: JVXETypes.input
          },
          {key: 'trend', title: '动向', width: '120px', type: JVXETypes.input},
        ],
肖超群 authored
129
      },
肖超群 authored
130
131
132
133
134
135
136
137
138
139
140
141
142
143
      // 子级表的配置信息 (配置和主表的完全一致,就不写冗余的注释了)
      table2: {
        loading: false,
        pagination: {current: 1, pageSize: 200, pageSizeOptions: ['100', '200'], total: 0},
        selectedRows: [],
        dataSource: [],
        columns: [
          {key: 'dd_num', title: '调度序号', width: '120px'},
          {key: 'tug', title: '拖轮', width: '180px', type: JVXETypes.input},
          {key: 'work_start_time', title: '作业开始时间', width: '180px', type: JVXETypes.input},
          {key: 'work_stop_time', title: '作业结束时间', width: '180px', type: JVXETypes.input},
          {key: 'type', title: '船舶分类', width: '120px', type: JVXETypes.input},
          {key: 'port_area', title: '所属港区', width: '120px', type: JVXETypes.input},
        ],
肖超群 authored
144
      },
肖超群 authored
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
      table3: {
        // 最后选中的行
        lastRow: null,
        // 选择的行
        selectedRows: [],
      },
      table4: {
        loading: false,
        pagination: {current: 1, pageSize: 200, pageSizeOptions: ['100', '200'], total: 0},
        selectedRows: [],
        dataSource: [],
        columns: [
          {key: 'dd_num', title: '调度序号', width: '120px'},
          {key: 'tug', title: '拖轮', width: '180px', type: JVXETypes.input},
          {key: 'work_start_time', title: '作业开始时间', width: '180px', type: JVXETypes.input},
          {key: 'work_stop_time', title: '作业结束时间', width: '180px', type: JVXETypes.input},
          {key: 'type', title: '船舶分类', width: '120px', type: JVXETypes.input},
          {key: 'port_area', title: '所属港区', width: '120px', type: JVXETypes.input},
        ],
      },
      // 查询url地址
      url: {
        getData: '/mock/vxe/getData',
      },
    }
  },
  // 监听器
  watch: {
    // 监听table1 左上【主表】选择的数据发生了变化
    ['table1.lastRow']() {
      this.loadTable2Data()
肖超群 authored
176
    },
肖超群 authored
177
178
179
    // 监听table3 右上【主表】选择的数据发生了变化
    ['table3.lastRow']() {
      this.loadTable4Data()
肖超群 authored
180
181
    },
肖超群 authored
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
  },
  created() {
    this.loadTable1Data()
  },
  methods: {

    // 加载table1左上【主表】的数据
    loadTable1Data() {
      // 封装查询条件
      let formData = {
        pageNo: this.table1.pagination.current,
        pageSize: this.table1.pagination.pageSize
      }
      // 调用查询数据接口
      this.table1.loading = true
      getAction(this.url.getData, formData).then(res => {
        if (res.success) {
          // 后台查询回来的 total,数据总数量
          this.table1.pagination.total = res.result.total
          // 将查询的数据赋值给 dataSource
          this.table1.dataSource = res.result.records
          // 重置选择
          this.table1.selectedRows = []
        } else {
          this.$error({title: '主表查询失败', content: res.message})
肖超群 authored
207
        }
肖超群 authored
208
209
210
211
212
      }).finally(() => {
        // 这里是无论成功或失败都会执行的方法,在这里关闭loading
        this.table1.loading = false
      })
    },
肖超群 authored
213
214
肖超群 authored
215
216
217
218
219
220
221
222
    // 当table1左上【主表】分页参数变化时触发的事件
    handleTable1PageChange(event) {
      // 重新赋值
      this.table1.pagination.current = event.current
      this.table1.pagination.pageSize = event.pageSize
      // 查询数据
      this.loadTable1Data()
    },
肖超群 authored
223
224
肖超群 authored
225
226
227
228
    // table1左上【主表】当选择的行变化时触发的事件
    handleTable1SelectRowChange(event) {
      this.handleTableSelectRowChange(this.table1, event)
    },
肖超群 authored
229
230
肖超群 authored
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
    // 加载table2左下【子表】的数据,根据主表的id进行查询
    loadTable2Data() {
      // 如果主表没有选择,则不查询
      let selectedRows = this.table1.selectedRows
      if (!selectedRows || selectedRows.length === 0) {
        this.table2.pagination.total = 0
        this.table2.dataSource = []
        this.table2.selectedRows = []
        return
      } else if (this.table1.lastRow == null) {
        this.table1.lastRow = selectedRows[selectedRows.length - 1]
      }
      let formData = {
        parentId: this.table1.lastRow.id,
        pageNo: this.table2.pagination.current,
        pageSize: this.table2.pagination.pageSize
      }
      this.table2.loading = true
      getAction(this.url.getData, formData).then(res => {
        if (res.success) {
          this.table2.pagination.total = res.result.total
          this.table2.dataSource = res.result.records
肖超群 authored
253
          this.table2.selectedRows = []
肖超群 authored
254
255
        } else {
          this.$error({title: '子表查询失败', content: res.message})
肖超群 authored
256
        }
肖超群 authored
257
258
259
260
      }).finally(() => {
        this.table2.loading = false
      })
    },
肖超群 authored
261
肖超群 authored
262
263
264
265
266
267
268
269
    // 当table2左下【子表】分页参数变化时触发的事件
    handleTable2PageChange(event) {
      // 重新赋值
      this.table2.pagination.current = event.current
      this.table2.pagination.pageSize = event.pageSize
      // 查询数据
      this.loadTable2Data()
    },
肖超群 authored
270
271
肖超群 authored
272
273
274
275
    // table3右上【主表】当选择的行变化时触发的事件
    handleTable3SelectRowChange(event) {
      this.handleTableSelectRowChange(this.table3, event)
    },
肖超群 authored
276
277
肖超群 authored
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
    // 加载table4右下【子表】的数据,根据主表的id进行查询
    loadTable4Data() {
      let parentIds = []
      // 如果主表没有选择,则不查询
      let selectedRows = this.table3.selectedRows
      if (!selectedRows || selectedRows.length === 0) {
        this.table4.pagination.total = 0
        this.table4.dataSource = []
        this.table4.selectedRows = []
        return
      } else if (this.table3.lastRow == null) {
        this.table3.lastRow = selectedRows[selectedRows.length - 1]
      }
      let formData = {
        parentId: this.table3.lastRow.id,
        pageNo: this.table4.pagination.current,
        pageSize: this.table4.pagination.pageSize
      }
      this.table4.loading = true
      getAction(this.url.getData, formData).then(res => {
        if (res.success) {
          this.table4.pagination.total = res.result.total
          this.table4.dataSource = res.result.records
肖超群 authored
301
          this.table4.selectedRows = []
肖超群 authored
302
303
        } else {
          this.$error({title: '子表查询失败', content: res.message})
肖超群 authored
304
        }
肖超群 authored
305
306
307
308
      }).finally(() => {
        this.table4.loading = false
      })
    },
肖超群 authored
309
310
肖超群 authored
311
312
313
314
315
316
317
318
    // 当table4右下【子表】分页参数变化时触发的事件
    handleTable4PageChange(event) {
      // 重新赋值
      this.table4.pagination.current = event.current
      this.table4.pagination.pageSize = event.pageSize
      // 查询数据
      this.loadTable4Data()
    },
肖超群 authored
319
肖超群 authored
320
321
322
323
324
325
326
327
328
329
330
331
    /** 公共方法:处理表格选中变化事件 */
    handleTableSelectRowChange(table, event) {
      let {row, action, selectedRows, $table} = event
      // 获取最后一个选中的
      let lastSelected = selectedRows[selectedRows.length - 1]
      if (action === 'selected') {
        table.lastRow = row
      } else if (action === 'selected-all') {
        // 取消全选
        if (selectedRows.length === 0) {
          table.lastRow = null
        } else if (!table.lastRow) {
肖超群 authored
332
333
          table.lastRow = lastSelected
        }
肖超群 authored
334
335
336
337
338
339
      } else if (action === 'unselected' && row === table.lastRow) {
        table.lastRow = lastSelected
      }
      $table.setCurrentRow(table.lastRow)
      table.selectedRows = selectedRows
    },
肖超群 authored
340
341

  }
肖超群 authored
342
}
肖超群 authored
343
344
345
346
347
</script>

<style scoped>

</style>