236 lines
6.8 KiB
Vue
236 lines
6.8 KiB
Vue
<template>
|
|
<div class="app-container">
|
|
<el-row :gutter="10" class="mb8">
|
|
<el-col :span="1.5">
|
|
<el-button type="primary" plain icon="Plus" @click="handleAdd"> 新增 </el-button>
|
|
</el-col>
|
|
<el-col :span="1.5">
|
|
<el-tooltip
|
|
:content="selectRowIds.length == 0 ? '至少选择一条数据' : ''"
|
|
placement="top"
|
|
:disabled="selectRowIds.length != 0"
|
|
>
|
|
<el-button
|
|
type=""
|
|
plain
|
|
icon="Delete"
|
|
:disabled="selectRowIds.length == 0"
|
|
@click="handleDelete"
|
|
>删除</el-button
|
|
>
|
|
</el-tooltip>
|
|
</el-col>
|
|
<el-col :span="1.5">
|
|
<el-button type="" plain icon="Download" @click="handleExport"> 导出 </el-button>
|
|
</el-col>
|
|
<el-col :span="1.5">
|
|
<el-button type="" plain icon="Refresh" @click="getPageList">刷新</el-button>
|
|
</el-col>
|
|
<right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
|
|
</el-row>
|
|
<el-table
|
|
ref="bodyStructureTableRef"
|
|
v-loading="loading"
|
|
:data="bodyStructure"
|
|
row-key="id"
|
|
@selection-change="handleSelectionChange"
|
|
>
|
|
<el-table-column type="selection" width="55" />
|
|
<el-table-column label="部位名称" align="left" prop="name" />
|
|
<el-table-column label="拼音" align="left" prop="pyStr" />
|
|
<el-table-column label="五笔拼音" align="left" prop="wbStr" />
|
|
<el-table-column label="状态" align="center" prop="statusEnum_enumText" />
|
|
<el-table-column label="操作" align="center">
|
|
<template #default="scope">
|
|
<el-button link type="primary" @click="handelEdit(scope.row)">编辑</el-button>
|
|
<el-button
|
|
link
|
|
type="primary"
|
|
@click="handleDisabled(scope.row.id)"
|
|
v-if="scope.row.statusEnum == '2'"
|
|
>停用</el-button
|
|
>
|
|
<el-button link type="primary" @click="handelEnable(scope.row.id)" v-else>启用</el-button>
|
|
<el-button link type="primary" @click="handleAddInferior(scope.row)">
|
|
添加下级
|
|
</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
|
|
|
|
<!-- 添加或修改参数配置对话框 -->
|
|
<el-dialog :title="title" v-model="open" width="600px" @close="cancel" append-to-body>
|
|
<el-form ref="bodyStructureRef" :model="form" :rules="rules" label-width="80px">
|
|
<el-form-item label="id" prop="id" v-show="false">
|
|
<el-input v-model="form.id" placeholder="请输入部位编号" />
|
|
</el-form-item>
|
|
<el-form-item label="部位编号" prop="busNo" v-show="false">
|
|
<el-input v-model="form.busNo" placeholder="请输入部位编号" />
|
|
</el-form-item>
|
|
<el-form-item label="部位名称" prop="name">
|
|
<el-input v-model="form.name" placeholder="请输入部位名称" />
|
|
</el-form-item>
|
|
|
|
<el-col>
|
|
<el-form-item label="上级部位" prop="busNoParent">
|
|
<el-tree-select
|
|
clearable
|
|
style="width: 100%"
|
|
v-model="form.busNoParent"
|
|
:data="bodyStructure"
|
|
:props="{ value: 'busNo', label: 'name', children: 'children' }"
|
|
value-key="id"
|
|
check-strictly
|
|
/>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-form>
|
|
<template #footer>
|
|
<div class="dialog-footer">
|
|
<el-button type="primary" @click="submitForm">确 定</el-button>
|
|
<el-button @click="cancel">取 消</el-button>
|
|
</div>
|
|
</template>
|
|
</el-dialog>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup name="BodyStructure">
|
|
import {
|
|
getList,
|
|
deleteBodyStructure,
|
|
addBodyStructure,
|
|
updateBodyStructure,
|
|
disableBodyStructure,
|
|
enableBodyStructure,
|
|
} from './components/api';
|
|
|
|
const { proxy } = getCurrentInstance();
|
|
const loading = ref(true);
|
|
const bodyStructure = ref([]);
|
|
const queryParams = ref({});
|
|
const open = ref(false);
|
|
const form = ref({
|
|
id: undefined,
|
|
busNo: undefined,
|
|
name: undefined,
|
|
statusEnum: undefined,
|
|
busNoParent: undefined,
|
|
});
|
|
const bodyStructureTableRef = ref();
|
|
const bodyStructureRef = ref();
|
|
const selectRowIds = ref([]);
|
|
const total = ref(0);
|
|
const title = ref('');
|
|
const rules = ref({
|
|
busNo: [{ required: false, message: '请输入部位编号', trigger: 'input' }],
|
|
name: [
|
|
{ required: true, message: '请输入部位名称', trigger: 'change' },
|
|
{ min: 2, max: 20, message: '长度在 2 到 20 个字符', trigger: 'change' },
|
|
],
|
|
});
|
|
|
|
getPageList();
|
|
|
|
function reset() {
|
|
form.value.id = undefined;
|
|
bodyStructureRef.value.resetFields();
|
|
}
|
|
|
|
function getPageList() {
|
|
loading.value = false;
|
|
getList(queryParams.value).then((res) => {
|
|
bodyStructure.value = res.data.records;
|
|
total.value = res.data.total;
|
|
loading.value = false;
|
|
});
|
|
}
|
|
|
|
function handleAdd() {
|
|
title.value = '添加身体部位';
|
|
open.value = true;
|
|
reset();
|
|
console.log(form.value);
|
|
}
|
|
|
|
function handelEdit(row) {
|
|
console.log(row.busNo);
|
|
|
|
title.value = '编辑部位';
|
|
open.value = true;
|
|
setTimeout(() => {
|
|
form.value.id = row.id;
|
|
form.value.busNo = row.busNo;
|
|
form.value.name = row.name;
|
|
form.value.statusEnum = row.statusEnum;
|
|
form.value.busNoParent = row.busNo.split('.').length > 1 ? row.busNo.split('.')[0] : undefined;
|
|
}, 50);
|
|
}
|
|
|
|
function cancel() {
|
|
open.value = false;
|
|
reset();
|
|
console.log(form.value);
|
|
}
|
|
|
|
// 新增/编辑
|
|
function submitForm() {
|
|
proxy.$refs['bodyStructureRef'].validate((valid) => {
|
|
if (valid) {
|
|
if (form.value.id == undefined) {
|
|
if (form.value.busNoParent) {
|
|
form.value.busNo = form.value.busNoParent;
|
|
}
|
|
addBodyStructure(form.value).then((res) => {
|
|
proxy.$modal.msgSuccess('操作成功');
|
|
open.value = false;
|
|
getPageList();
|
|
});
|
|
} else {
|
|
updateBodyStructure(form.value).then((res) => {
|
|
proxy.$modal.msgSuccess('操作成功');
|
|
open.value = false;
|
|
getPageList();
|
|
});
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
// 添加下级
|
|
function handleAddInferior(row) {
|
|
title.value = '添加下级';
|
|
open.value = true;
|
|
form.value.busNoParent = row.busNo;
|
|
}
|
|
|
|
// 删除
|
|
function handleDelete() {
|
|
loading.value = true;
|
|
deleteBodyStructure(selectRowIds.value.join(',')).then((res) => {
|
|
proxy.$modal.msgSuccess('操作成功');
|
|
loading.value = false;
|
|
getPageList();
|
|
});
|
|
}
|
|
// 停用
|
|
function handleDisabled(id) {
|
|
disableBodyStructure(id).then((res) => {
|
|
proxy.$modal.msgSuccess('操作成功');
|
|
getPageList();
|
|
});
|
|
}
|
|
|
|
// 启用
|
|
function handelEnable(id) {
|
|
enableBodyStructure(id).then((res) => {
|
|
proxy.$modal.msgSuccess('操作成功');
|
|
getPageList();
|
|
});
|
|
}
|
|
|
|
function handleSelectionChange() {
|
|
selectRowIds.value = bodyStructureTableRef.value.getSelectionRows().map((item) => item.id);
|
|
}
|
|
</script> |