wms-antdvue/.svn/pristine/e9/e9d568a2f320e23ea41302629ab81582fe56c4a7.svn-base
2024-11-07 16:33:03 +08:00

180 lines
5.1 KiB
Plaintext

<template>
<PageWrapper>
<a-row :gutter="10" class="mt-3">
<a-col :xs="24" :sm="24" :md="6" :lg="6" :xl="6" class="mb-4">
<a-card shadow="hover" class="border-0">
<template #title>
<a-row>
<a-col :span="10">
<a-input type="text" v-model:value="params.name" placeholder="请输入字典名称" allow-clear>
</a-input>
</a-col>
<a-col :span="14" style="text-align: right;">
<a-button type="primary" @click="pager.page=1;loadDataTable()">
<template #icon>
<SearchOutlined />
</template>查询
</a-button>
<a-button type="primary" @click="dictRefresh" style="margin-left:8px;"
v-perm="['sys:dict:cache']">
<template #icon>
<RedoOutlined />
</template>刷新缓存</a-button>
</a-col>
</a-row>
<div style="margin-top:15px;">
<a-space>
<a-button type="primary" @click="addDict" v-perm="['sys:dict:add']">
<template #icon>
<PlusOutlined />
</template>
新建
</a-button>
<a-button type="warning" @click="handleEdit" v-perm="['sys:dict:edit']">
<template #icon>
<EditOutlined />
</template>编辑
</a-button>
<a-button type="danger" @click="handleDelete()" v-perm="['sys:dict:delete']">
<template #icon>
<DeleteOutlined />
</template>删除
</a-button>
</a-space>
</div>
</template>
<div :style="{ height: fwbHeight + 'px' }" class="dict-list-box">
<div v-for="(item, index) in dictDataList" :key="index" @click="onCheckedRow(item)" class="dict-item"
:class="item.id == dictId ? 'active' : ''">
<span class="t1">{{ item.name }}<span class="t2">({{ item.code }})</span></span>
</div>
</div>
<pagination style="justify-content: flex-end" class="mt-10 flex" @change="loadDataTable" v-model="pager">
</pagination>
</a-card>
</a-col>
<a-col :xs="24" :sm="24" :md="18" :lg="18" :xl="18" class="mb-4">
<a-card shadow="hover" class="mb-4 border-0 proCard">
<dictItem :dictId="dictId" v-if="dictItemShow"></dictItem>
</a-card>
</a-col>
</a-row>
<editDialog v-if="editVisible" :dictId="dictId" v-model:visible="editVisible" @success="loadDataTable()">
</editDialog>
</PageWrapper>
</template>
<script lang="ts" setup>
import { ref,nextTick, defineAsyncComponent,onMounted } from 'vue';
import { SearchOutlined } from '@ant-design/icons-vue';;
import { getDictList, refreshCache, dictDelete } from '@/api/data/dictionary';
import { PlusOutlined,EditOutlined,DeleteOutlined,RedoOutlined} from '@ant-design/icons-vue';
import dictItem from './dictItem.vue';
import { Modal,message } from 'ant-design-vue';
const editDialog = defineAsyncComponent(() =>
import('./edit.vue')
)
const dictId = ref(0)
const dictItemShow = ref(false)
const editVisible = ref(false)
const params = ref({
name: '',
});
const dictDataList = ref([])
const pager = ref({
page: 1,
size: 20,
count: dictDataList.value.length
});
const fwbHeight = document.body.clientHeight - 415
const addDict = async () => {
await nextTick();
editVisible.value=true
};
//刷新缓存
async function dictRefresh() {
await refreshCache();
message.success("刷新成功");
}
const handleEdit = () => {
editVisible.value=true
};
function onCheckedRow(row) {
dictId.value = row.id
}
const loadDataTable = async () => {
const result = await getDictList({ ...params.value, pageNo:pager.value.page,pageSize:pager.value.size });
dictId.value = result?.records[0]?.id
dictItemShow.value = true
dictDataList.value = result.records
pager.value.count = result.total
};
async function handleDelete() {
Modal.confirm({
title: '提示',
content: "确定要删除?",
onOk: async () => {
dictDelete(dictId.value);
message.success("删除成功");
pager.value.page = 1
loadDataTable()
}
});
}
onMounted(() => {
loadDataTable()
})
</script>
<style lang="less" scoped>
.card-header {
display: flex;
justify-content: space-between;
align-items: center;
}
.dict-list-box {
overflow: auto;
.dict-item {
height: 40px;
line-height: 40px;
padding: 0 6px;
cursor: pointer;
display: flex;
justify-content: space-between;
.t1 {
font-size: 14px;
display: block;
font-weight: 700;
.t2 {
font-size: 12px;
font-weight: normal;
}
}
&.active {
background-color: #e8f1ff;
border-radius: 3px;
.t1 {
color: #1677ff;
}
.t2 {
color:rgb(22, 119, 255,.8)
}
}
.ant-badge__content.is-fixed {
top: 20px;
right: calc(-10px + var(--ant-badge-size)/ 2);
}
}
}
</style>