|
@@ -77,10 +77,10 @@
|
|
|
<el-form-item :label="urlTemplateStr"
|
|
|
v-for="(item, index) in formmodelUrlParamsTemp" :key="'u' + index">
|
|
|
<el-col :span="10" style="margin: 0 10px 0 0">
|
|
|
- <el-input v-model="item.parameter" :maxlength="20" :placeholder="inputTemplateStr"/>
|
|
|
+ <el-input v-model="item.parameter" :maxlength="50" :placeholder="inputTemplateStr"/>
|
|
|
</el-col>
|
|
|
<el-col :span="10" style="margin: 0 10px 0 0">
|
|
|
- <el-input v-model="item.value" :maxlength="20" :placeholder="inputTemplateValueStr"/>
|
|
|
+ <el-input v-model="item.value" :maxlength="50" :placeholder="inputTemplateValueStr"/>
|
|
|
</el-col>
|
|
|
<el-col :span="3" style="margin: auto">
|
|
|
<el-button v-if="index === 0" type="primary" @click="addInput(formmodelUrlParamsTemp)"> {{ addStr }} </el-button>
|
|
@@ -99,10 +99,10 @@
|
|
|
<el-form-item :label="actIntentStr"
|
|
|
v-for="(item, index) in formmodelActIntent" :key="'a' + index">
|
|
|
<el-col :span="10" style="margin: 0 10px 0 0">
|
|
|
- <el-input v-model="item.parameter" :maxlength="20" :placeholder="inputTemplateStr"/>
|
|
|
+ <el-input v-model="item.parameter" :maxlength="50" :placeholder="inputTemplateStr"/>
|
|
|
</el-col>
|
|
|
<el-col :span="10" style="margin: 0 10px 0 0">
|
|
|
- <el-input v-model="item.value" :maxlength="20" :placeholder="inputTemplateValueStr"/>
|
|
|
+ <el-input v-model="item.value" :maxlength="50" :placeholder="inputTemplateValueStr"/>
|
|
|
</el-col>
|
|
|
<el-col :span="3" style="margin: auto">
|
|
|
<el-button v-if="index === 0" type="primary" @click="addInput(formmodelActIntent)"> {{ addStr }} </el-button>
|