|
@@ -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()
|
|
|
})
|