Browse Source

外部服务

CzRger 5 months ago
parent
commit
eec444aada

+ 5 - 0
src/api/modules/manage/service.ts

@@ -40,3 +40,8 @@ export const outsideServiceDelete = (id: any) => handle({
   url: `/${suffix}/api/outsideService/delete/${id}`,
   method: 'get',
 })
+// 主题
+export const outsideServiceTheme = (id: any) => handle({
+  url: `/${suffix}/api/outsideService/theme/${id}`,
+  method: 'get',
+})

+ 1 - 1
src/views/manage/service/detail.vue

@@ -197,7 +197,7 @@
                   <CusButton type="main" title="逆向生成JSON结构" @click="tableToJson"/>
                 </template>
               </div>
-              <div class="flex: 1; overflow: hidden;">
+              <div style="flex: 1; overflow: hidden;">
                 <CusTable
                   :data="state.params.requestBody.data"
                   :table-head="state.params.requestBody.tableHead"

+ 3 - 1
src/views/manage/service/index.vue

@@ -52,6 +52,7 @@
       </CusTable>
     </div>
     <DetailCom v-model:show="state.detail.show" :transfer="state.detail.transfer" @refresh="onSearch"/>
+    <RelationCom v-model:show="state.theme.show" :transfer="state.theme.transfer"/>
   </div>
 </template>
 
@@ -59,6 +60,7 @@
 import {getCurrentInstance, onMounted, reactive} from "vue";
 import {ElMessage, ElMessageBox} from "element-plus";
 import DetailCom from "./detail.vue";
+import RelationCom from "./relation.vue";
 import {useDictionaryStore} from "@/stores";
 import {
   outsideServiceDelete,
@@ -147,7 +149,7 @@ const onReset = () => {
 }
 const onTheme = (row) => {
   state.theme.transfer = {
-    row: JSON.parse(JSON.stringify(row))
+    id: row.id
   }
   state.theme.show = true
 }

+ 62 - 0
src/views/manage/service/relation.vue

@@ -0,0 +1,62 @@
+<template>
+  <CusDialog
+    :show="show"
+    :title="titleCpt"
+    @onClose="$emit('update:show', false)"
+    width="80%"
+    height="80%"
+    :loading="state.loading"
+  >
+    <div class="__cus-manage_content">
+      <div class="__cus-manage_content-main" v-loading="state.loading">
+        <CusTable
+          :data="state.data"
+          :table-head="state.tableHead"
+          :no-page="true"
+        >
+        </CusTable>
+      </div>
+    </div>
+  </CusDialog>
+</template>
+
+<script setup lang="ts">
+import {computed, getCurrentInstance, nextTick, reactive, ref, watch} from "vue";
+import {useDictionaryStore} from "@/stores";
+import {ElMessage, ElMessageBox} from "element-plus";
+import {outsideServiceTheme} from "@/api/modules/manage/service";
+
+const emit = defineEmits(['update:show', 'dict'])
+const {proxy} = getCurrentInstance()
+const DictionaryStore = useDictionaryStore()
+const props = defineProps({
+  show: {default: false},
+  transfer: {}
+ })
+const state: any = reactive({
+  tableHead: [
+    {value: "key", label: "主题名称"},
+    {value: "value", label: "主题状态"},
+    {value: "value", label: "关联时间"},
+  ],
+  data: [],
+  loading: false,
+})
+const ref_form = ref()
+const titleCpt = computed(() => {
+  let t = '主题列表'
+  return t
+})
+const initDetail = () => {
+  state.loading = true
+  outsideServiceTheme(props.transfer.id)
+}
+watch(() => props.show, (n) => {
+  if (n) {
+    initDetail()
+  }
+})
+</script>
+
+<style lang="scss" scoped>
+</style>

+ 3 - 3
src/views/manage/theme/relation.vue

@@ -50,7 +50,7 @@
           </template>
           <template #do-column-value="{scope}">
             <CusButton v-if="scope.row.isMain == 1" type="table-add" icon="text" title="主配置" @click="onMain(scope.row)"/>
-            <CusButton type="table-add" icon="text" title="列配置" @click="onText(scope.row)"/>
+            <CusButton v-if="scope.row.type === 'inner_index'" type="table-add" icon="text" title="列配置" @click="onText(scope.row)"/>
             <CusButton type="table-edit" @click="onEdit(scope.row)"/>
             <CusButton type="table-del" @click="onDel(scope.row)"/>
           </template>
@@ -150,7 +150,7 @@ const handleSelect = (item) => {
     themeId: props.transfer.id,
     conditionOptions: state.form.themeParam,
     relationOptions: state.query.result.data.map(v => ({dictLabel: v.indexName, dictValue: v.id})),
-    hasMain: state.query.result.data.some(v => v.isMain == 1)
+    hasMain: state.query.result.data.some(v => v.isMain == 1) || state.type !== 'inner_index'
   }
   state.relationDetail.show = true
 }
@@ -202,7 +202,7 @@ const onEdit = (row) => {
     indexName: row.indexName,
     conditionOptions: state.form.themeParam,
     relationOptions: state.query.result.data.filter(v => v.id !== row.id).map(v => ({dictLabel: v.indexName, dictValue: v.id})),
-    hasMain: hasMain
+    hasMain: hasMain || row.type !== 'inner_index'
   }
   state.relationDetail.show = true
 }