CzRger hai 6 meses
pai
achega
026bb6b862

+ 2 - 1
src/components/cus/CusFormColumn.vue

@@ -9,7 +9,8 @@
     <el-form-item :label="label" :label-width="labelWidth" :class="{
       ['link_' + link + ($attrs.type ? '_' + $attrs.type : '')]: true,
       required: required !== false,
-      'no-label': (labelWidth == 0 || labelWidth === '0px') && !$util.isValue(label) && !$slots.label
+      'no-label': (labelWidth == 0 || labelWidth === '0px') && !$util.isValue(label) && !$slots.label,
+      'is-error': !!errorMessage
     }" :error="errorMessage" :required="required">
       <template #label>
         <slot name="label"/>

+ 5 - 0
src/style/cus.scss

@@ -259,6 +259,11 @@
 .__cus-dialog-form {
   padding: 20px;
 }
+.__cus-table-form-column {
+  .el-form-item:not(.is-error) {
+    margin-bottom: 0 !important;
+  }
+}
 
 .el-button {
   &:hover {

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

@@ -34,7 +34,7 @@
         </template>
         <template #do-column-value="{scope}">
           <CusButton type="table" icon="relation" title="关联分类" @click="onRelation(scope.row)"/>
-          <CusButton type="table" icon="relation" title="关联主题" @click="onRelation(scope.row)"/>
+          <CusButton type="table" icon="relation" title="关联主题" @click="onTheme(scope.row)"/>
           <CusButton 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)"/>
@@ -44,6 +44,7 @@
     <DetailCom v-model:show="state.detail.show" :transfer="state.detail.transfer" @refresh="onSearch"/>
     <RelationCom v-model:show="state.relation.show" :transfer="state.relation.transfer" @refresh="onSearch"/>
     <TextCom v-model:show="state.text.show" :transfer="state.text.transfer"/>
+    <ThemeCom v-model:show="state.theme.show" :transfer="state.theme.transfer"/>
   </div>
 </template>
 
@@ -53,12 +54,12 @@ import {ElMessage, ElMessageBox} from "element-plus";
 import {
   sysIndexDeleteIndexById,
   sysIndexExport,
-  sysIndexFieldDeleteById,
   sysIndexFindIndexByPage
 } from "@/api/modules/manage";
 import DetailCom from "./detail.vue";
 import RelationCom from "./relation.vue";
 import TextCom from "./text.vue";
+import ThemeCom from "./theme.vue";
 import {useDictionaryStore} from "@/stores";
 import {downLoadBlob} from "@/utils/downLoadUrl";
 
@@ -108,6 +109,10 @@ const state: any = reactive({
   text: {
     show: false,
     transfer: {}
+  },
+  theme: {
+    show: false,
+    transfer: {}
   }
 })
 const onPage = (pageNum, pageSize) => {
@@ -154,6 +159,12 @@ const onRelation = (row) => {
   }
   state.relation.show = true
 }
+const onTheme = (row) => {
+  state.theme.transfer = {
+    id: row.id
+  }
+  state.theme.show = true
+}
 const onText = (row) => {
   state.text.transfer = {
     id: row.id,

+ 1 - 6
src/views/manage/index/text-detail.vue

@@ -90,7 +90,7 @@
             </template>
             <template #do-header-value="{scope}">
               <CusFormColumn
-                class="fcq"
+                class="__cus-table-form-column"
                 :span="24"
                 v-model:param="state.textTable.fcqSelect"
                 link="select"
@@ -241,10 +241,5 @@ const initDictionary = () => {
   display: flex;
   flex-direction: column;
   align-items: center;
-  .fcq {
-    .el-form-item {
-      margin-bottom: 0;
-    }
-  }
 }
 </style>

+ 186 - 0
src/views/manage/index/theme.vue

@@ -0,0 +1,186 @@
+<template>
+  <CusDialog
+    :show="show"
+    :title="titleCpt"
+    @onClose="$emit('update:show', false)"
+    width="600px"
+    max-height="80%"
+    @onSubmit="onSubmit"
+    :loading="state.loading"
+  >
+    <div class="__cus-dialog-form">
+      <CusForm ref="ref_form" label-width="100px">
+        <CusFormColumn
+          :span="24"
+          required
+          label="主题模式"
+          v-model:param="state.form.themeId"
+          link="select"
+          :options="state.themeOptions"
+          label-key="themeName"
+          value-key="themeId"
+          :clearable="false"
+          @getObject="handleSelect"
+        />
+        <el-col :span="24" v-if="state.textTable.data?.length > 0">
+          <CusTable
+            :data="state.textTable.data"
+            :table-head="state.textTable.tableHead"
+            :no-page="true"
+          >
+            <template #fieldParam-column-value="{scope}">
+              <CusFormColumn
+                class="__cus-table-form-column"
+                required
+                :span="24"
+                v-model:param="scope.row.fieldParam"
+                link="select"
+                :options="state.textOptions"
+                label-key="fieldNameCn"
+                value-key="fieldNameEn"
+              />
+            </template>
+          </CusTable>
+        </el-col>
+      </CusForm>
+    </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 {
+  sysIndexFieldList,
+  sysIndexFieldSaveOrUpdate,
+  sysIndexGetDetail,
+  sysIndexSaveOrUpdate
+} from "@/api/modules/manage";
+import {sysThemeFind, sysThemeGetPageTheme} from "@/api/modules/manage/theme";
+
+const emit = defineEmits(['update:show', 'refresh'])
+const {proxy} = getCurrentInstance()
+const DictionaryStore = useDictionaryStore()
+const props = defineProps({
+  show: {default: false},
+  transfer: {}
+ })
+const state: any = reactive({
+  form: {},
+  loading: false,
+  textTable: {
+    tableHead: [
+      {value: "themeParam", label: "主题参数"},
+      {value: "fieldParam", label: "字段映射"},
+    ],
+    data: [],
+  },
+  themeOptions: [],
+  textOptions: [],
+})
+const ref_form = ref()
+const titleCpt = computed(() => {
+  let t = '关联主题'
+  return t
+})
+const onSubmit = () => {
+  ref_form.value.submit().then(() => {
+    if (state.form.fieldType === 'text' && state.textTable.data.length === 0) {
+      ElMessage({
+        message: '请至少选择一个分词器!',
+        grouping: true,
+        type: 'warning',
+      })
+    } else {
+      ElMessageBox.confirm("是否提交?", "提示", {
+        confirmButtonText: "确定",
+        cancelButtonText: "取消",
+        type: "warning",
+      } as any).then(() => {
+        state.loading = true
+        if (state.form.fieldType === 'text') {
+          state.form.fieldAnalyzer = JSON.stringify(state.textTable.data)
+        }
+        sysIndexFieldSaveOrUpdate(state.form).then(res => {
+          if (res.code === 200) {
+            ElMessage.success(props.transfer.mode === 'add' ? '新增成功!' : '编辑成功!')
+            emit('update:show', false)
+            emit('refresh')
+          } else {
+            ElMessage.error(res.msg)
+          }
+          state.loading = false
+        })
+      }).catch(() => {})
+    }
+  }).catch((e) => {
+    ElMessage({
+      message: e[0].message,
+      grouping: true,
+      type: 'warning',
+    })
+  })
+}
+const initTheme = () => {
+  // sysThemeGetPageTheme('page=1&size=1000&themeType=2&themeState=1').then(res => {
+  //   if (res.code === 200) {
+  //     state.themeOptions = res.data.totalElements
+  //   } else {
+  //     ElMessage.error(res.msg)
+  //   }
+  // })
+  state.themeOptions = [
+    {
+      "themeId": "7",
+      "themeName": "测试档案",
+      "themeType": "2",
+      "themeState": "1",
+      "themeUrl": "/web/archive",
+      "themeParam": "p1,p2,p3,p4",
+      "themeStyle": null,
+      "createTime": "2024-09-10 01:45:48",
+      "createBy": "1",
+      "updateTime": "2024-09-10 01:45:48",
+      "updateBy": "1"
+    }
+  ]
+}
+const handleSelect = (obj) => {
+  if (obj.themeParam) {
+    obj.themeParam.split(',').forEach(v => {
+      state.textTable.data.push({
+        themeParam: v,
+        fieldParam: '',
+      })
+    })
+  }
+}
+const initText = () => {
+  sysIndexFieldList(proxy.$util.formatGetParam({
+    indexId: props.transfer.id
+  })).then(res => {
+    if (res.code === 200) {
+      state.textOptions = res.data
+    } else {
+      ElMessage.error(res.msg)
+    }
+  })
+}
+watch(() => props.show, (n) => {
+  if (n) {
+    initDictionary()
+    state.form = {}
+    initTheme()
+    initText()
+    nextTick(() => {
+      ref_form.value.reset()
+    })
+  }
+})
+const initDictionary = () => {
+}
+</script>
+
+<style lang="scss" scoped>
+</style>

+ 6 - 0
src/views/manage/theme/index.vue

@@ -119,6 +119,12 @@ const onPage = (pageNum, pageSize) => {
     page: state.query.page.pageNum,
     size: state.query.page.pageSize,
   }
+  //  添加表单参数
+  for (const [k, v] of Object.entries(state.query.formReal)) {
+    if (proxy.$util.isValue(v)) {
+      params[k] = v
+    }
+  }
   state.query.loading = true
   sysThemeGetPageTheme(proxy.$util.formatGetParam(params)).then(res => {
     if (res.code === 200) {

+ 7 - 12
src/views/manage/theme/relation-detail.vue

@@ -43,8 +43,8 @@
           v-model:param="state.form.mainFieldId"
           link="select"
           :options="state.textOptions"
-          labelKey="fieldNameCn"
-          valueKey="id"
+          label-key="fieldNameCn"
+          value-key="id"
         />
         <CusFormColumn
           :span="12"
@@ -78,7 +78,7 @@
           >
             <template #indexParam-column-value="{scope}">
               <CusFormColumn
-                class="table-form-column"
+                class="__cus-table-form-column"
                 required
                 :span="24"
                 v-model:param="scope.row.indexParam"
@@ -86,7 +86,7 @@
             </template>
             <template #condition-column-value="{scope}">
               <CusFormColumn
-                class="table-form-column"
+                class="__cus-table-form-column"
                 required
                 :span="24"
                 v-model:param="scope.row.condition"
@@ -96,7 +96,7 @@
             </template>
             <template #do-header-value="{scope}">
               <CusFormColumn
-                class="table-form-column"
+                class="__cus-table-form-column"
                 :span="24"
                 v-model:param="state.conditionTable.selectValue"
                 link="select"
@@ -118,7 +118,7 @@
           >
             <template #sortParam-column-value="{scope}">
               <CusFormColumn
-                class="table-form-column"
+                class="__cus-table-form-column"
                 required
                 :span="24"
                 v-model:param="scope.row.sortParam"
@@ -126,7 +126,7 @@
             </template>
             <template #sortType-column-value="{scope}">
               <CusFormColumn
-                class="table-form-column"
+                class="__cus-table-form-column"
                 required
                 :span="24"
                 v-model:param="scope.row.sortType"
@@ -305,9 +305,4 @@ const initDictionary = () => {
 </script>
 
 <style lang="scss" scoped>
-:deep(.table-form-column) {
-  .el-form-item {
-    margin-bottom: 0;
-  }
-}
 </style>