Merge branch 'master' of http://git.excellentkk.cn/mkm/TaskSystem-admin
This commit is contained in:
commit
8a41b12fef
26
src/api/task_scheduling.ts
Normal file
26
src/api/task_scheduling.ts
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
import request from '@/utils/request'
|
||||||
|
|
||||||
|
// 任务公司排期列表
|
||||||
|
export function apiTaskSchedulingLists(params: any) {
|
||||||
|
return request.get({ url: '/task_scheduling.task_scheduling/lists', params })
|
||||||
|
}
|
||||||
|
|
||||||
|
// 添加任务公司排期
|
||||||
|
export function apiTaskSchedulingAdd(params: any) {
|
||||||
|
return request.post({ url: '/task_scheduling.task_scheduling/add', params })
|
||||||
|
}
|
||||||
|
|
||||||
|
// 编辑任务公司排期
|
||||||
|
export function apiTaskSchedulingEdit(params: any) {
|
||||||
|
return request.post({ url: '/task_scheduling.task_scheduling/edit', params })
|
||||||
|
}
|
||||||
|
|
||||||
|
// 删除任务公司排期
|
||||||
|
export function apiTaskSchedulingDelete(params: any) {
|
||||||
|
return request.post({ url: '/task_scheduling.task_scheduling/delete', params })
|
||||||
|
}
|
||||||
|
|
||||||
|
// 任务公司排期详情
|
||||||
|
export function apiTaskSchedulingDetail(params: any) {
|
||||||
|
return request.get({ url: '/task_scheduling.task_scheduling/detail', params })
|
||||||
|
}
|
26
src/api/task_scheduling_plan.ts
Normal file
26
src/api/task_scheduling_plan.ts
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
import request from '@/utils/request'
|
||||||
|
|
||||||
|
// 任务日历列表
|
||||||
|
export function apiTaskSchedulingPlanLists(params: any) {
|
||||||
|
return request.get({ url: '/task_scheduling_plan.task_scheduling_plan/lists', params })
|
||||||
|
}
|
||||||
|
|
||||||
|
// 添加任务日历
|
||||||
|
export function apiTaskSchedulingPlanAdd(params: any) {
|
||||||
|
return request.post({ url: '/task_scheduling_plan.task_scheduling_plan/add', params })
|
||||||
|
}
|
||||||
|
|
||||||
|
// 编辑任务日历
|
||||||
|
export function apiTaskSchedulingPlanEdit(params: any) {
|
||||||
|
return request.post({ url: '/task_scheduling_plan.task_scheduling_plan/edit', params })
|
||||||
|
}
|
||||||
|
|
||||||
|
// 删除任务日历
|
||||||
|
export function apiTaskSchedulingPlanDelete(params: any) {
|
||||||
|
return request.post({ url: '/task_scheduling_plan.task_scheduling_plan/delete', params })
|
||||||
|
}
|
||||||
|
|
||||||
|
// 任务日历详情
|
||||||
|
export function apiTaskSchedulingPlanDetail(params: any) {
|
||||||
|
return request.get({ url: '/task_scheduling_plan.task_scheduling_plan/detail', params })
|
||||||
|
}
|
121
src/views/task_scheduling/edit.vue
Normal file
121
src/views/task_scheduling/edit.vue
Normal file
@ -0,0 +1,121 @@
|
|||||||
|
<template>
|
||||||
|
<div class="edit-popup">
|
||||||
|
<popup
|
||||||
|
ref="popupRef"
|
||||||
|
:title="popupTitle"
|
||||||
|
:async="true"
|
||||||
|
width="550px"
|
||||||
|
@confirm="handleSubmit"
|
||||||
|
@close="handleClose"
|
||||||
|
>
|
||||||
|
<el-form ref="formRef" :model="formData" label-width="90px" :rules="formRules">
|
||||||
|
<el-form-item label="创建人id" prop="create_user_id">
|
||||||
|
<el-input v-model="formData.create_user_id" clearable placeholder="请输入创建人id" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="模板id" prop="template_id">
|
||||||
|
<el-input v-model="formData.template_id" clearable placeholder="请输入模板id" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="公司id" prop="company_id">
|
||||||
|
<el-input v-model="formData.company_id" clearable placeholder="请输入公司id" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="下发公司类型" prop="type">
|
||||||
|
<el-input v-model="formData.type" clearable placeholder="请输入下发公司类型" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="状态" prop="status">
|
||||||
|
<el-input v-model="formData.status" clearable placeholder="请输入状态" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
</popup>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts" setup name="taskSchedulingEdit">
|
||||||
|
import type { FormInstance } from 'element-plus'
|
||||||
|
import Popup from '@/components/popup/index.vue'
|
||||||
|
import { apiTaskSchedulingAdd, apiTaskSchedulingEdit, apiTaskSchedulingDetail } from '@/api/task_scheduling'
|
||||||
|
import { timeFormat } from '@/utils/util'
|
||||||
|
import type { PropType } from 'vue'
|
||||||
|
defineProps({
|
||||||
|
dictData: {
|
||||||
|
type: Object as PropType<Record<string, any[]>>,
|
||||||
|
default: () => ({})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
const emit = defineEmits(['success', 'close'])
|
||||||
|
const formRef = shallowRef<FormInstance>()
|
||||||
|
const popupRef = shallowRef<InstanceType<typeof Popup>>()
|
||||||
|
const mode = ref('add')
|
||||||
|
|
||||||
|
|
||||||
|
// 弹窗标题
|
||||||
|
const popupTitle = computed(() => {
|
||||||
|
return mode.value == 'edit' ? '编辑任务公司排期' : '新增任务公司排期'
|
||||||
|
})
|
||||||
|
|
||||||
|
// 表单数据
|
||||||
|
const formData = reactive({
|
||||||
|
id: '',
|
||||||
|
create_user_id: '',
|
||||||
|
template_id: '',
|
||||||
|
company_id: '',
|
||||||
|
type: '',
|
||||||
|
status: '',
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
// 表单验证
|
||||||
|
const formRules = reactive<any>({
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
// 获取详情
|
||||||
|
const setFormData = async (data: Record<any, any>) => {
|
||||||
|
for (const key in formData) {
|
||||||
|
if (data[key] != null && data[key] != undefined) {
|
||||||
|
//@ts-ignore
|
||||||
|
formData[key] = data[key]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
const getDetail = async (row: Record<string, any>) => {
|
||||||
|
const data = await apiTaskSchedulingDetail({
|
||||||
|
id: row.id
|
||||||
|
})
|
||||||
|
setFormData(data)
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// 提交按钮
|
||||||
|
const handleSubmit = async () => {
|
||||||
|
await formRef.value?.validate()
|
||||||
|
const data = { ...formData, }
|
||||||
|
mode.value == 'edit'
|
||||||
|
? await apiTaskSchedulingEdit(data)
|
||||||
|
: await apiTaskSchedulingAdd(data)
|
||||||
|
popupRef.value?.close()
|
||||||
|
emit('success')
|
||||||
|
}
|
||||||
|
|
||||||
|
//打开弹窗
|
||||||
|
const open = (type = 'add') => {
|
||||||
|
mode.value = type
|
||||||
|
popupRef.value?.open()
|
||||||
|
}
|
||||||
|
|
||||||
|
// 关闭回调
|
||||||
|
const handleClose = () => {
|
||||||
|
emit('close')
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
defineExpose({
|
||||||
|
open,
|
||||||
|
setFormData,
|
||||||
|
getDetail
|
||||||
|
})
|
||||||
|
</script>
|
145
src/views/task_scheduling/index.vue
Normal file
145
src/views/task_scheduling/index.vue
Normal file
@ -0,0 +1,145 @@
|
|||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<el-card class="!border-none mb-4" shadow="never">
|
||||||
|
<el-form
|
||||||
|
class="mb-[-16px]"
|
||||||
|
:model="queryParams"
|
||||||
|
inline
|
||||||
|
>
|
||||||
|
<el-form-item label="创建人id" prop="create_user_id">
|
||||||
|
<el-input class="w-[280px]" v-model="queryParams.create_user_id" clearable placeholder="请输入创建人id" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="模板id" prop="template_id">
|
||||||
|
<el-input class="w-[280px]" v-model="queryParams.template_id" clearable placeholder="请输入模板id" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="公司id" prop="company_id">
|
||||||
|
<el-input class="w-[280px]" v-model="queryParams.company_id" clearable placeholder="请输入公司id" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="下发公司类型" prop="type">
|
||||||
|
<el-input class="w-[280px]" v-model="queryParams.type" clearable placeholder="请输入下发公司类型" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="状态" prop="status">
|
||||||
|
<el-input class="w-[280px]" v-model="queryParams.status" clearable placeholder="请输入状态" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item>
|
||||||
|
<el-button type="primary" @click="resetPage">查询</el-button>
|
||||||
|
<el-button @click="resetParams">重置</el-button>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
</el-card>
|
||||||
|
<el-card class="!border-none" v-loading="pager.loading" shadow="never">
|
||||||
|
<el-button v-perms="['task_scheduling.task_scheduling/add']" type="primary" @click="handleAdd">
|
||||||
|
<template #icon>
|
||||||
|
<icon name="el-icon-Plus" />
|
||||||
|
</template>
|
||||||
|
新增
|
||||||
|
</el-button>
|
||||||
|
<el-button
|
||||||
|
v-perms="['task_scheduling.task_scheduling/delete']"
|
||||||
|
:disabled="!selectData.length"
|
||||||
|
@click="handleDelete(selectData)"
|
||||||
|
>
|
||||||
|
删除
|
||||||
|
</el-button>
|
||||||
|
<div class="mt-4">
|
||||||
|
<el-table :data="pager.lists" @selection-change="handleSelectionChange">
|
||||||
|
<el-table-column type="selection" width="55" />
|
||||||
|
<el-table-column label="创建人id" prop="create_user_id" show-overflow-tooltip />
|
||||||
|
<el-table-column label="模板id" prop="template_id" show-overflow-tooltip />
|
||||||
|
<el-table-column label="公司id" prop="company_id" show-overflow-tooltip />
|
||||||
|
<el-table-column label="下发公司类型" prop="type" show-overflow-tooltip />
|
||||||
|
<el-table-column label="状态" prop="status" show-overflow-tooltip />
|
||||||
|
<el-table-column label="操作" width="120" fixed="right">
|
||||||
|
<template #default="{ row }">
|
||||||
|
<el-button
|
||||||
|
v-perms="['task_scheduling.task_scheduling/edit']"
|
||||||
|
type="primary"
|
||||||
|
link
|
||||||
|
@click="handleEdit(row)"
|
||||||
|
>
|
||||||
|
编辑
|
||||||
|
</el-button>
|
||||||
|
<el-button
|
||||||
|
v-perms="['task_scheduling.task_scheduling/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" setup name="taskSchedulingLists">
|
||||||
|
import { usePaging } from '@/hooks/usePaging'
|
||||||
|
import { useDictData } from '@/hooks/useDictOptions'
|
||||||
|
import { apiTaskSchedulingLists, apiTaskSchedulingDelete } from '@/api/task_scheduling'
|
||||||
|
import { timeFormat } from '@/utils/util'
|
||||||
|
import feedback from '@/utils/feedback'
|
||||||
|
import EditPopup from './edit.vue'
|
||||||
|
|
||||||
|
const editRef = shallowRef<InstanceType<typeof EditPopup>>()
|
||||||
|
// 是否显示编辑框
|
||||||
|
const showEdit = ref(false)
|
||||||
|
|
||||||
|
|
||||||
|
// 查询条件
|
||||||
|
const queryParams = reactive({
|
||||||
|
create_user_id: '',
|
||||||
|
template_id: '',
|
||||||
|
company_id: '',
|
||||||
|
type: '',
|
||||||
|
status: ''
|
||||||
|
})
|
||||||
|
|
||||||
|
// 选中数据
|
||||||
|
const selectData = ref<any[]>([])
|
||||||
|
|
||||||
|
// 表格选择后回调事件
|
||||||
|
const handleSelectionChange = (val: any[]) => {
|
||||||
|
selectData.value = val.map(({ id }) => id)
|
||||||
|
}
|
||||||
|
|
||||||
|
// 获取字典数据
|
||||||
|
const { dictData } = useDictData('')
|
||||||
|
|
||||||
|
// 分页相关
|
||||||
|
const { pager, getLists, resetParams, resetPage } = usePaging({
|
||||||
|
fetchFun: apiTaskSchedulingLists,
|
||||||
|
params: queryParams
|
||||||
|
})
|
||||||
|
|
||||||
|
// 添加
|
||||||
|
const handleAdd = async () => {
|
||||||
|
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)
|
||||||
|
}
|
||||||
|
|
||||||
|
// 删除
|
||||||
|
const handleDelete = async (id: number | any[]) => {
|
||||||
|
await feedback.confirm('确定要删除?')
|
||||||
|
await apiTaskSchedulingDelete({ id })
|
||||||
|
getLists()
|
||||||
|
}
|
||||||
|
|
||||||
|
getLists()
|
||||||
|
</script>
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user