|
|
@ -112,18 +112,20 @@ |
|
|
|
width="700px" |
|
|
|
> |
|
|
|
<el-form |
|
|
|
ref="form" |
|
|
|
ref="accountDatelist" |
|
|
|
:inline="true" |
|
|
|
:model="form" |
|
|
|
:model="accountDatelist" |
|
|
|
:rules="rules" |
|
|
|
size="small" |
|
|
|
label-width="120px" |
|
|
|
> |
|
|
|
<el-form-item label="日期" prop="accountDate"> |
|
|
|
<el-form-item label="日期" prop="accountDate" required> |
|
|
|
<el-date-picker |
|
|
|
v-model="accountDatelist.accountDate" |
|
|
|
type="date" |
|
|
|
placeholder="选择日期"> |
|
|
|
clearable |
|
|
|
placeholder="选择日期" |
|
|
|
> |
|
|
|
</el-date-picker> |
|
|
|
</el-form-item> |
|
|
|
</el-form> |
|
|
@ -135,9 +137,7 @@ |
|
|
|
<el-button |
|
|
|
v-loading="formLoading" |
|
|
|
type="primary" |
|
|
|
|
|
|
|
@click="handleCreateBills()" |
|
|
|
|
|
|
|
>确认</el-button |
|
|
|
> |
|
|
|
</div> |
|
|
@ -173,12 +173,14 @@ export default { |
|
|
|
erpMaterialCode: [ |
|
|
|
{ required: true, message: "必须输入!", trigger: "blur" }, |
|
|
|
], |
|
|
|
accountDate: [ |
|
|
|
{ required: true, message: "日期必须输入!", trigger: "blur" }, |
|
|
|
], |
|
|
|
}, |
|
|
|
searchContent: "", // 输入内容 |
|
|
|
customerInfo: { |
|
|
|
parentId: "", |
|
|
|
version: "", |
|
|
|
accountDate: "", |
|
|
|
}, |
|
|
|
form: { |
|
|
|
dicDetailID: "", |
|
|
@ -233,8 +235,8 @@ export default { |
|
|
|
tableHeight: document.documentElement.clientHeight - 230, |
|
|
|
isEdit: false, |
|
|
|
accountDatelist: { |
|
|
|
accountDate:"" |
|
|
|
} |
|
|
|
accountDate: "", |
|
|
|
}, |
|
|
|
}; |
|
|
|
}, |
|
|
|
mounted() { |
|
|
@ -408,7 +410,6 @@ export default { |
|
|
|
.catch(() => { |
|
|
|
this.listLoading = false; |
|
|
|
}); |
|
|
|
|
|
|
|
}, |
|
|
|
/** 刷新列表 */ |
|
|
|
handleHandle(data) { |
|
|
|