新增单据上传时间控制

fengcang
anthonyywj2 3 years ago
parent ea1f6b3e04
commit b20b41d360

@ -1004,7 +1004,7 @@ export default {
this.subFromName = formName;
if (formName === "edit") {
this.subData = data;
this.subData = JSON.parse(JSON.stringify(data));
} else if (formName === "add") {
this.subData = {};
this.subData.parentId = data.code;

@ -54,7 +54,27 @@
<el-descriptions class="margin-top" title="上传至UDI自助平台单据" :column="1" :size="100" style="margin-top: 40px"
border>
<el-descriptions-item>
<template slot="label">
单据时间
</template>
<el-row :gutter="20" class="el-row" type="flex">
<el-col :span="20" class="el-col">
<div>
<span>上传起始时间:&nbsp;</span>
<el-date-picker
type="date"
v-model="configQuery.orderStartTime"
format="yyyy-MM-dd"
value-format="yyyy-MM-dd"
:disabled="configQuery.autoUpload"
placeholder="选择日期">
</el-date-picker>
</div>
</el-col>
</el-row>
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
@ -206,6 +226,7 @@ export default {
orderSyncDlTime: null,
delaySyncTime: null,
busTypes: [],
orderStartTimeL: null,
},
checkedBusTypes: [],
busQuery: {

Loading…
Cancel
Save