Commit 4dc08bf1 by WF1020

litopn开证日期初始值修改

parent 0e837c76
......@@ -629,11 +629,14 @@ export default {
});
}
},
handleChange(val) {
console.log(val);
},
},
created: function () {},
created: function () {
var aData = new Date();
console.log(aData) //Wed Aug 21 2023 10:00:58 GMT+0800 (中国标准时间)
this.model.lidgrp.rec.opndat =
aData.getFullYear() + "-" + (aData.getMonth() + 1) + "-" + aData.getDate();
console.log(this.model.lidgrp.rec.opndat) //2019-8-20
},
watch: {
"model.lidgrp.rec.apprul": {
immediate: true,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment