| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302 |
- <template>
- <div class="m-4">
- <div>
- <XTTitle title="个人排班" />
- <div class="flex justify-between my-4">
- <XTTab
- type="illness"
- :width="158"
- :selected="activeKey"
- :data="tabData"
- @item-click="callTab"
- />
- <XTForm :form-data="formData" @change="callFormChange" />
- </div>
- <BasicTable @register="registerTable">
- <template #bodyCell="{ column, record }">
- <template v-if="column.key === 'name'">
- <span :class="['table-dot', 'table-dot--' + record.status]" />
- <span>{{ record.name }}</span>
- </template>
- <template v-if="column.key === 'patientGender'">
- <span
- :style="{
- backgroundColor: formatDictColor(bizDictOptions.gender, record.patientGender),
- color: formatDictFontColor(bizDictOptions.gender, record.patientGender),
- padding: '1px 6px',
- borderRadius: '2px',
- marginRight: '4px',
- }"
- >
- {{ formatDictValue(bizDictOptions.gender, record.patientGender) }}
- </span>
- </template>
- <template v-if="column.key === 'patientType'">
- {{ formatDictValue(bizDictOptions.type, record.patientType) }}
- </template>
- <!-- <template v-if="column.key === 'infectiousDiseases'">
- <div class="flex">
- <div
- v-for="item in record.infectiousDiseases"
- :key="item"
- :style="{
- backgroundColor: formatDictColor(bizDictOptions.infectiousDiseases, item),
- color: formatDictFontColor(bizDictOptions.infectiousDiseases, item),
- padding: '1px 6px',
- borderRadius: '2px',
- marginRight: '4px',
- }"
- >
- {{ formatDictValue(bizDictOptions.infectiousDiseases, item) }}
- </div>
- </div>
- </template> -->
- <template v-if="column.key === 'frequency'">
- <span v-if="record.frequency">
- {{ record.frequency?.times }}次/{{ record.frequency?.week }}周
- </span>
- <span v-else> 无 </span>
- </template>
- <template v-if="column.key === 'machine' && record.machine.length">
- <div class="flex">
- <div v-for="(item, index) in record.machine" :key="item" class="inline-flex">
- <i
- v-if="item == 'pump_dual'"
- class="mr-1 iconfont icon-xt-dual-pump_default color-man"
- />
- {{ formatDictValue(bizDictOptions.pump, item) }}
- <span v-if="index < record.machine.length - 1">、</span>
- </div>
- </div>
- </template>
- <template v-if="column.key === 'specialNeed'">
- <div class="flex table-special">
- <div class="inline-flex">
- {{ record.specialNeedWeek }}
- </div>
- <div class="divider" v-if="record.specialNeedSailingSorts?.length" />
- <div class="inline-flex"> 第二班、第三班 </div>
- </div>
- </template>
- <template v-if="column.key === 'action'">
- <TableAction
- :actions="[
- {
- auth: 'sys:log:query',
- icon: 'icon-xt-details_edit_default|iconfont',
- tooltip: '编辑',
- onClick: handleEdit.bind(null, record),
- },
- {
- auth: 'sys:log:query',
- disabled: !record.frequency,
- icon: 'icon-xt-bed_default|iconfont',
- tooltip: '排班',
- onClick: handleEdit.bind(null, record),
- },
- // {
- // auth: 'sys:log:query',
- // icon: 'icon-xt-details_delete_default|iconfont',
- // tooltip: '删除',
- // popConfirm: {
- // title: '是否确认删除',
- // placement: 'left',
- // confirm: handleDelete.bind(null, record),
- // },
- // },
- ]"
- />
- </template>
- </template>
- </BasicTable>
- </div>
- <FormModal @register="registerModal" @success="callSuccess" />
- </div>
- </template>
- <script setup lang="ts">
- import { XTTitle } from '/@/components/XTTitle/index';
- import { XTTab } from '/@/components/XTTab/index';
- import { XTForm } from '/@/components/XTForm/index';
- import { BasicTable, useTable, TableAction } from '/@/components/TableCard';
- import { BasicTab, BasicTabActive, BasicWeekEnum, columns } from './data';
- import { ref } from 'vue';
- import {
- bedScheduledPersonQueryPage,
- bedScheduledPersonStats,
- // bedScheduledPersonRemove,
- } from '/@/api/biz/bed/scheduledPersonApi';
- import { listDictModelBatch } from '@/api/common';
- import { formatDictColor, formatDictFontColor, formatDictValue } from '/@/utils';
- import { onMounted, reactive } from 'vue';
- import { useModal } from '/@/components/Modal';
- import FormModal from './FormModal.vue';
- // import { useMessage } from '@/hooks/web/useMessage';
- const bizDictOptions = reactive<any>({});
- const bizDictData = ref([
- { key: 'gender', dictCode: 'pb_sex' },
- { key: 'type', dictCode: 'pb_type' },
- { key: 'pump', dictCode: 'bm_pump' },
- ]);
- const activeKey = ref(BasicTabActive);
- const tabData = ref(BasicTab);
- const [registerModal, { openModal }] = useModal();
- // const { createMessage } = useMessage();
- onMounted(async () => {
- const res = await listDictModelBatch(bizDictData.value.map(ele => ele.dictCode));
- for (const i in res) {
- const filter = bizDictData.value.filter(ele => ele.dictCode == i)[0];
- bizDictOptions[filter.key] = res[i];
- }
- const stats = await bedScheduledPersonStats();
- tabData.value = tabData.value.map(ele => {
- if (ele.key == '0') {
- ele.value = stats.all;
- }
- if (ele.key == '1') {
- ele.value = stats.newPatient;
- }
- if (ele.key == '2') {
- ele.value = stats.noneScheduled;
- }
- return ele;
- });
- });
- const [registerTable, { reload }] = useTable({
- api: bedScheduledPersonQueryPage,
- rowKey: 'id',
- columns,
- showIndexColumn: true,
- bordered: true,
- actionColumn: {
- width: 100,
- title: '操作',
- dataIndex: 'action',
- fixed: 'right',
- },
- beforeFetch: handleBeforeFetch,
- afterFetch: handleAfterFetch,
- });
- // 筛选数据
- const formData = ref([
- {
- name: 'tableSort',
- componentType: 'Select',
- placeholder: '请选择',
- width: 120,
- defaultValue: 'archivesCreateTime',
- dicts: [
- { label: '建档时间', value: 'archivesCreateTime' },
- { label: '按姓氏', value: 'patientNamePinyin' },
- ],
- },
- {
- name: 'patientName',
- componentType: 'Input',
- placeholder: '请输入患者姓名',
- prefix: 'icon-xt-search',
- width: 240,
- },
- ]);
- const formValue = reactive({
- patientName: '',
- tableSort: 'archivesCreateTime',
- }) as any;
- // 表格请求之前,对参数进行处理, 添加默认 排序
- function handleBeforeFetch(params) {
- return {
- ...params,
- // queryType: activeKey.value == '0' ? '0' : activeKey.value,
- patientName: formValue.patientName,
- orders: [{ field: formValue.tableSort, direction: 'DESC' }],
- };
- }
- function handleAfterFetch(data) {
- console.log('🚀 ~ file: index.vue:238 ~ handleAfterFetch ~ data:', data);
- const res = data.map(ele => {
- ele.specialNeedWeek = '';
- for (const i in ele.specialNeed) {
- if (ele.specialNeed[i] && i != 'sailingSorts') {
- ele.specialNeedWeek = ele.specialNeedWeek.concat('、', BasicWeekEnum[i]);
- }
- }
- ele.specialNeedWeek = ele.specialNeedWeek.substring(1);
- // 班次需要请求
- ele.specialNeedSailingSorts = ele.specialNeed?.sailingSorts;
- // console.log('ele', ele);
- return ele;
- });
- return res;
- }
- // 详情按钮事件
- function handleEdit(record: Recordable) {
- console.log('🚀 ~ file: index.vue:206 ~ handleView ~ record:', record);
- record.gender = formatDictValue(bizDictOptions.gender, record.patientGender);
- openModal(true, {
- isUpdate: true,
- record,
- });
- }
- // 删除按钮事件
- // async function handleDelete(record: Recordable) {
- // await bedScheduledPersonRemove([record.id]);
- // createMessage.success('删除成功!');
- // await reload();
- // }
- // 弹窗回调事件
- async function callSuccess({ isUpdate, values }) {
- console.log(isUpdate);
- console.log(values);
- await reload();
- }
- // 回调
- async function callTab(data) {
- activeKey.value = data.value;
- await reload();
- }
- async function callFormChange(data) {
- formValue.patientName = data.patientName ? data.patientName : '';
- formValue.tableSort = data.tableSort ? data.tableSort : '';
- await reload();
- }
- </script>
- <style lang="less" scoped>
- ::v-deep(.ant-btn-link) {
- color: rgb(61 65 85 / 100%);
- }
- .table-dot {
- display: inline-block;
- width: 10px;
- height: 10px;
- margin-right: 6px;
- border-radius: 50%;
- &--1 {
- background-color: #1bc1b3;
- }
- &--2 {
- background-color: #f7b500;
- }
- }
- .divider {
- height: 16px;
- width: 1px;
- background-color: #ccc;
- margin: 4px 6px 0;
- }
- .table-special .table-special-item:last-of-type {
- color: red;
- }
- </style>
|