This commit is contained in:
weipengfei 2023-08-14 18:25:34 +08:00
commit 929e3bccac

View File

@ -2,11 +2,7 @@
<div> <div>
<el-card class="!border-none" v-loading="loading" shadow="never"> <el-card class="!border-none" v-loading="loading" shadow="never">
<div style="display: flex; justify-content: space-between"> <div style="display: flex; justify-content: space-between">
<el-button <el-button v-perms="['flow_type/add']" type="primary" @click="handleAdd">
v-perms="['flow_type/add']"
type="primary"
@click="handleAdd"
>
<template #icon> <template #icon>
<icon name="el-icon-Plus" /> <icon name="el-icon-Plus" />
</template> </template>
@ -57,125 +53,124 @@
</template> </template>
<script lang="ts" setup name="task"> <script lang="ts" setup name="task">
import { timeFormat } from "@/utils/util"; import { timeFormat } from '@/utils/util'
import feedback from "@/utils/feedback"; import feedback from '@/utils/feedback'
// import { getRoutePath } from "router"; // import { getRoutePath } from "router";
import EditPopup from "./edit.vue"; import EditPopup from './edit.vue'
import EditTowPopup from "./editTow.vue"; import EditTowPopup from './editTow.vue'
import { reactive, watch } from "vue"; import { reactive, watch } from 'vue'
import { apiTaskList, apiTaskDetails } from "@/api/task"; import { apiTaskList, apiTaskDetails } from '@/api/task'
import calendar from "./calendar.vue"; import calendar from './calendar.vue'
const route = useRoute(); const route = useRoute()
const dateValue = ref(new Date()); const dateValue = ref(new Date())
// //
const task = ref({ const task = ref({
create_user_id: 0, create_user_id: 0,
end_time: "", end_time: '',
id: 0, id: 0,
scheduling_id: 0, scheduling_id: 0,
start_time: "", start_time: '',
status: 0, status: 0,
template_id: 0, template_id: 0,
template_name: "", template_name: ''
}); })
const popupType = ref("add"); const popupType = ref('add')
const clickTask = (e: any) => { const clickTask = (e: any) => {
popupType.value = "show"; popupType.value = 'show'
// task.value = e; // task.value = e;
task.value = taskList.value.find((item: any) => item.id == e); task.value = taskList.value.find((item: any) => item.id == e)
handleSelect(); handleSelect()
}; }
// //
const loading = ref(true); const loading = ref(true)
const editRef = shallowRef<InstanceType<typeof EditPopup>>(); const editRef = shallowRef<InstanceType<typeof EditPopup>>()
const editTowRef = shallowRef<InstanceType<typeof EditPopup>>(); const editTowRef = shallowRef<InstanceType<typeof EditPopup>>()
// //
const showEdit = ref(false); const showEdit = ref(false)
const showEditTow = ref(false); const showEditTow = ref(false)
// //
const queryParams = reactive({ const queryParams = reactive({
start_time: "", scheduling_id: '',
end_time: "", start_time: '',
end_time: '',
page_no: 1, page_no: 1,
pageSize: 150, pageSize: 150
}); })
if (route.query.id) {
const taskList = ref<any>([]); queryParams.scheduling_id = route.query.id.toString()
}
const taskList = ref<any>([])
// //
const loadTask = async () => { const loadTask = async () => {
apiTaskList(queryParams).then((res) => { apiTaskList(queryParams).then((res) => {
taskList.value = res.lists; taskList.value = res.lists
loading.value = false; loading.value = false
}); })
}; }
const start_date = ref(""); const start_date = ref('')
const end_date = ref(""); const end_date = ref('')
// //
const initShowDate = (dateStr = "") => { const initShowDate = (dateStr = '') => {
const currentDate = dateStr ? new Date(dateStr) : new Date(); const currentDate = dateStr ? new Date(dateStr) : new Date()
const currentYear = currentDate.getFullYear(); const currentYear = currentDate.getFullYear()
const currentMonth = currentDate.getMonth(); const currentMonth = currentDate.getMonth()
const lastDay = new Date(currentYear, currentMonth + 1, 0).getDay(); // const lastDay = new Date(currentYear, currentMonth + 1, 0).getDay() //
const startDay = new Date(currentYear, currentMonth, 1).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-startDay).getDate());
// console.log(new Date(currentYear, currentMonth + 1, 6-lastDay).getDate()); // console.log(new Date(currentYear, currentMonth + 1, 6-lastDay).getDate());
start_date.value = timeFormat( start_date.value = timeFormat(new Date(currentYear, currentMonth, 1 - startDay).getTime()) //
new Date(currentYear, currentMonth, 1 - startDay).getTime() end_date.value = timeFormat(new Date(currentYear, currentMonth + 1, 6 - lastDay).getTime()) //
); //
end_date.value = timeFormat(
new Date(currentYear, currentMonth + 1, 6 - lastDay).getTime()
); //
if (queryParams.start_time != start_date.value) { if (queryParams.start_time != start_date.value) {
queryParams.start_time = start_date.value; queryParams.start_time = start_date.value
queryParams.end_time = end_date.value; queryParams.end_time = end_date.value
loading.value = true; loading.value = true
loadTask(); loadTask()
} }
}; }
initShowDate(); initShowDate()
// //
const taskListFilter = (e: any) => { const taskListFilter = (e: any) => {
return taskList.value return taskList.value
.filter((item: any) => { .filter((item: any) => {
let now = new Date(e).getTime() / 1000; const now = new Date(e).getTime() / 1000
let start = new Date(item.start_time).getTime() / 1000; const start = new Date(item.start_time).getTime() / 1000
let end = new Date(item.end_time).getTime() / 1000; const end = new Date(item.end_time).getTime() / 1000
return now - start >= 0 && now - end <= 0; return now - start >= 0 && now - end <= 0
}) })
.slice(0, 5); .slice(0, 5)
}; }
// //
const handleAdd = async () => { const handleAdd = async () => {
popupType.value = "add"; popupType.value = 'add'
showEditTow.value = true; showEditTow.value = true
await nextTick(); await nextTick()
editTowRef.value?.open("add"); editTowRef.value?.open('add')
editTowRef.value?.updatedForm(); editTowRef.value?.updatedForm()
}; }
// //
const handleSelect = async () => { const handleSelect = async () => {
popupType.value = "show"; popupType.value = 'show'
showEditTow.value = true; showEditTow.value = true
await nextTick(); await nextTick()
editTowRef.value?.open("show"); editTowRef.value?.open('show')
editTowRef.value?.updatedForm(); editTowRef.value?.updatedForm()
}; }
// //
const nowType = ref(0); const nowType = ref(0)
const handleTypeClick = (e) => { const handleTypeClick = (e) => {
console.log(e); console.log(e)
}; }
</script> </script>
<style lang="scss"> <style lang="scss">