Commit d65eac47 authored by lshan's avatar lshan

测试

parent 8b1da259
...@@ -619,7 +619,6 @@ export default Vue.extend({ ...@@ -619,7 +619,6 @@ export default Vue.extend({
modalType: undefined as undefined | eModalType, modalType: undefined as undefined | eModalType,
dataSource: [] as any[], dataSource: [] as any[],
start:'', start:'',
end:'',
}; };
}, },
async mounted() { async mounted() {
...@@ -794,19 +793,20 @@ export default Vue.extend({ ...@@ -794,19 +793,20 @@ export default Vue.extend({
const endm=endDate.getMinutes()<10? '0'+endDate.getMinutes():endDate.getMinutes()+'' const endm=endDate.getMinutes()<10? '0'+endDate.getMinutes():endDate.getMinutes()+''
const start=starh+':'+starm const start=starh+':'+starm
const end=endh+':'+endm const end=endh+':'+endm
this.start=start this.formData.startTime = moment(start,"HH:mm")
this.end=end this.formData.endTime = moment(end,"HH:mm")
this.formData.startTime = moment(this.start,"HH:mm") console.log(typeof start,'start');
this.formData.endTime = moment(this.end,"HH:mm") console.log(end,'end');
console.log(this.formData.startTime,'this.formData.startTime');
console.log(this.start,'this.start');
console.log(startDate,'startDate');
const riqi=moment(startDate,"HH:mm")
console.log(riqi,'riqi');
console.log(startDate,'startDate');
console.log(starh,'starh');
console.log(arr2,'arr2');
console.log(arr2[0],'0');
} }
const ret = await AddressService.getInstance().note(record.id); const ret = await AddressService.getInstance().note(record.id);
if (ret.code === 200) { if (ret.code === 200) {
......
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