<u-datetime-picker :show="newshow" v-model="value1" mode="datetime" @confirm="confirmData"></u-datetime-picker>
value1: Number(new Date()),
async confirmData(e) {
let timeValue = await uni.$u.timeFormat(e.value, 'yyyy-mm-dd hh:MM');
this.startTime = timeValue;
console.log(this.startTime, '展示时间');
this.newshow = false;
},