【优化】用户添加地址内详细地址从30字符限制调整为50字符限制。

This commit is contained in:
大灰灰
2022-08-01 21:01:34 +08:00
parent dfa5d5f49c
commit 5d4a00b833
@@ -44,10 +44,16 @@
<!-- 注意由于兼容性差异如果需要使用前后插槽nvue下需使用u--input非nvue下需使用u-input --> <!-- 注意由于兼容性差异如果需要使用前后插槽nvue下需使用u--input非nvue下需使用u-input -->
<!-- #ifndef APP-NVUE --> <!-- #ifndef APP-NVUE -->
<u-input :value="form.street" type="text" disabled placeholder="请定位"> <u-input :value="form.street" type="text" disabled placeholder="请定位">
<template slot="suffix">
<u-button text="请选择" type="success" size="mini"></u-button>
</template>
</u-input> </u-input>
<!-- #endif --> <!-- #endif -->
<!-- #ifdef APP-NVUE --> <!-- #ifdef APP-NVUE -->
<u--input :value="form.street" type="text" disabled placeholder="请定位"> <u--input :value="form.street" type="text" disabled placeholder="请定位">
<template slot="suffix">
<u-button text="请选择" type="success" size="mini"></u-button>
</template>
</u--input> </u--input>
<!-- #endif --> <!-- #endif -->
</u-form-item> </u-form-item>
@@ -128,8 +134,8 @@
}, },
{ {
min: 5, min: 5,
max: 30, max: 50,
message: '地址长度在5到30个字符', message: '地址长度在5到50个字符',
trigger: ['change', 'blur'], trigger: ['change', 'blur'],
} }
], ],