|
@@ -2,6 +2,9 @@
|
|
|
<div>
|
|
|
<div class="json-box-9136076486841527">
|
|
|
<codemirror style="height:100%;" ref="myEditor" :value="editorJson"></codemirror>
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+
|
|
|
</div>
|
|
|
<div class="copy-btn-box-9136076486841527">
|
|
|
表单名:
|
|
@@ -11,6 +14,17 @@
|
|
|
<a-select v-model="formData.businessTable" style="width: 20%" placeholder="请选择数据库表名" allowClear show-search >
|
|
|
<a-select-option v-for="(item) in tableList" :key="item.tableName" :value="item.tableName">{{item.tableName}}{{item.tableComment}}</a-select-option>
|
|
|
</a-select>
|
|
|
+ 表单描述
|
|
|
+ <a-tooltip>
|
|
|
+ <template slot="title">
|
|
|
+ 用来明确表单的使用含义
|
|
|
+ </template>
|
|
|
+ <a-icon type="question-circle-o" />
|
|
|
+ </a-tooltip>:
|
|
|
+ <a-input placeholder="请输入表单描述" style="width:20%;" v-model="formData.stepMemo" />
|
|
|
+ </div>
|
|
|
+ <div class="copy-btn-box-9136076486841527" style="text-align:right">
|
|
|
+ <a-divider style="margin: 5px 0;"/>
|
|
|
<a-button
|
|
|
@click="handleCopyJson"
|
|
|
type="primary"
|
|
@@ -94,13 +108,18 @@ export default {
|
|
|
this.$message.error("请输入表单名");
|
|
|
return;
|
|
|
}
|
|
|
+ if(!this.formData.stepMemo){
|
|
|
+ this.$message.error("请输入表单描述");
|
|
|
+ return;
|
|
|
+ }
|
|
|
console.log(this.editorJson);
|
|
|
//定义保存数据格式
|
|
|
const formData = {
|
|
|
text: this.formData.text,
|
|
|
routeName: "自定义$" + this.formData.businessTable,
|
|
|
businessTable: this.formData.businessTable,
|
|
|
- jsonContent: JSON.parse(this.editorJson)
|
|
|
+ jsonContent: JSON.parse(this.editorJson),
|
|
|
+ stepMemo:this.formData.stepMemo
|
|
|
};
|
|
|
console.log(formData);
|
|
|
//保存接口
|