CzRger hace 5 meses
padre
commit
a919f8124e

+ 2 - 1
src/api/modules/manage/type.ts

@@ -30,9 +30,10 @@ export const sysLabelDetail = (id: any) => handle({
   method: 'get',
 })
 // 查询所有索引
-export const sysLabelGetAllIndexsByKey = () => handle({
+export const sysLabelGetAllIndexsByKey = (params: any) => handle({
   url: `/${suffix}/sys/label/getAllIndexsByKey`,
   method: 'get',
+  params
 })
 // 查询所有标签关联索引
 export const sysLabelGetAllSysLabelTypes = (id: any) => handle({

+ 1 - 1
src/views/manage/theme/index.vue

@@ -53,7 +53,7 @@
             <CusButton type="table-edit" title="配置" icon="text" @click="onStyle(scope.row)"/>
           </template>
           <template v-else-if="scope.row.themeType == '2'">
-            <CusButton type="table" icon="relation" title="索引构成"  @click="onRelation(scope.row)"/>
+            <CusButton type="table" icon="relation" title="数据构成"  @click="onRelation(scope.row)"/>
           </template>
         </template>
       </CusTable>

+ 61 - 14
src/views/manage/theme/relation-detail.vue

@@ -12,26 +12,26 @@
       <CusForm ref="ref_form" label-width="100px">
         <CusFormColumn
           :span="12"
-          label="索引英文"
+          label="数据英文"
           v-model:param="props.transfer.indexTableName"
           :disabled="true"
         />
         <CusFormColumn
           :span="12"
-          label="索引名称"
+          label="数据名称"
           v-model:param="props.transfer.indexName"
           :disabled="true"
         />
         <CusFormColumn
           :span="12"
           required
-          label="索引简称"
+          label="数据简称"
           v-model:param="state.form.indexNameShort"
         />
         <CusFormColumn
           :span="12"
           required
-          label="主索引"
+          label="主数据"
           v-model:param="state.form.isMain"
           link="select"
           :options="DictionaryStore.isMainIndexList"
@@ -48,7 +48,7 @@
         />
         <CusFormColumn
           :span="12"
-          label="关联索引"
+          label="关联数据"
           v-model:param="state.form.relateIndexId"
           link="select"
           :options="transfer.relationOptions"
@@ -100,7 +100,7 @@
         </template>
         <el-col v-else :span="12"/>
         <el-col :span="12">
-          <div class="__cus-title_1">索引条件</div>
+          <div class="__cus-title_1">数据条件</div>
           <CusTable
             :data="state.conditionTable.data"
             :table-head="state.conditionTable.tableHead"
@@ -144,7 +144,7 @@
           </CusTable>
         </el-col>
         <el-col :span="12" style="padding-left: 20px">
-          <div class="__cus-title_1">索引排序</div>
+          <div class="__cus-title_1">数据排序</div>
           <CusTable
             :data="state.sortTable.data"
             :table-head="state.sortTable.tableHead"
@@ -197,6 +197,7 @@ import {
   sysThemeUpdate
 } from "@/api/modules/manage/theme";
 import {sysIndexFieldList} from "@/api/modules/manage";
+import {outsideServiceFindById} from "@/api/modules/manage/service";
 
 const emit = defineEmits(['update:show', 'refresh'])
 const {proxy} = getCurrentInstance()
@@ -232,8 +233,16 @@ const state: any = reactive({
   textOptions: []
 })
 const ref_form = ref()
+const isIndexCpt = computed(() => {
+  return props.transfer.type === 'inner_index'
+})
 const titleCpt = computed(() => {
-  let t = '索引构成-索引编辑'
+  let t = ''
+  if (isIndexCpt.value) {
+    t = '数据构成-索引配置'
+  } else {
+    t = '数据构成-服务配置'
+  }
   return t
 })
 const onSubmit = () => {
@@ -290,12 +299,50 @@ const initDetail = () => {
   })
 }
 const initText = (id) => {
-  sysIndexFieldList(proxy.$util.formatGetParam({
-    indexId: id
-  })).then(res => {
-    state.textOptions = res.data
-    state.loading = false
-  })
+  if (isIndexCpt.value) {
+    sysIndexFieldList(proxy.$util.formatGetParam({
+      indexId: id
+    })).then(res => {
+      state.textOptions = res.data
+      state.loading = false
+    })
+  } else {
+    outsideServiceFindById(props.transfer.id).then(res => {
+      state.form = res.data
+      if (state.form.requestParams) {
+        try {
+          const p = JSON.parse(state.form.requestParams)
+          state.params.requestParams.data = p || []
+        } catch (e) {}
+      }
+      if (state.form.requestHeaders) {
+        try {
+          const p = JSON.parse(state.form.requestHeaders)
+          state.params.requestHeaders.data = p || []
+        } catch (e) {}
+      }
+      if (state.form.requestBody) {
+        try {
+          const p = JSON.parse(state.form.requestBody)
+          state.params.requestBody.type = p.type
+          state.params.requestBody.str = p.str
+          state.params.requestBody.data = p.data || []
+        } catch (e) {}
+      }
+      if (state.form.responseBody) {
+        try {
+          const p = JSON.parse(state.form.responseBody)
+          state.params.responseBody.type = p.type
+          state.params.responseBody.json.pathForm = p.json.pathForm
+          state.params.responseBody.json.data = p.json.data || []
+          state.params.responseBody.text.data = p.text.data || []
+          state.params.responseBody.other.plug = p.other.plug
+          state.params.responseBody.other.data = p.other.data || []
+        } catch (e) {}
+      }
+      state.loading = false
+    })
+  }
 }
 const handleChangeCondition = (val) => {
   if (val) {

+ 44 - 21
src/views/manage/theme/relation.vue

@@ -10,19 +10,30 @@
   >
     <div class="__cus-manage_content">
       <div class="__cus-manage_content-filters" v-loading="state.loadingIndex">
-        <el-autocomplete
-          ref="ref_search"
-          v-model="state.indexSelect"
-          :fetch-suggestions="fetchSuggestions"
-          clearable
-          placeholder="搜索添加索引"
-          @select="handleSelect"
-          :select-when-unmatched="true"
-        >
-          <template #default="{ item }">
-            <div class="index-item" v-html="item.html"/>
-          </template>
-        </el-autocomplete>
+        <el-row>
+          <CusFormColumn
+            :span="2"
+            v-model:param="state.type"
+            link="select"
+            :options="DictionaryStore.serviceTypeList"
+            @change="initIndex"
+          />
+          <el-col :span="22">
+            <el-autocomplete
+              ref="ref_search"
+              v-model="state.indexSelect"
+              :fetch-suggestions="fetchSuggestions"
+              clearable
+              placeholder="搜索添加索引"
+              @select="handleSelect"
+              :select-when-unmatched="true"
+            >
+              <template #default="{ item }">
+                <div class="index-item" v-html="item.html"/>
+              </template>
+            </el-autocomplete>
+          </el-col>
+        </el-row>
       </div>
       <div class="__cus-manage_content-main" v-loading="state.query.loading">
         <CusTable
@@ -70,16 +81,24 @@ const props = defineProps({
  })
 const state: any = reactive({
   loading: false,
+  type: 'inner_index',  // outside_service
   query: {
     loading: false,
     tableHead: [
+      {value: "type", label: "数据类型", width: 120},
       {value: "indexTableName", label: "索引英文", popover: true},
-      {value: "indexName", label: "索引名称"},
-      {value: "indexNameShort", label: "索引简称"},
-      {value: "isMain", label: "主索引"},
-      {value: "fieldName", label: "关联索引"},
+      {value: "indexName", label: "数据名称"},
+      {value: "indexNameShort", label: "数据简称"},
+      {value: "isMain", label: "主数据"},
       {value: "weight", label: "权重"},
+      {value: "fieldName", label: "关联数据"},
       {value: "description", label: "关系描述"},
+      // {value: "indexName", label: "索引名称"},
+      // {value: "indexNameShort", label: "索引简称"},
+      // {value: "isMain", label: "主索引"},
+      // {value: "fieldName", label: "关联索引"},
+      // {value: "weight", label: "权重"},
+      // {value: "description", label: "关系描述"},
       {value: "do", label: "操作", width: 360, fixed: 'right'},
     ],
     result: {
@@ -132,10 +151,12 @@ const handleSelect = (item) => {
 }
 const initIndex = () => {
   state.loadingIndex = true
-  sysLabelGetAllIndexsByKey().then(res => {
-    state.indexList = res.data
-    state.loadingIndex = false
-  })
+  setTimeout(() => {
+    sysLabelGetAllIndexsByKey(proxy.$util.formatGetParam({type: state.type})).then(res => {
+      state.indexList = res.data
+      state.loadingIndex = false
+    })
+  }, 100)
 }
 const initRelation = () => {
   state.query.loading = true
@@ -205,6 +226,7 @@ const initDetail = () => {
   })
 }
 watch(() => props.show, (n) => {
+  initDictionary()
   if (n) {
     initIndex()
     initRelation()
@@ -213,6 +235,7 @@ watch(() => props.show, (n) => {
 })
 const initDictionary = () => {
   DictionaryStore.initDict('is_main_index')
+  DictionaryStore.initDict('service_type')
 }
 </script>