fix(项目设置): 修复点击高级设置无法出现新的空行的缺陷
--bug=1026350 --user=王孝刚 【接口场景】设置环境变量完成后场景变量没有生成新的输入框 https://www.tapd.cn/55049933/s/1373331
This commit is contained in:
parent
a137fbc09a
commit
0de2f5acd9
|
@ -140,7 +140,7 @@
|
||||||
size="mini"
|
size="mini"
|
||||||
style="margin-left: 10px"
|
style="margin-left: 10px"
|
||||||
@click="openSetting(scope.row)"
|
@click="openSetting(scope.row)"
|
||||||
@change="change" />
|
@blur="change"/>
|
||||||
</span>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
</ms-table-column>
|
</ms-table-column>
|
||||||
|
@ -152,7 +152,7 @@
|
||||||
:total="total" />
|
:total="total" />
|
||||||
</div>
|
</div>
|
||||||
<batch-add-parameter @batchSave="batchSave" ref="batchAdd" />
|
<batch-add-parameter @batchSave="batchSave" ref="batchAdd" />
|
||||||
<api-variable-setting ref="apiVariableSetting"></api-variable-setting>
|
<api-variable-setting ref="apiVariableSetting" @changeData="change"></api-variable-setting>
|
||||||
<variable-import ref="variableImport" @mergeData="mergeData"></variable-import>
|
<variable-import ref="variableImport" @mergeData="mergeData"></variable-import>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -67,6 +67,7 @@ export default {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
this.$emit('changeData');
|
||||||
this.visible = false;
|
this.visible = false;
|
||||||
},
|
},
|
||||||
handleCancel() {
|
handleCancel() {
|
||||||
|
|
Loading…
Reference in New Issue