فهرست منبع

更新接口及模板

yangg 5 ماه پیش
والد
کامیت
fb746e034c

+ 1 - 1
.env.development

@@ -3,7 +3,7 @@ ENV = 'development'
 port = 8080
 # base api
 VUE_APP_BASE_AI_API='https://ylaiapi.raycos.com.cn'
-VUE_APP_BASE_API = 'http://192.168.66.163:8084'
+VUE_APP_BASE_API = 'http://183.195.216.54:8084'
 #192.168.66.187
 #朱:192.168.66.163
 #测试服务器:121.36.251.245

تفاوت فایلی نمایش داده نمی شود زیرا این فایل بسیار بزرگ است
+ 0 - 0
dist/index.html


+ 0 - 0
dist/static/css/chunk-643cca58.5ac10695.css → dist/static/css/chunk-1ddd568f.5ac10695.css


+ 0 - 1
dist/static/css/chunk-43fc274e.2eef492f.css

@@ -1 +0,0 @@
-.information-container[data-v-542115c8]{padding:20px}.pagination-container[data-v-542115c8]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.content-cell[data-v-542115c8]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.content-cell .content-text[data-v-542115c8]{-webkit-box-flex:1;-ms-flex:1;flex:1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:430px}[data-v-542115c8] .el-dialog{margin-top:0!important}.batch-operation[data-v-542115c8]{margin:10px 0}

+ 0 - 0
dist/static/css/chunk-18211a61.6f784171.css → dist/static/css/chunk-c6c6dd96.6f784171.css


+ 1 - 0
dist/static/css/chunk-dce51f40.568aaaa4.css

@@ -0,0 +1 @@
+.information-container[data-v-6406ec3c]{padding:20px}.pagination-container[data-v-6406ec3c]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.content-cell[data-v-6406ec3c]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.content-cell .content-text[data-v-6406ec3c]{-webkit-box-flex:1;-ms-flex:1;flex:1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:430px}[data-v-6406ec3c] .el-dialog{margin-top:0!important}.batch-operation[data-v-6406ec3c]{margin:10px 0}

تفاوت فایلی نمایش داده نمی شود زیرا این فایل بسیار بزرگ است
+ 0 - 0
dist/static/js/app.a3ee040c.js


تفاوت فایلی نمایش داده نمی شود زیرا این فایل بسیار بزرگ است
+ 0 - 0
dist/static/js/chunk-18211a61.6c9e1b29.js


تفاوت فایلی نمایش داده نمی شود زیرا این فایل بسیار بزرگ است
+ 0 - 0
dist/static/js/chunk-1ddd568f.b2c65675.js


تفاوت فایلی نمایش داده نمی شود زیرا این فایل بسیار بزرگ است
+ 0 - 0
dist/static/js/chunk-43fc274e.c6b0e63a.js


تفاوت فایلی نمایش داده نمی شود زیرا این فایل بسیار بزرگ است
+ 0 - 0
dist/static/js/chunk-643cca58.24c409b5.js


تفاوت فایلی نمایش داده نمی شود زیرا این فایل بسیار بزرگ است
+ 0 - 0
dist/static/js/chunk-c6c6dd96.aa7c9b89.js


تفاوت فایلی نمایش داده نمی شود زیرا این فایل بسیار بزرگ است
+ 0 - 0
dist/static/js/chunk-dce51f40.6258a5ef.js


+ 13 - 2
src/views/Information/index.vue

@@ -139,6 +139,7 @@
           :edit-mode="Modetype"
           :html-data="htmlData"
           :doc-json="docJson"
+          :editor-options="editorOptions"
           :key="keys"
           @save="save"
           @is-save="getSave"
@@ -268,7 +269,8 @@ export default {
       batchDepartForm: {
         department: '',
         ids: []
-      }
+      },
+      editorOptions: {},
     };
   },
   methods: {
@@ -319,7 +321,16 @@ export default {
         id: row.id,
         content: row.content, //processedContent,
       };
-
+      if (row.font_style) {
+        this.editorOptions = row.font_style;
+      } else {
+        this.editorOptions = {
+          font: "Arial",
+          size: 14,
+          bold: false,
+          align: "left",
+        };
+      }
       // 设置编辑器数据
       this.htmlData = processedContent;
       this.Modetype = "edit";

+ 1 - 0
src/views/document/create.vue

@@ -1743,6 +1743,7 @@ export default {
       _this.docAttr.projects = JSON.stringify(_this.docAttr.linkProject);
       _this.docAttr.data = JSON.stringify(_this.coms);
       _this.docAttr.is_template = 1;
+      _this.docAttr.template_id=0
       _this.docAttr.user_name = _this.$store.state.user.name;
       _this.docAttr.user_id = _this.$store.state.user.id;
       /* if (_this.docAttr.id > 0) {

+ 2 - 0
src/views/project/ProjectInput.vue

@@ -1525,6 +1525,8 @@ export default {
           project_id: this.selectedProjectId,
           page: this.currentPage,
           page_size: this.pageSize,
+          sort_field: this.sort_field,
+          sort_order: this.sort_order,
         };
 
         const response = await projectList(params);

برخی فایل ها در این مقایسه diff نمایش داده نمی شوند زیرا تعداد فایل ها بسیار زیاد است