Merge remote-tracking branch 'origin/dev' into dev

This commit is contained in:
aixianling
2022-03-15 15:00:21 +08:00
2 changed files with 20 additions and 4 deletions

View File

@@ -19,7 +19,7 @@
<u-form-item label="走访时间" prop="visitTime" required :right-icon="id ? '' : 'arrow-right'" class="realitys"> <u-form-item label="走访时间" prop="visitTime" required :right-icon="id ? '' : 'arrow-right'" class="realitys">
<u-input v-model="forms.visitTime" disabled placeholder="请选择走访时间" @click="showVisitTime = true" /> <u-input v-model="forms.visitTime" disabled placeholder="请选择走访时间" @click="showVisitTime = true" />
<u-calendar v-model="showVisitTime" mode="date" @change="change"></u-calendar> <u-picker v-model="showVisitTime" :params="params" mode="time" @confirm="change"></u-picker>
</u-form-item> </u-form-item>
<div class="line"></div> <div class="line"></div>
@@ -93,6 +93,14 @@ export default {
name: '', name: '',
optionId: '', optionId: '',
showVisitTime: false, showVisitTime: false,
params: {
year: true,
month: true,
day: true,
hour: true,
minute: true,
second: true,
},
} }
}, },
computed: { ...mapState(['user']) }, computed: { ...mapState(['user']) },
@@ -206,7 +214,7 @@ export default {
}, },
change(e) { change(e) {
this.forms.visitTime = e.result this.forms.visitTime = e.year + '-' + e.month + '-' + e.day + ' ' + e.hour + '-' + e.minute + '-' + e.second
}, },
realityStstus(e) { realityStstus(e) {

View File

@@ -12,7 +12,7 @@
<u-form-item label="走访时间" prop="visitTime" required :right-icon="id ? '' : 'arrow-right'" class="realitys"> <u-form-item label="走访时间" prop="visitTime" required :right-icon="id ? '' : 'arrow-right'" class="realitys">
<u-input v-model="forms.visitTime" disabled placeholder="请选择走访时间" @click="showVisitTime = true" /> <u-input v-model="forms.visitTime" disabled placeholder="请选择走访时间" @click="showVisitTime = true" />
<u-calendar v-model="showVisitTime" mode="date" @change="change"></u-calendar> <u-picker v-model="showVisitTime" :params="params" mode="time" @confirm="change"></u-picker>
</u-form-item> </u-form-item>
<div class="line"></div> <div class="line"></div>
@@ -87,6 +87,14 @@ export default {
name: '', name: '',
optionId: '', optionId: '',
showVisitTime: false, showVisitTime: false,
params: {
year: true,
month: true,
day: true,
hour: true,
minute: true,
second: true,
},
} }
}, },
computed: { ...mapState(['user']) }, computed: { ...mapState(['user']) },
@@ -200,7 +208,7 @@ export default {
}, },
change(e) { change(e) {
this.forms.visitTime = e.result this.forms.visitTime = e.year + '-' + e.month + '-' + e.day + ' ' + e.hour + '-' + e.minute + '-' + e.second
}, },
realityStstus(e) { realityStstus(e) {