|
|
|
@ -8,9 +8,11 @@
|
|
|
|
|
<view class="right"></view>
|
|
|
|
|
</view>
|
|
|
|
|
<view>
|
|
|
|
|
<!-- 订单号 -->
|
|
|
|
|
<u-form-item :label="$t('message.Warehouse_No')" prop="prdOrder" style="background: white; border-radius: 5px">
|
|
|
|
|
<u-search :placeholder="$t('message.po_PleaseInput')" v-model.trim="prdOrderFuzzy" :show-action="false"> </u-search>
|
|
|
|
|
</u-form-item>
|
|
|
|
|
<!-- 物料号 -->
|
|
|
|
|
<u-form-item :label="$t('message.Material_No')" style="background: white; border-radius: 5px; margin-top: 10rpx">
|
|
|
|
|
<u-search :placeholder="$t('message.po_PleaseInput')" v-model.trim="matCodeFuzzy" :show-action="false"> </u-search>
|
|
|
|
|
</u-form-item>
|
|
|
|
@ -119,7 +121,7 @@ export default class returningDom extends BasePage {
|
|
|
|
|
var currentdate = year + seperator1 + month + seperator1 + strDate;
|
|
|
|
|
return currentdate;
|
|
|
|
|
}
|
|
|
|
|
//进入该页面后执行
|
|
|
|
|
//进入该页面后立即执行
|
|
|
|
|
async onReady() {
|
|
|
|
|
this.startMobile = this.getNowFormatDate();
|
|
|
|
|
this.endMobile = this.getNowFormatDate();
|
|
|
|
@ -132,11 +134,13 @@ export default class returningDom extends BasePage {
|
|
|
|
|
await this.onSubmit();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// query操作
|
|
|
|
|
async onSubmit() {
|
|
|
|
|
if (this.startMobile == '' || this.endMobile == '') {
|
|
|
|
|
this.customToast(this.$t('message.time') as string);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
//查询条件
|
|
|
|
|
let time = {
|
|
|
|
|
requireDateMin: this.startMobile,
|
|
|
|
|
requireDateMax: this.endMobile,
|
|
|
|
|