|
|
|
@ -56,7 +56,10 @@
|
|
|
|
|
</el-button-group>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
<el-table v-loading="loading" :data="list" style="width: 100%" border>
|
|
|
|
|
<el-table v-loading="loading" :data="list" style="width: 100%"
|
|
|
|
|
:default-sort="defaultSort"
|
|
|
|
|
@sort-change="handleSortChange"
|
|
|
|
|
border>
|
|
|
|
|
<el-table-column label="序号" type="index"></el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="UDI码"
|
|
|
|
@ -102,6 +105,8 @@
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="单据日期"
|
|
|
|
|
prop="orderTime"
|
|
|
|
|
:sort-orders="['ascending', 'descending']"
|
|
|
|
|
sortable="custom"
|
|
|
|
|
width="150"
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
|
></el-table-column>
|
|
|
|
@ -144,6 +149,7 @@ export default {
|
|
|
|
|
list: [],
|
|
|
|
|
total: 0,
|
|
|
|
|
loading: false,
|
|
|
|
|
defaultSort: {prop: 'orderTime', order: 'desc'},
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
@ -173,6 +179,17 @@ export default {
|
|
|
|
|
this.invProductDetailQuery.page = val;
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
handleSortChange(column, prop, order) {
|
|
|
|
|
if (column.order === 'descending') {
|
|
|
|
|
this.invProductDetailQuery.sort = 'desc'
|
|
|
|
|
} else {
|
|
|
|
|
this.invProductDetailQuery.sort = 'asc'
|
|
|
|
|
}
|
|
|
|
|
this.invProductDetailQuery.orderBy = column.prop;
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
getList() {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
this.invProductDetailQuery.relId = this.inputQuery.relId;
|
|
|
|
|