|
@@ -17,31 +17,35 @@
|
|
:label="`${$t('page.views.info.add.purchaseTitle')}`"
|
|
:label="`${$t('page.views.info.add.purchaseTitle')}`"
|
|
prop="purchaseTitle"
|
|
prop="purchaseTitle"
|
|
>
|
|
>
|
|
- <el-input v-model="form.purchaseTitle"></el-input>
|
|
|
|
|
|
+ <el-input v-model="form.purchaseTitle" maxlength="100"></el-input>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
<el-form-item
|
|
<el-form-item
|
|
:label="`${$t('page.views.info.add.summaryOfNeeds')}:`"
|
|
:label="`${$t('page.views.info.add.summaryOfNeeds')}:`"
|
|
prop="summaryOfNeeds"
|
|
prop="summaryOfNeeds"
|
|
>
|
|
>
|
|
- <el-input v-model="form.summaryOfNeeds"></el-input>
|
|
|
|
|
|
+ <el-input v-model="form.summaryOfNeeds" maxlength="1000"></el-input>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
<el-form-item
|
|
<el-form-item
|
|
:label="`${$t('page.views.info.add.demandDetails')}:`"
|
|
:label="`${$t('page.views.info.add.demandDetails')}:`"
|
|
prop="demandDetails"
|
|
prop="demandDetails"
|
|
>
|
|
>
|
|
- <el-input v-model="form.demandDetails" type="textarea"></el-input>
|
|
|
|
|
|
+ <el-input
|
|
|
|
+ v-model="form.demandDetails"
|
|
|
|
+ type="textarea"
|
|
|
|
+ maxlength="2000"
|
|
|
|
+ ></el-input>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
<el-form-item
|
|
<el-form-item
|
|
:label="`${$t('page.views.info.add.contacts')}:`"
|
|
:label="`${$t('page.views.info.add.contacts')}:`"
|
|
prop="contacts"
|
|
prop="contacts"
|
|
>
|
|
>
|
|
- <el-input v-model="form.contacts"></el-input>
|
|
|
|
|
|
+ <el-input v-model="form.contacts" maxlength="20"></el-input>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
<el-form-item
|
|
<el-form-item
|
|
:label="`${$t('page.views.info.add.contactNumber')}:`"
|
|
:label="`${$t('page.views.info.add.contactNumber')}:`"
|
|
prop="contactNumber"
|
|
prop="contactNumber"
|
|
>
|
|
>
|
|
- <el-input v-model="form.contactNumber"></el-input>
|
|
|
|
|
|
+ <el-input v-model="form.contactNumber" maxlength="12"></el-input>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
</el-form>
|
|
</el-form>
|
|
<div class="line"></div>
|
|
<div class="line"></div>
|