chenc 3 years ago
parent
commit
02f930feba

+ 1 - 1
packages/KFormDesign/index.vue

@@ -182,7 +182,7 @@ export default {
   props: {
     title: {
       type: String,
-      default: "表单设计器 --by kcz"
+      default: "表单设计器"
     },
     showHead: {
       type: Boolean,

+ 1 - 1
packages/KFormDesign/module/header.vue

@@ -13,7 +13,7 @@ export default {
   props: {
     title: {
       type: String,
-      default: "表单设计器 --by kcz"
+      default: "表单设计器"
     }
   }
 };

+ 20 - 1
packages/PreviewCode/index.vue

@@ -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" />&nbsp;
+    </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);
       //保存接口

+ 2 - 1
vue.config.js

@@ -24,7 +24,8 @@ module.exports = {
     loaderOptions: {
       less: {
         modifyVars: {
-          "primary-color": "#13c2c2",
+          "primary-color": "#1890FF",
+          // "primary-color": "#13c2c2",
           // "primary-color": "#9867f7",
           "layout-color": "#9867f7"
           // "layout-color": "#ee88aa"