|
@@ -10,8 +10,8 @@
|
|
|
/>
|
|
|
<CusButton type="main" title="搜索" @click="onSearch"/>
|
|
|
<CusButton type="main" title="重置" @click="onReset"/>
|
|
|
- <CusButton title="导出" style="margin-left: auto" @click="onReset"/>
|
|
|
- <CusButton type="main" title="新增" @click="onReset"/>
|
|
|
+ <CusButton title="导出" style="margin-left: auto"/>
|
|
|
+ <CusButton type="main" title="新增" @click="onAdd"/>
|
|
|
</CusForm>
|
|
|
</div>
|
|
|
<div class="__cus-manage_content-main" v-loading="state.query.loading">
|
|
@@ -23,6 +23,15 @@
|
|
|
:table-head="state.query.tableHead"
|
|
|
@handlePage="onPage"
|
|
|
>
|
|
|
+ <template #shareMethod-column-value="{scope}">
|
|
|
+ {{DictionaryStore.gxMethodMap.get(scope.row.shareMethod)}}
|
|
|
+ </template>
|
|
|
+ <template #shareCycle-column-value="{scope}">
|
|
|
+ {{DictionaryStore.gxCycleMap.get(scope.row.shareCycle)}}
|
|
|
+ </template>
|
|
|
+ <template #themeMode-column-value="{scope}">
|
|
|
+ {{DictionaryStore.themeModeMap.get(scope.row.themeMode)}}
|
|
|
+ </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)"/>
|
|
@@ -31,6 +40,7 @@
|
|
|
</template>
|
|
|
</CusTable>
|
|
|
</div>
|
|
|
+ <DetailCom v-model:show="state.detail.show" :transfer="state.detail.transfer" @refresh="onSearch"/>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
@@ -38,8 +48,11 @@
|
|
|
import {getCurrentInstance, onMounted, reactive} from "vue";
|
|
|
import {ElMessage} from "element-plus";
|
|
|
import {sysIndexFindIndexByPage} from "@/api/modules/manage";
|
|
|
+import DetailCom from "./detail.vue";
|
|
|
+import {useDictionaryStore} from "@/stores";
|
|
|
|
|
|
const {proxy} = getCurrentInstance()
|
|
|
+const DictionaryStore = useDictionaryStore()
|
|
|
const state: any = reactive({
|
|
|
query: {
|
|
|
loading: false,
|
|
@@ -55,22 +68,35 @@ const state: any = reactive({
|
|
|
{value: "shareMethod", label: "共享方式", width: 180},
|
|
|
{value: "shareCycle", label: "共享周期", width: 180},
|
|
|
{value: "pictureField", label: "图片字段", width: 180},
|
|
|
- {value: "themeMode", label: "所属主题", width: 180},
|
|
|
+ {value: "themeMode", label: "主题模式", width: 180},
|
|
|
{value: "pictureModeCardNum", label: "图模式卡片数", width: 180},
|
|
|
{value: "cardColumnNum", label: "卡片列数", width: 180},
|
|
|
- {value: "columnModelNum", label: "列表模式列数", width: 180},
|
|
|
+ {value: "columnModelNum", label: "列模式列数", width: 180},
|
|
|
{value: "num", label: "数据量", width: 180},
|
|
|
{value: "linkTypeNum", label: "关联分类数量", width: 180},
|
|
|
{value: "createTime", label: "创建时间", width: 180},
|
|
|
{value: "updateTime", label: "最后修改时间", width: 180},
|
|
|
{value: "remark", label: "备注", width: 200},
|
|
|
- {value: "do", label: "操作", width: 200, fixed: 'right'},
|
|
|
+ {value: "do", label: "操作", width: 320, fixed: 'right'},
|
|
|
],
|
|
|
form: {},
|
|
|
+ formReal: {},
|
|
|
result: {
|
|
|
total: 0,
|
|
|
data: []
|
|
|
}
|
|
|
+ },
|
|
|
+ detail: {
|
|
|
+ show: false,
|
|
|
+ transfer: {}
|
|
|
+ },
|
|
|
+ relation: {
|
|
|
+ show: false,
|
|
|
+ transfer: {}
|
|
|
+ },
|
|
|
+ text: {
|
|
|
+ show: false,
|
|
|
+ transfer: {}
|
|
|
}
|
|
|
})
|
|
|
const onPage = (pageNum, pageSize) => {
|
|
@@ -82,8 +108,8 @@ const onPage = (pageNum, pageSize) => {
|
|
|
page: state.query.page.pageNum,
|
|
|
size: state.query.page.pageSize,
|
|
|
}
|
|
|
- if (proxy.$util.isValue(state.query.form.keyword)) {
|
|
|
- params.keyword = state.query.form.keyword
|
|
|
+ if (proxy.$util.isValue(state.query.formReal.keyword)) {
|
|
|
+ params.keyword = state.query.formReal.keyword
|
|
|
}
|
|
|
state.query.loading = true
|
|
|
sysIndexFindIndexByPage(proxy.$util.formatGetParam(params)).then(res => {
|
|
@@ -97,6 +123,7 @@ const onPage = (pageNum, pageSize) => {
|
|
|
})
|
|
|
}
|
|
|
const onSearch = () => {
|
|
|
+ state.query.formReal = JSON.parse(JSON.stringify(state.query.form))
|
|
|
onPage(1, state.query.page.pageSize)
|
|
|
}
|
|
|
const onReset = () => {
|
|
@@ -111,13 +138,29 @@ const onRelation = (row) => {
|
|
|
}
|
|
|
const onText = (row) => {
|
|
|
}
|
|
|
-const onAdd = (row) => {
|
|
|
+const onAdd = () => {
|
|
|
+ state.detail.transfer = {
|
|
|
+ mode: 'add'
|
|
|
+ }
|
|
|
+ state.detail.show = true
|
|
|
}
|
|
|
const onEdit = (row) => {
|
|
|
+ state.detail.transfer = {
|
|
|
+ mode: 'edit',
|
|
|
+ id: row.id,
|
|
|
+ }
|
|
|
+ state.detail.show = true
|
|
|
}
|
|
|
const onDel = (row) => {
|
|
|
}
|
|
|
+const initDictionary = () => {
|
|
|
+ DictionaryStore.initDict('gx_method')
|
|
|
+ DictionaryStore.initDict('gx_cycle')
|
|
|
+ DictionaryStore.initDict('theme_mode')
|
|
|
+ DictionaryStore.initDict('default_model')
|
|
|
+}
|
|
|
onMounted(() => {
|
|
|
+ initDictionary()
|
|
|
onReset()
|
|
|
})
|
|
|
</script>
|