| | |
| | | title: "编号", |
| | | key: "code", |
| | | minWidth: 120, |
| | | sortable: true, |
| | | tooltip:true, |
| | | render: (h, params) => { |
| | | return h("div",params.row.code=="undefined" ? '':params.row.code); |
| | | } |
| | |
| | | @on-sort-change="changeSort" |
| | | @on-selection-change="changeSelect" |
| | | ></Table> |
| | | <!-- |
| | | <Row type="flex" justify="end" class="page"> |
| | | <Page |
| | | :current="searchForm.pageNumber" |
| | |
| | | show-elevator |
| | | show-sizer |
| | | ></Page> |
| | | |
| | | </Row> |
| | | --> |
| | | </Card> |
| | | |
| | | <!-- 编辑 --> |
| | |
| | | this.loading = false; |
| | | if (res.success) { |
| | | this.data = res.result; |
| | | this.total = res.result.total; |
| | | this.total = res.result.length; |
| | | } |
| | | }); |
| | | }, |