nursing_unit_vue/src/views/services/directivePackage/DirectivePackageList.vue

194 lines
5.5 KiB
Vue
Raw Normal View History

2025-03-24 14:59:31 +08:00
<template>
<div class="p-2">
<!--查询区域-->
<div class="jeecg-basic-table-form-container">
<a-form ref="formRef" :model="searchForm" :label-col="labelCol" :wrapper-col="wrapperCol">
2025-03-24 14:59:31 +08:00
<a-row :gutter="24">
<a-col :lg="6">
<a-form-item name="packageName">
<template #label><span title="服务指令包名称">服务指令包</span></template>
<a-input v-model:value="searchForm.packageName" allow-clear />
2025-03-24 14:59:31 +08:00
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<span style="float: left; overflow: hidden" class="table-page-search-submitButtons">
<a-col :lg="6">
<a-button type="primary" preIcon="ant-design:search-outlined" @click="searchQuery">查询</a-button>
<a-button type="primary" preIcon="ant-design:reload-outlined" @click="searchReset"
style="margin-left: 8px">重置</a-button>
<a-button type="primary" preIcon="ant-design:plus-outlined" @click="handleAdd"
style="margin-left: 8px">新增</a-button>
2025-03-24 14:59:31 +08:00
</a-col>
</span>
</a-col>
</a-row>
</a-form>
</div>
<a-row>
<a-col :span="6" v-for="directive of tableData.records" :key="directive.id">
<a-card :bordered="false" style="margin: 5px;">
<!-- 自定义标题区域 -->
<template #title>
<div style="display: flex; align-items: center; justify-content: space-between;">
<span>{{ directive.packageName }}</span>
<a-dropdown :trigger="['hover']" placement="bottomRight">
<a-button type="link" preIcon="tabler:settings"></a-button>
<template #overlay>
<a-menu>
<a-menu-item @click="packageEdit(directive)">
<template #icon></template>
编辑
</a-menu-item>
<a-menu-item>
<a-popconfirm title="是否确认删除?" ok-text="确认" cancel-text="取消" @confirm="remove(directive)">
删除
</a-popconfirm>
</a-menu-item>
</a-menu>
</template>
</a-dropdown>
</div>
</template>
<!-- 保持原有内容区域 -->
<div style="position: relative; height: 23vh;">
<div
style="height: 80%; overflow-y: auto; line-height: 1.5;white-space: pre-line;word-wrap: break-word;overflow-wrap: break-word;">
{{ directive.description }}
</div>
<div
style="position: absolute;bottom: 0;right: 0;font-weight: 600;color: rgba(0, 0, 0, 0.6);padding: 8px 0 0;">
{{ directive.createTime }} - {{ directive.createBy_dictText }}
</div>
</div>
</a-card>
</a-col>
</a-row>
<div
style="position: fixed;right: 20px;bottom: 20px;z-index: 999;padding: 8px 16px;border-radius: 4px;display: flex;align-items: center;">
<span style="margin-right: 10px;"> {{ tableData.total }} 条数据</span>
<Pagination showLessItems v-model:current="pageParams.pageNo" :pageSize="pageParams.pageSize" size="small"
show-quick-jumper :total="tableData.total" @change="queryList" />
</div>
2025-03-24 14:59:31 +08:00
</div>
<!-- 表单区域 -->
<DirectivePackageModal ref="registerModal" @success="handleSuccess"></DirectivePackageModal>
2025-03-24 14:59:31 +08:00
</template>
<script lang="ts" name="directivePackage-directivePackage" setup>
import { ref, reactive, onMounted } from 'vue';
2025-03-24 14:59:31 +08:00
import DirectivePackageModal from './components/DirectivePackageModal.vue'
2025-03-28 16:44:40 +08:00
import { list, queryById, deleteOne } from './DirectivePackage.api'
import { Pagination } from 'ant-design-vue';
2025-03-24 14:59:31 +08:00
const registerModal = ref();
const searchForm = ref({})
const tableData = ref({})
2025-03-24 14:59:31 +08:00
const labelCol = reactive({
xs: 24,
sm: 4,
xl: 6,
xxl: 6
});
const wrapperCol = reactive({
xs: 24,
sm: 20,
xl: 14,
xxl: 14
});
const pageParams = ref({ pageNo: 1, pageSize: 8 })
2025-03-24 14:59:31 +08:00
/**
* 搜索
2025-03-24 14:59:31 +08:00
*/
function searchQuery() {
queryList({})
2025-03-24 14:59:31 +08:00
}
/**
* 重置
2025-03-24 14:59:31 +08:00
*/
function searchReset() {
searchForm.value = {}
queryList({})
2025-03-24 14:59:31 +08:00
}
/**
* 新增
2025-03-24 14:59:31 +08:00
*/
function handleAdd() {
2025-03-24 14:59:31 +08:00
registerModal.value.disableSubmit = false;
registerModal.value.add();
2025-03-24 14:59:31 +08:00
}
/**
* 成功回调
*/
function handleSuccess() {
2025-03-28 16:44:40 +08:00
queryList({})
2025-03-24 14:59:31 +08:00
}
/**
* 数据查询
2025-03-24 14:59:31 +08:00
*/
function queryList() {
list({ pageNo: pageParams.value.pageNo, pageSize: pageParams.value.pageSize, packageName: searchForm.value.packageName }).then(res => {
console.log("🌊 ~ list ~ res:", res)
tableData.value = res
})
2025-03-24 14:59:31 +08:00
}
/**
* 编辑
* @param data
2025-03-24 14:59:31 +08:00
*/
function packageEdit(data) {
queryById({ id: data.id }).then(item => {
registerModal.value.edit(item);
})
2025-03-24 14:59:31 +08:00
}
/**
* 移除
* @param data
2025-03-24 14:59:31 +08:00
*/
function remove(data) {
2025-03-28 16:44:40 +08:00
deleteOne({ id: data.id }, handleSuccess())
}
2025-03-24 14:59:31 +08:00
onMounted(() => {
queryList({ pageNo: 1, pageSize: 10 })
})
2025-03-24 14:59:31 +08:00
</script>
<style lang="less" scoped>
.jeecg-basic-table-form-container {
padding: 0;
.table-page-search-submitButtons {
display: block;
margin-bottom: 24px;
white-space: nowrap;
}
.query-group-cust {
min-width: 100px !important;
}
.query-group-split-cust {
width: 30px;
display: inline-block;
text-align: center
}
.ant-form-item:not(.ant-form-item-with-help) {
margin-bottom: 16px;
height: 32px;
}
:deep(.ant-picker),
:deep(.ant-input-number) {
width: 100%;
}
}
</style>