Merge remote-tracking branch 'origin/jihan_0920new_护理服务、商城、积分兑换、在线问诊功能分支' into jihan_0920new_护理服务、商城、积分兑换、在线问诊功能分支

This commit is contained in:
shidongli 2023-09-26 15:02:40 +08:00
commit c34f16cb40
2 changed files with 590 additions and 0 deletions

50
src/api/system/classes.js Normal file
View File

@ -0,0 +1,50 @@
import request from '@/utils/request'
// 查询医生姓名信息列表
export function getList() {
return request({
url: '/system/hospital/getList',
method: 'get',
})
}
// 查询班次信息管理列表
export function schedule(query) {
return request({
url: '/system/schedule/list',
method: 'get',
params: query
})
}
// 新增班次
export function addschedule(data) {
return request({
url: '/system/schedule/add',
method: 'post',
data: data
})
}
// 修改
export function updateschedule(data) {
return request({
url: '/system/schedule/update',
method: 'post',
data: data
})
}
export function getById(id) {
return request({
url: '/system/schedule/getById/' + id,
method: 'get'
})
}
// 删除班次信息管理
export function delschedule(id) {
return request({
url: '/system/schedule/' + id,
method: 'delete'
})
}

View File

@ -0,0 +1,540 @@
<template>
<div class="app-container">
<el-form
:model="queryParams"
ref="queryForm"
size="small"
:inline="true"
v-show="showSearch"
label-width="68px"
>
<el-form-item label="医院名称" prop="hospitalId">
<el-select
v-model="queryParams.hospitalId"
placeholder="请选择"
style="width: 220px"
clearable
@change="hospitalitem"
>
<el-option
v-for="item in options"
:key="item.id"
:label="item.hospitalName"
:value="item.id"
></el-option>
</el-select>
</el-form-item>
<el-form-item label="班次名称" prop="scheduleName">
<el-input
v-model="queryParams.scheduleName"
placeholder="请输入班次名称"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item>
<el-button
type="primary"
icon="el-icon-search"
size="mini"
@click="handleQuery"
>搜索</el-button
>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
>重置</el-button
>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="primary"
plain
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-hasPermi="['system:hospital:add']"
>新增</el-button
>
</el-col>
<el-col :span="1.5">
<el-button
type="success"
plain
icon="el-icon-edit"
size="mini"
:disabled="single"
@click="handleUpdate"
v-hasPermi="['system:hospital:edit']"
>修改</el-button
>
</el-col>
<!-- <el-col :span="1.5">
<el-button
type="danger"
plain
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['system:hospital:remove']"
>删除</el-button
>
</el-col> -->
<!-- <el-col :span="1.5">
<el-button
type="warning"
plain
icon="el-icon-download"
size="mini"
@click="handleExport"
v-hasPermi="['system:hospital:export']"
>导出</el-button>
</el-col>-->
<right-toolbar
:showSearch.sync="showSearch"
@queryTable="getList"
></right-toolbar>
</el-row>
<el-table
v-loading="loading"
:data="hospitalList"
@selection-change="handleSelectionChange"
>
<el-table-column type="selection" width="55" align="center" />
<!-- <el-table-column label="主键id" align="center" prop="id" /> -->
<el-table-column label="医院名称" align="center" prop="hospitalName" />
<el-table-column label="班次名称" align="center" prop="scheduleName" />
<el-table-column
label="上午开始时间"
align="center"
prop="forenoonStartTime"
/>
<el-table-column
label="上午结束时间"
align="center"
prop="forenoonEndTime"
/>
<el-table-column
label="下午开始时间"
align="center"
prop="afternoonStartTime"
/>
<el-table-column
label="下午结束时间"
align="center"
prop="afternoonEndTime"
/>
<el-table-column label="启用状态" align="center" prop="status">
<template slot-scope="scope">
{{ scope.row.status == "0" ? "正常" : "" }}
{{ scope.row.status == "1" ? "停用" : "" }}
</template>
</el-table-column>
<el-table-column
label="操作"
align="center"
class-name="small-padding fixed-width"
>
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['system:hospital:edit']"
>编辑</el-button
>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['system:hospital:remove']"
>删除</el-button
>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total > 0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 添加或修改医院信息管理对话框 -->
<el-dialog :title="title" :visible.sync="open" width="900px" append-to-body>
<el-form
ref="form"
:model="form"
:rules="rules"
label-width="110px"
:inline="true"
>
<el-form-item label="医院名称" prop="hospitalId">
<el-select
v-model="form.hospitalId"
placeholder="请选择"
style="width: 220px"
@change="hospitalitem"
>
<el-option
v-for="item in options"
:key="item.id"
:label="item.hospitalName"
:value="item.id"
></el-option>
</el-select>
</el-form-item>
<el-form-item label="班次名称" prop="scheduleName">
<el-input
style="width: 220px"
maxlength="20"
v-model="form.scheduleName"
placeholder="请输入班次名称"
/>
</el-form-item>
<el-form-item label="上午开始时间" prop="forenoonStartTime">
<el-time-select
placeholder="起始时间"
v-model="form.forenoonStartTime"
:picker-options="{
start: '07:00',
step: '00:15',
end: '12:00',
}"
>
</el-time-select>
</el-form-item>
<el-form-item label="上午结束时间" prop="forenoonEndTime">
<el-time-select
placeholder="起始时间"
v-model="form.forenoonEndTime"
:picker-options="{
start: '07:00',
step: '00:15',
end: '12:00',
minTime: form.forenoonStartTime,
}"
>
</el-time-select>
</el-form-item>
<el-form-item label="下午开始时间" prop="afternoonStartTime">
<el-time-select
placeholder="起始时间"
v-model="form.afternoonStartTime"
:picker-options="{
start: '12:00',
step: '00:15',
end: '19:00',
}"
>
</el-time-select>
</el-form-item>
<el-form-item label="下午结束时间" prop="afternoonEndTime">
<el-time-select
placeholder="结束时间"
v-model="form.afternoonEndTime"
:picker-options="{
start: '12:00',
step: '00:15',
end: '19:00',
minTime: form.afternoonStartTime,
}"
>
</el-time-select>
</el-form-item>
<el-form-item label="启用状态" prop="status">
<el-select
v-model="form.status"
placeholder="请选择"
style="width: 220px"
>
<el-option
v-for="item in option"
:key="item.value"
:label="item.label"
:value="item.value"
></el-option>
</el-select>
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm"> </el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import {
getList,
schedule,
addschedule,
updateschedule,
getById,
delschedule,
} from "@/api/system/classes";
// import editor from "@/components/Editor";
export default {
// components: { editor },
name: "Hospital",
data() {
return {
startTime: "",
endTime: "",
startTimemoning: "",
startTimeend: "",
//
loading: true,
value1: new Date(2016, 9, 10, 18, 40),
value2: new Date(2016, 9, 10, 18, 40),
//
ids: [],
//
single: true,
//
multiple: true,
imgsurl: { pictureUrlList: [] },
//
showSearch: true,
//
total: 0,
//
hospitalList: [],
//
title: "",
//
open: false,
//
options: [],
option: [
{
value: "0",
label: "正常",
},
{
value: "1",
label: "停用",
},
],
queryParams: {
pageNum: 1,
pageSize: 10,
hospitalName: null,
hospitalId: null,
// hospitalCode: null,
// hospitalAddress: null,
// phone: null,
// hospitalIntroduce: null,
// hospitalSort: null,
},
//
form: {},
//
rules: {
hospitalId: [
{
required: true,
message: "请选择医院名称",
trigger: "blur",
},
],
scheduleName: [
{
required: true,
message: "请输入班次名称",
trigger: "blur",
},
],
// phone: [
// {
// required: true,
// // validator: checkMobile,
// message: "",
// trigger: "blur",
// },
// ],
// hospitalIntroduce: [
// {
// required: true,
// message: "",
// trigger: "blur",
// },
// ],
// hospitalAddress: [
// {
// required: true,
// message: "",
// trigger: "blur",
// },
// ],
},
};
},
created() {
this.getList();
this.info();
},
methods: {
hospitalitem(e) {
this.form.hospitalName = this.options.find(
(f) => f.id == e
)?.hospitalName;
},
//
info() {
getList().then((res) => {
console.log(res);
this.options = res.data;
});
},
imgs(item) {
this.imgsurl.pictureUrlList.push(item);
},
/** 查询医院信息管理列表 */
getList() {
this.loading = true;
schedule(this.queryParams).then((response) => {
this.hospitalList = response.rows;
this.total = response.total;
this.loading = false;
});
},
//
cancel() {
this.open = false;
this.reset();
},
//
reset() {
this.form = {
id: null,
hospitalName: null,
hospitalCode: null,
afternoonEndTime: null,
afternoonStartTime: null,
forenoonEndTime: null,
forenoonStartTime: null,
scheduleName: null,
status: "0",
hospitalId: null,
// hospitalSort: null,
createBy: null,
createTime: null,
updateBy: null,
updateTime: null,
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
(this.queryParams.hospitalName = ""), this.handleQuery();
},
//
handleSelectionChange(selection) {
this.ids = selection.map((item) => item.id);
this.single = selection.length !== 1;
this.multiple = !selection.length;
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "添加班次管理";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const id = row.id || this.ids;
getById(id).then((response) => {
this.form = response.data;
this.open = true;
this.title = "修改班次管理";
});
},
/** 提交按钮 */
submitForm() {
if (this.form.forenoonStartTime && !this.form.forenoonEndTime) {
this.$message.error("请选择上午结束时间!");
} else if (this.form.forenoonEndTime && !this.form.forenoonStartTime) {
this.$message.error("请选择上午开始时间!");
} else if (this.form.afternoonStartTime && !this.form.afternoonEndTime) {
this.$message.error("请选择下午结束时间!");
} else if (this.form.afternoonEndTime && !this.form.afternoonStartTime) {
this.$message.error("请选择下午开始时间!");
}
else if (
!this.form.afternoonEndTime &&
!this.form.afternoonStartTime &&
!this.form.forenoonStartTime &&
!this.form.afternoonEndTime
) {
this.$message.error("请选择上午开始和结束时间和下午开始和结束时间!");
} else {
this.$refs["form"].validate((valid) => {
if (valid) {
if (this.form.id != null) {
updateschedule(this.form).then((response) => {
if (response.code == 200) {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
}
});
} else {
addschedule(this.form).then((response) => {
if (response.code == 200) {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
}
});
}
}
});
}
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$modal
.confirm("是否确认删除此医院的信息?")
.then(function () {
return delschedule(ids);
})
.then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
})
.catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
this.download(
"system/hospital/export",
{
...this.queryParams,
},
`hospital_${new Date().getTime()}.xlsx`
);
},
},
};
</script>