...
|
...
|
@@ -21,14 +21,6 @@ |
|
|
:placeholder="filters.skuFactoryCode.holder" :maxlength="9"></Input>
|
|
|
</FilterItem>
|
|
|
|
|
|
<FilterItem :label="filters.status.label">
|
|
|
<Select v-model.trim="filters.status.model">
|
|
|
<Option v-for="option in filters.status.options"
|
|
|
:value="option.value"
|
|
|
:key="option.value">{{option.label}}</Option>
|
|
|
</Select>
|
|
|
</FilterItem>
|
|
|
|
|
|
<FilterItem>
|
|
|
<Button type="primary" @click="getExpress">筛选</Button>
|
|
|
<Button @click="clearFilters">清空条件</Button>
|
...
|
...
|
@@ -87,31 +79,6 @@ |
|
|
holder: '',
|
|
|
fieldSpan: 18
|
|
|
},
|
|
|
status: {
|
|
|
label: '物流状态',
|
|
|
labelSpan: 6,
|
|
|
model: '',
|
|
|
holder: '',
|
|
|
fieldSpan: 18,
|
|
|
options: [
|
|
|
{
|
|
|
value: -1,
|
|
|
label: '全部'
|
|
|
},
|
|
|
{
|
|
|
value: 10,
|
|
|
label: '已发出'
|
|
|
},
|
|
|
{
|
|
|
value: 20,
|
|
|
label: '已收货'
|
|
|
},
|
|
|
{
|
|
|
value: 41,
|
|
|
label: '入库完成'
|
|
|
}
|
|
|
]
|
|
|
}
|
|
|
}
|
|
|
};
|
|
|
},
|
...
|
...
|
@@ -124,7 +91,6 @@ |
|
|
this.filters.expressNumber.model = null;
|
|
|
this.filters.productSkn.model = null;
|
|
|
this.filters.skuFactoryCode.model = null;
|
|
|
this.filters.status.model = -1;
|
|
|
this.pageData.current = 1;
|
|
|
this.pageData.total = 0;
|
|
|
|
...
|
...
|
@@ -134,7 +100,7 @@ |
|
|
let params = {};
|
|
|
|
|
|
if (this.filters.id.model) {
|
|
|
params.id = this.filters.id.model;
|
|
|
params.proReqFormId = this.filters.id.model;
|
|
|
}
|
|
|
|
|
|
if (this.filters.expressNumber.model) {
|
...
|
...
|
@@ -149,10 +115,6 @@ |
|
|
params.skuFactoryCode = this.filters.skuFactoryCode.model;
|
|
|
}
|
|
|
|
|
|
if (this.filters.status.model !== -1) {
|
|
|
params.status = this.filters.status.model;
|
|
|
}
|
|
|
|
|
|
params.pageSize = this.pageData.pageSize;
|
|
|
params.pageNo = this.pageData.current;
|
|
|
|
...
|
...
|
@@ -169,11 +131,14 @@ |
|
|
}
|
|
|
});
|
|
|
},
|
|
|
info(expressId) {
|
|
|
info(data) {
|
|
|
this.$router.push({
|
|
|
name: 'repository.express.info',
|
|
|
params: {
|
|
|
id: expressId
|
|
|
id: data.expressNumber
|
|
|
},
|
|
|
query: {
|
|
|
time: data.createTime
|
|
|
}
|
|
|
});
|
|
|
}
|
...
|
...
|
|