This commit is contained in:
mkm 2023-08-14 18:20:53 +08:00
commit 38312e2a36
6 changed files with 3377 additions and 1090 deletions

2890
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -25,6 +25,7 @@
"vue-clipboard3": "^2.0.0",
"vue-echarts": "^6.2.3",
"vue-router": "^4.0.16",
"vue-simple-calendar": "^6.3.1",
"vue3-video-play": "^1.3.1-beta.6",
"vuedraggable": "^4.1.0"
},

View File

@ -1,168 +1,126 @@
<template>
<div>
<el-card class="!border-none" v-loading="loading" shadow="never">
<el-button v-perms="['flow_type/add']" type="primary" @click="handleAdd">
<template #icon>
<icon name="el-icon-Plus" />
</template>
新增
</el-button>
<div class="mt-4">
<el-calendar v-model="dateValue">
<template #dateCell="{ data }">
<div style="width: 100%; height: 100%; background-color: aquamarine">
<p :class="data.isSelected ? 'is-selected' : ''">
{{ data.day.split('-').slice(1).join('-') }}
<!-- {{ data.isSelected ? '✔️' : '' }} -->
</p>
<div
class="task"
:class="{
fou: item.priority == 4,
tow: item.priority == 2,
the: item.priority == 3
}"
v-if="taskList[data.day]"
@click="handleEdit(item)"
v-for="(item, index) in taskList[data.day]"
:key="index"
>
{{ item.title }}
</div>
</div>
</template>
</el-calendar>
</div>
</el-card>
<edit-popup
v-if="showEdit"
ref="editRef"
:dict-data="dictData"
:dateValue="dateValue"
@success="loadTask"
@close="showEdit = false"
<div id="example-simple">
<calendar-view
:show-date="showDate"
class="holiday-us-traditional holiday-us-official holiday-ue theme-gcal"
:enable-drag-drop="false"
:item-top="themeOptions.top"
:item-content-height="themeOptions.height"
:item-border-height="themeOptions.border"
@click-item="clickItems"
:items="taskList"
:current-period-label="'今日'"
>
<template #header="{ headerProps }">
<calendar-view-header
:header-props="headerProps"
:previous-year-label="themeOptions.previousYearLabel"
:previous-period-label="themeOptions.previousPeriodLabel"
:next-period-label="themeOptions.nextPeriodLabel"
:next-year-label="themeOptions.nextYearLabel"
@input="setShowDate"
/>
</div>
</template>
</calendar-view>
</div>
</template>
<script lang="ts" setup name="task">
import { useDictData } from '@/hooks/useDictOptions'
import { timeFormat } from '@/utils/util'
import feedback from '@/utils/feedback'
// import { getRoutePath } from "router";
import EditPopup from './edit.vue'
import { reactive, watch } from 'vue'
const route = useRoute()
//
import { CalendarView, CalendarViewHeader } from "vue-simple-calendar";
const dateValue = ref(new Date())
const showDate = ref(new Date());
const setShowDate = (d) => {
showDate.value = d;
emits("initShowDate", d);
};
watch(
() => dateValue,
(newValue, oldValue) => {
initShowDate(timeFormat(newValue.value.getTime()))
const props = defineProps({
list: {
type: Array,
default: () => {
return [];
},
{ deep: true }
)
},
});
const test = (e: any) => {
console.log(e)
}
const taskList = computed(() => {
let arr: any = [];
props.list.forEach((item: any) => {
arr.push({
id: item.id,
title: item.template_name,
startDate: new Date(item.start_time),
endDate: new Date(item.end_time),
});
});
return arr;
});
//
const loading = ref(true)
const emits = defineEmits(["clickItem", "initShowDate"]);
const editRef = shallowRef<InstanceType<typeof EditPopup>>()
//
const showEdit = ref(false)
const clickItems = (e) => {
emits("clickItem", e.id);
};
//
const queryParams = reactive({
start_time: '',
end_time: '',
day: 1,
page_no: 1,
pageSize: 150
})
const taskList = ref<any>([])
//
const start_date = ref('')
const end_date = ref('')
//
const initShowDate = (dateStr = '') => {
const currentDate = dateStr ? new Date(dateStr) : new Date()
const currentYear = currentDate.getFullYear()
const currentMonth = currentDate.getMonth()
const lastDay = new Date(currentYear, currentMonth + 1, 0).getDay() //
const startDay = new Date(currentYear, currentMonth, 1).getDay() //
// console.log(new Date(currentYear, currentMonth, 1-startDay).getDate());
// console.log(new Date(currentYear, currentMonth + 1, 6-lastDay).getDate());
start_date.value = timeFormat(new Date(currentYear, currentMonth, 1 - startDay).getTime()) //
end_date.value = timeFormat(new Date(currentYear, currentMonth + 1, 6 - lastDay).getTime()) //
if (queryParams.start_time != start_date.value) {
queryParams.start_time = start_date.value
queryParams.end_time = end_date.value
loading.value = true
}
}
initShowDate()
//
const { dictData } = useDictData('')
//
const handleAdd = async () => {
console.log(2232)
showEdit.value = true
await nextTick()
editRef.value?.open('add')
if (route.query.id) {
console.log(22)
const emits = defineEmits(['scheduling_id'])
emits('scheduling_id', route.query.id)
}
}
//
const handleEdit = async (data: any) => {
showEdit.value = true
await nextTick()
editRef.value?.open('edit')
editRef.value?.setFormData(data)
}
//
// const handleDelete = async (id: number | any[]) => {
// await feedback.confirm("");
// await apiFlowTypeDelete({ id });
// getLists();
// };
// getLists();
const themeOptions = computed((): any => {
return {
top: "2.6em",
height: "2.1em",
border: "0px",
previousYearLabel: "<<",
previousPeriodLabel: "<",
nextPeriodLabel: ">",
nextYearLabel: ">>",
currentPeriodLabel: "今天",
};
});
</script>
<style lang="scss">
@import "../../../node_modules/vue-simple-calendar/dist/style.css";
@import "../../../node_modules/vue-simple-calendar/dist/css/default.css";
@import "../../../node_modules/vue-simple-calendar/dist/css/holidays-us.css";
/* @import "../../../node_modules/vue-simple-calendar/dist/css/holidays-ue.css"; */
@import "../../../node_modules/vue-simple-calendar/dist/css/gcal.css";
<style lang="scss">
.is-selected {
color: #1989fa;
#example-simple {
font-family: Avenir, Arial, Helvetica, sans-serif;
display: flex;
flex-direction: column;
height: 85vh !important;
width: 100% !important;
margin-left: auto;
margin-right: auto;
margin-top: 30px;
}
.el-calendar-table .el-calendar-day {
height: 6.2rem;
.theme-gcal .cv-day.today .cv-day-number {
background-color: #4a5dff;
}
.task {
font-size: 0.8rem;
color: #f7ba2a;
white-space: nowrap; /* 设置文本不换行 */
overflow: hidden; /* 隐藏溢出的部分 */
text-overflow: ellipsis; /* 在溢出的部分显示省略号 */
#example-simple .cv-item {
/* background-color: #f56c6c; */
background-color: rgba($color: #4a5dff, $alpha: 0.8) !important;
color: #fff;
}
.the {
color: #ff5100;
#example-simple .cv-item.custom-date-class-red {
background-color: #f66;
color: #fff;
}
.tow {
color: #f38200;
.cv-wrapper.holiday-us-traditional .d05-05 .cv-day-number::before {
content: "" !important;
}
.fou {
color: red;
.theme-gcal .periodLabel {
font-size: 16px !important;
}
.theme-gcal .cv-header button.previousYear,
.theme-gcal .cv-header button.previousPeriod,
.theme-gcal .cv-header button.nextPeriod,
.theme-gcal .cv-header button.nextYear {
width: 2em;
}
</style>

View File

@ -1,42 +1,47 @@
<template>
<div>
<el-card class="!border-none" v-loading="loading" shadow="never">
<el-button v-perms="['flow_type/add']" type="primary" @click="handleAdd">
<template #icon>
<icon name="el-icon-Plus" />
</template>
新增
</el-button>
<div class="mt-4">
<el-calendar v-model="dateValue">
<template #dateCell="{ data }">
<div style="width: 100%; height: 100%">
<p
:class="data.isSelected ? 'is-selected' : ''"
style="padding: 8px 8px 0 8px"
>
{{ data.day.split('-').slice(1).join('-') }}
</p>
<div
class="task"
@click="clickTask(item)"
v-for="(item, index) in taskListFilter(data.day)"
:key="index"
>
{{ item.template_name }}
</div>
</div>
<div style="display: flex; justify-content: space-between">
<el-button v-perms="['flow_type/add']" type="primary" @click="handleAdd">
<template #icon>
<icon name="el-icon-Plus" />
</template>
</el-calendar>
新增
</el-button>
<!-- <div class="btn">
<div :class="{ active: nowType == 0 }" @click="nowType = 0">日历</div>
<div :class="{ active: nowType == 1 }" @click="nowType = 1">列表</div>
</div> -->
</div>
<calendar
:list="taskList"
@clickItem="clickTask"
@initShowDate="initShowDate"
></calendar>
<!-- <div class="mt-4">
<el-calendar v-model="dateValue">
<template #dateCell="{ data }">
<div style="width: 100%; height: 100%">
<p
:class="data.isSelected ? 'is-selected' : ''"
style="padding: 8px 8px 0 8px"
>
{{ data.day.split("-").slice(1).join("-") }}
</p>
<div
class="task"
@click="clickTask(item)"
v-for="(item, index) in taskListFilter(data.day)"
:key="index"
>
{{ item.template_name }}
</div>
</div>
</template>
</el-calendar>
</div>-->
</el-card>
<edit-popup
ref="editRef"
:dateValue="dateValue"
@success="loadTask"
@close="showEdit = false"
/>
<EditTowPopup
ref="editTowRef"
:task="task"
@ -55,28 +60,11 @@ import EditPopup from './edit.vue'
import EditTowPopup from './editTow.vue'
import { reactive, watch } from 'vue'
import { apiTaskList, apiTaskDetails } from '@/api/task'
import { apiTaskSchedulingPlanAdd } from '@/api/task_scheduling_plan'
import calendar from './calendar.vue'
const route = useRoute()
const dateValue = ref(new Date())
// watch(
// () => dateValue,
// async (newValue, oldValue) => {
// const id = taskList.value.find(
// (item) =>
// item.start_time.split(" ")[0] == timeFormat(newValue.value.getTime())
// )?.id;
// if (id) {
// const res = await apiTaskDetails({ id });
// Object.keys(detailsdata).forEach((key) => {
// res[key] ? (detailsdata[key] = res[key]) : null;
// });
// editRef.value?.open("add");
// initShowDate(timeFormat(newValue.value.getTime()));
// }
// },
// { deep: true }
// );
//
const task = ref({
@ -92,7 +80,8 @@ const task = ref({
const popupType = ref('add')
const clickTask = (e: any) => {
popupType.value = 'show'
task.value = e
// task.value = e;
task.value = taskList.value.find((item: any) => item.id == e)
handleSelect()
}
@ -122,8 +111,8 @@ const taskList = ref<any>([])
const loadTask = async () => {
apiTaskList(queryParams).then((res) => {
taskList.value = res.lists
loading.value = false
})
loading.value = false
}
const start_date = ref('')
@ -176,6 +165,12 @@ const handleSelect = async () => {
editTowRef.value?.open('show')
editTowRef.value?.updatedForm()
}
//
const nowType = ref(0)
const handleTypeClick = (e) => {
console.log(e)
}
</script>
<style lang="scss">
@ -209,4 +204,22 @@ const handleSelect = async () => {
.fou {
color: red;
}
.btn {
height: 30px;
width: 150px;
border: 1px solid #4a5dff;
border-radius: 5px;
overflow: hidden;
display: flex;
cursor: pointer;
div {
flex: 1;
text-align: center;
line-height: 30px;
}
.active {
background-color: #4a5dff;
color: #fff;
}
}
</style>

View File

@ -1,157 +1,184 @@
<template>
<div>
<el-card class="!border-none" v-loading="pager.loading" shadow="never">
<el-button v-perms="['flow_type/add']" type="primary" @click="handleAdd">
<template #icon>
<icon name="el-icon-Plus" />
</template>
新增
</el-button>
<!-- <el-button
<div>
<el-card class="!border-none" v-loading="pager.loading" shadow="never">
<el-button v-perms="['flow_type/add']" type="primary" @click="handleAdd">
<template #icon>
<icon name="el-icon-Plus" />
</template>
新增
</el-button>
<!-- <el-button
v-perms="['flow_type/delete']"
:disabled="!selectData.length"
@click="handleDelete(selectData)"
>
删除
</el-button> -->
<div class="mt-4">
<el-table :data="pager.lists" @selection-change="handleSelectionChange">
{{ pager }}
<el-table-column label="id" prop="id" show-overflow-tooltip width="60" />
<el-table-column label="名称" prop="title" show-overflow-tooltip />
<el-table-column label="优先级" prop="title" width="90" show-overflow-tooltip>
<template #default="{ row }">
<span
:class="{
one: row.priority == 1,
tow: row.priority == 2,
the: row.priority == 3,
fou: row.priority == 4
}"
>{{ row.priority_name }}</span
>
</template>
</el-table-column>
<el-table-column
label="负责人"
prop="director_name"
width="90"
show-overflow-tooltip
/>
<el-table-column
label="协作人"
prop="assist_admin_names"
width="90"
show-overflow-tooltip
/>
<el-table-column
label="审查人"
prop="assist_check_names"
width="90"
show-overflow-tooltip
/>
<el-table-column label="开始时间" prop="start_time" show-overflow-tooltip />
<el-table-column label="结束时间" prop="end_time" show-overflow-tooltip />
<el-table-column label="审查时间" prop="check_time" show-overflow-tooltip />
<el-table-column label="状态" prop="status" show-overflow-tooltip>
<template #default="{ row }">
<span v-if="row.status == 1" style="color: #67c23a">正常</span>
<span v-else style="color: #fe0000">禁用</span>
</template>
</el-table-column>
<el-table-column label="操作" align="center" width="auto" fixed="right">
<template #default="{ row }">
<el-button
v-perms="['flow/edit']"
type="primary"
link
@click="handleEdit(row)"
>
编辑
</el-button>
<el-button
v-perms="['flow/delete']"
type="danger"
link
@click="handleDelete(row.id)"
>
删除
</el-button>
</template>
</el-table-column>
</el-table>
</div>
<div class="flex mt-4 justify-end">
<pagination v-model="pager" @change="getLists" />
</div>
</el-card>
<edit-popup
v-if="showEdit"
ref="editRef"
:dict-data="dictData"
@success="getLists"
@close="showEdit = false"
/>
</div>
<div class="mt-4">
<el-table :data="pager.lists" @selection-change="handleSelectionChange">
{{ pager }}
<el-table-column
label="id"
prop="id"
show-overflow-tooltip
width="60"
/>
<el-table-column label="名称" prop="title" show-overflow-tooltip />
<el-table-column
label="优先级"
prop="title"
width="90"
show-overflow-tooltip
>
<template #default="{ row }">
<span
:class="{
one: row.priority == 1,
tow: row.priority == 2,
the: row.priority == 3,
fou: row.priority == 4,
}"
>{{ row.priority_name }}</span
>
</template>
</el-table-column>
<el-table-column
label="负责人"
prop="director_name"
width="90"
show-overflow-tooltip
/>
<el-table-column
label="协作人"
prop="assist_admin_names"
width="90"
show-overflow-tooltip
/>
<el-table-column
label="审查人"
prop="assist_check_names"
width="90"
show-overflow-tooltip
/>
<el-table-column
label="开始时间"
prop="start_time"
show-overflow-tooltip
/>
<el-table-column
label="结束时间"
prop="end_time"
show-overflow-tooltip
/>
<el-table-column
label="审查时间"
prop="check_time"
show-overflow-tooltip
/>
<el-table-column label="状态" prop="status" show-overflow-tooltip>
<template #default="{ row }">
<span v-if="row.status == 1" style="color: #67c23a">正常</span>
<span v-else style="color: #fe0000">禁用</span>
</template>
</el-table-column>
<el-table-column
label="操作"
align="center"
width="auto"
fixed="right"
>
<template #default="{ row }">
<el-button
v-perms="['flow/edit']"
type="primary"
link
@click="handleEdit(row)"
>
编辑
</el-button>
<el-button
v-perms="['flow/delete']"
type="danger"
link
@click="handleDelete(row.id)"
>
删除
</el-button>
</template>
</el-table-column>
</el-table>
</div>
<div class="flex mt-4 justify-end">
<!-- <pagination v-model="pager" @change="getLists" /> -->
</div>
</el-card>
<edit-popup
v-if="showEdit"
ref="editRef"
:dict-data="dictData"
@success="getLists"
@close="showEdit = false"
/>
</div>
</template>
<script lang="ts">
import { usePaging } from '@/hooks/usePaging'
import { useDictData } from '@/hooks/useDictOptions'
import { timeFormat } from '@/utils/util'
import feedback from '@/utils/feedback'
import EditPopup from './edit.vue'
import { usePaging } from "@/hooks/usePaging";
import { useDictData } from "@/hooks/useDictOptions";
import { timeFormat } from "@/utils/util";
import feedback from "@/utils/feedback";
import EditPopup from "./edit.vue";
const editRef = shallowRef<InstanceType<typeof EditPopup>>()
const editRef = shallowRef<InstanceType<typeof EditPopup>>();
//
const showEdit = ref(false)
const showEdit = ref(false);
//
const queryParams = reactive({})
const queryParams = reactive({});
//
const selectData = ref<any[]>([])
const selectData = ref<any[]>([]);
//
const handleSelectionChange = (val: any[]) => {
selectData.value = val.map(({ id }) => id)
}
selectData.value = val.map(({ id }) => id);
};
//
const { dictData } = useDictData('')
const { dictData } = useDictData("");
//
const handleAdd = async () => {
showEdit.value = true
await nextTick()
editRef.value?.open('add')
}
showEdit.value = true;
await nextTick();
editRef.value?.open("add");
};
//
const handleEdit = async (data: any) => {
showEdit.value = true
await nextTick()
editRef.value?.open('edit')
editRef.value?.setFormData(data)
}
showEdit.value = true;
await nextTick();
editRef.value?.open("edit");
editRef.value?.setFormData(data);
};
//
const handleDelete = async (id: number | any[]) => {
await feedback.confirm('确定要删除?')
}
await feedback.confirm("确定要删除?");
};
</script>
<style lang="scss">
.one {
color: #f7ba2a;
color: #f7ba2a;
}
.the {
color: #ff5100;
color: #ff5100;
}
.tow {
color: #f38200;
color: #f38200;
}
.fou {
color: red;
color: red;
}
</style>

946
yarn.lock

File diff suppressed because it is too large Load Diff