This commit is contained in:
2020-06-23 09:00:04 +08:00
parent 28911b6e7c
commit bf5691b68a
4 changed files with 56 additions and 10 deletions

View File

@@ -33,6 +33,14 @@ export default {
}
},
methods: {
addManicureOrder() {
this.$u.api.addManicure({
name: this.name,
time: this.time
}).then((res)=>{
if (res.errCode == 0) {}
})
},
chooseDate(e) {
let time = e.year + '年' + e.month + '月' + e.day + '日' + e.hour + '时' + e.minute + '分'
this.time = time