fix:修改提示
This commit is contained in:
parent
261fd5d17f
commit
f0e4db4165
1
src/components.d.ts
vendored
1
src/components.d.ts
vendored
@ -7,7 +7,6 @@ export {}
|
|||||||
|
|
||||||
declare module 'vue' {
|
declare module 'vue' {
|
||||||
export interface GlobalComponents {
|
export interface GlobalComponents {
|
||||||
copy: typeof import('./components/s-layout-search/index copy.vue')['default']
|
|
||||||
'Index copy': typeof import('./components/s-layout-search/index copy.vue')['default']
|
'Index copy': typeof import('./components/s-layout-search/index copy.vue')['default']
|
||||||
RouterLink: typeof import('vue-router')['RouterLink']
|
RouterLink: typeof import('vue-router')['RouterLink']
|
||||||
RouterView: typeof import('vue-router')['RouterView']
|
RouterView: typeof import('vue-router')['RouterView']
|
||||||
|
|||||||
@ -95,7 +95,12 @@ onMounted(async () => {
|
|||||||
<a-option v-for="it in operatorAllList" :key="it.operatorId" :value="it.operatorId">{{ it.operatorName }}</a-option>
|
<a-option v-for="it in operatorAllList" :key="it.operatorId" :value="it.operatorId">{{ it.operatorName }}</a-option>
|
||||||
</a-select>
|
</a-select>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
<a-form-item field="dispatchDuration" label="时长配置(h):" validate-trigger="blur">
|
<a-form-item
|
||||||
|
field="dispatchDuration"
|
||||||
|
label="时长配置(h):"
|
||||||
|
validate-trigger="blur"
|
||||||
|
tooltip="车辆多长时间无单生成调度工单"
|
||||||
|
>
|
||||||
<a-input-number
|
<a-input-number
|
||||||
v-model="addForm.dispatchDuration"
|
v-model="addForm.dispatchDuration"
|
||||||
:style="{ width: '320px' }"
|
:style="{ width: '320px' }"
|
||||||
@ -103,7 +108,12 @@ onMounted(async () => {
|
|||||||
:min="0"
|
:min="0"
|
||||||
/>
|
/>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
<a-form-item field="rideDuration" label="骑行时长配置(h):" validate-trigger="blur">
|
<a-form-item
|
||||||
|
field="rideDuration"
|
||||||
|
label="骑行时长配置(h):"
|
||||||
|
validate-trigger="blur"
|
||||||
|
tooltip="调度完成后多长时间内骑行是有效的"
|
||||||
|
>
|
||||||
<a-input-number
|
<a-input-number
|
||||||
v-model="addForm.rideDuration"
|
v-model="addForm.rideDuration"
|
||||||
:style="{ width: '320px' }"
|
:style="{ width: '320px' }"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user