CzRger 7 kuukautta sitten
vanhempi
commit
e5ca730a5b

Tiedoston diff-näkymää rajattu, sillä se on liian suuri
+ 1 - 0
src/assets/svg/text.svg


+ 2 - 1
src/plugins/initProperties.ts

@@ -1,7 +1,8 @@
-import {App, reactive} from 'vue'
+import {App, nextTick, reactive} from 'vue'
 import * as api from '@/api/index'
 import * as util from '@/utils/util'
 import * as permissions from '@/utils/permissions'
+import {delay} from "@/utils/util";
 
 export default async (app: App) => {
     app.config.globalProperties.$api = await api.default

+ 25 - 6
src/views/manage/index/index.vue

@@ -4,7 +4,7 @@
     <div class="__cus-manage_content-filters">
       <CusForm labelWidth="100px" @handleEnter="onSearch">
         <CusFormColumn
-          filterSpan="1"
+          :span="8"
           v-model:param="state.query.form.keyword"
           placeholder="请输入索引中文名称或索引表名进行搜索"
         />
@@ -14,7 +14,7 @@
         <CusButton type="main" title="新增" @click="onReset"/>
       </CusForm>
     </div>
-    <div class="__cus-manage_content-main">
+    <div class="__cus-manage_content-main" v-loading="state.query.loading">
       <CusTable
         :page-num="state.query.page.pageNum"
         :page-size="state.query.page.pageSize"
@@ -23,7 +23,12 @@
         :table-head="state.query.tableHead"
         @handlePage="onPage"
       >
-        <template #a1-column-value="scope">123</template>
+        <template #do-column-value="{scope}">
+          <CusButton type="table" icon="relation" title="关联分类" @click="onRelation(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)"/>
+        </template>
       </CusTable>
     </div>
   </div>
@@ -31,12 +36,13 @@
 
 <script setup lang="ts">
 import {getCurrentInstance, onMounted, reactive} from "vue";
-import {sysLabelGetAllSysLabels} from "@/api/modules/manage/type";
+import {ElMessage} from "element-plus";
 import {sysIndexFindIndexByPage} from "@/api/modules/manage";
 
 const {proxy} = getCurrentInstance()
 const state: any = reactive({
   query: {
+    loading: false,
     page: {
       pageNum: 1,
       pageSize: 10
@@ -79,12 +85,15 @@ const onPage = (pageNum, pageSize) => {
   if (proxy.$util.isValue(state.query.form.keyword)) {
     params.keyword = state.query.form.keyword
   }
-  proxy.$api.sysIndexFindIndexByPage(proxy.$util.formatGetParam(params)).then(res => {
+  state.query.loading = true
+  sysIndexFindIndexByPage(proxy.$util.formatGetParam(params)).then(res => {
     if (res.code === 200) {
       state.query.result.total = res.data.totalElements
       state.query.result.data = res.data.content
+      state.query.loading = false
+    } else {
+      ElMessage.error(res.msg)
     }
-    console.log(res)
   })
 }
 const onSearch = () => {
@@ -98,6 +107,16 @@ const onReset = () => {
   state.query.form = {}
   onSearch()
 }
+const onRelation = (row) => {
+}
+const onText = (row) => {
+}
+const onAdd = (row) => {
+}
+const onEdit = (row) => {
+}
+const onDel = (row) => {
+}
 onMounted(() => {
   onReset()
 })

+ 4 - 3
src/views/manage/type/detail.vue

@@ -59,6 +59,7 @@
 import {computed, getCurrentInstance, nextTick, reactive, ref, watch} from "vue";
 import {useDictionaryStore} from "@/stores";
 import {ElMessage, ElMessageBox} from "element-plus";
+import {sysLabelDetail, sysLabelSave, sysLabelUpdate} from "@/api/modules/manage/type";
 
 const emit = defineEmits(['update:show'])
 const {proxy} = getCurrentInstance()
@@ -92,7 +93,7 @@ const onSubmit = () => {
       state.loading = true
       switch (props.transfer.mode) {
         case 'add': {
-          proxy.$api.sysLabelSave(state.form).then(res => {
+          sysLabelSave(state.form).then(res => {
             if (res.code === 200) {
               ElMessage.success('新增成功!')
               emit('update:show', false)
@@ -104,7 +105,7 @@ const onSubmit = () => {
           })
         } break
         case 'edit': {
-          proxy.$api.sysLabelUpdate(state.form).then(res => {
+          sysLabelUpdate(state.form).then(res => {
             if (res.code === 200) {
               ElMessage.success('编辑成功!')
               emit('update:show', false)
@@ -127,7 +128,7 @@ const onSubmit = () => {
 }
 const initDetail = () => {
   state.loading = true
-  proxy.$api.sysLabelDetail(props.transfer.id).then(res => {
+  sysLabelDetail(props.transfer.id).then(res => {
     if (res.code === 200) {
       state.form = res.data
       state.loading = false

+ 6 - 3
src/views/manage/type/index.vue

@@ -34,6 +34,7 @@ import DetailCom from './detail.vue'
 import RelationCom from './relation.vue'
 import {useDictionaryStore} from "@/stores";
 import {ElMessage, ElMessageBox} from "element-plus";
+import {sysLabelGetAllSysLabels} from "@/api/modules/manage/type";
 
 const {proxy} = getCurrentInstance()
 const DictionaryStore = useDictionaryStore()
@@ -65,11 +66,13 @@ const state: any = reactive({
 })
 const initTree = () => {
   state.query.loading = true
-  proxy.$api.sysLabelGetAllSysLabels().then(res => {
+  sysLabelGetAllSysLabels().then(res => {
     if (res.code === 200) {
       state.query.result.data = res.data.map(v => ({...v, children: v.sysLabels}))
+      state.query.loading = false
+    } else {
+      ElMessage.error(res.msg)
     }
-    state.query.loading = false
   })
 }
 const onAdd = (row) => {
@@ -94,7 +97,7 @@ const onDel = (row) => {
     type: "warning",
   } as any).then(() => {
     state.loading = true
-    proxy.$api.sysLabelDelete(row.id).then(res => {
+    sysLabelDelete(row.id).then(res => {
       if (res.code === 200) {
         ElMessage.success('删除成功!')
       } else {

+ 4 - 4
src/views/manage/type/relation.vue

@@ -98,7 +98,7 @@ const handleSelect = (item) => {
     type: "warning",
   } as any).then(() => {
     state.loading = true
-    proxy.$api.sysLabelAddIndexToLabel(proxy.$util.formatGetParam({
+    sysLabelAddIndexToLabel(proxy.$util.formatGetParam({
       indexId: item.id,
       typeId: props.transfer.id
     })).then(res => {
@@ -115,7 +115,7 @@ const handleSelect = (item) => {
 }
 const initIndex = () => {
   state.loadingIndex = true
-  proxy.$api.sysLabelGetAllIndexsByKey().then(res => {
+  sysLabelGetAllIndexsByKey().then(res => {
     if (res.code === 200) {
       state.indexList = res.data
       state.loadingIndex = false
@@ -126,7 +126,7 @@ const initIndex = () => {
 }
 const initRelation = () => {
   state.query.loading = true
-  proxy.$api.sysLabelGetAllSysLabelTypes(props.transfer.id).then(res => {
+  sysLabelGetAllSysLabelTypes(props.transfer.id).then(res => {
     if (res.code === 200) {
       state.query.result.data = res.data
       state.query.loading = false
@@ -142,7 +142,7 @@ const onDel = (row) => {
     type: "warning",
   } as any).then(() => {
     state.loading = true
-    proxy.$api.sysLabelDeleteLink(row.id).then(res => {
+    sysLabelDeleteLink(row.id).then(res => {
       if (res.code === 200) {
         ElMessage.success('删除成功!')
         state.loading = false

+ 2 - 1
src/views/web/home/index.vue

@@ -73,6 +73,7 @@ import {computed, getCurrentInstance, onMounted, reactive} from "vue";
 import router from "@/router";
 import {ElMessage} from "element-plus";
 import {useWebStore} from "@/stores";
+import {mockGetSearchHistory} from "@/api/modules/mock/mock";
 
 const {proxy} = getCurrentInstance()
 const WebStore = useWebStore()
@@ -115,7 +116,7 @@ const noAreaCpt = computed(() => {
   return !(state.areaList.length > 0)
 })
 const initHistory = () => {
-  proxy.$api.mockGetSearchHistory().then(res => {
+  mockGetSearchHistory().then(res => {
     state.historyList = res.data
   })
 }

+ 1 - 1
src/views/web/list/index.vue

@@ -378,7 +378,7 @@ const initResultTree = () => {
 }
 const getIndexConfig = () => {
   state.resultParams.indexConfig = {}
-  proxy.$api.frontGetIndexAndFieldInfo(`id=${WebStore.searchAreaIndexMap.get(state.resultParams.activeIndex).indexId}`).then(res => {
+  frontGetIndexAndFieldInfo(`id=${WebStore.searchAreaIndexMap.get(state.resultParams.activeIndex).indexId}`).then(res => {
     state.resultParams.indexConfig = res.data
     state.ws.list()
   })