zhengnaiwen_citu 3 months ago
parent
commit
a502a94cbe

+ 1 - 1
public/version.json

@@ -1,3 +1,3 @@
 {
-  "version": 1742807543663
+  "version": 1742958911419
 }

+ 2 - 2
src/api/dataGovernance.js

@@ -85,9 +85,9 @@ const dataResource = {
     return http.post('/resource/search', param)
     // return http.post('/id/data/search', param)
   },
-  // 数据资源生产线调度
+  // 数据资源生产线调度 结构化 手动执行
   productionLineDispatch: (param) => {
-    return http.post('/production/line/execute', param)
+    return http.post('/pipeline/production/line/execute', param)
   }
 }
 

+ 3 - 2
src/views/dataFactory/dispatch/index.vue

@@ -192,9 +192,10 @@ export default {
       if (item.loading === true) {
         return
       }
-      const { id, type } = Object.values(item.nodeProperty).pop()
+      const { id, type } = item
+      // const { id, type } = Object.values(item.nodeProperty).pop()
       item.loading = true
-      if (type === 'readResource') {
+      if (type === 'data_resource') {
         await this.handleRunResource(id)
       }
       if (type === 'modelTraining') {

+ 1 - 1
src/views/dataGovernance/dataResource/components/editBase.vue

@@ -136,7 +136,7 @@ export default {
           },
           {
             type: 'text',
-            key: 'location',
+            key: 'storage_location',
             value: '/',
             outlined: true,
             dense: true,

+ 1 - 1
vue.config.js

@@ -27,7 +27,7 @@ module.exports = defineConfig({
     // https: false,
     proxy: {
       '/api': {
-        target: 'https://company.citupro.com:18183/api',
+        target: 'https://company.citupro.com:18183',
         secure: false, // 是否支持 https,默认 false
         changeOrigin: true, // 是否支持跨域
         pathRewrite: {