2024-01-26 09:02:58 +08:00
|
|
|
<template>
|
|
|
|
|
<div class="percentage-content">
|
2024-01-28 17:31:43 +08:00
|
|
|
<el-radio-group class="rg" v-model="tabIndex" @change="clickRadio">
|
|
|
|
|
<template v-for="item in tabs" :key="item.sortId">
|
|
|
|
|
<el-radio-button :label="item.sortId">{{ item.typeName }}</el-radio-button>
|
2024-01-26 09:02:58 +08:00
|
|
|
</template>
|
|
|
|
|
</el-radio-group>
|
|
|
|
|
<div class="content">
|
2024-01-28 17:31:43 +08:00
|
|
|
<!-- <transition name="main" mode="out-in" appear>
|
2024-01-26 09:02:58 +08:00
|
|
|
<component :is="tabs[tabIndex].compon" />
|
2024-01-28 17:31:43 +08:00
|
|
|
</transition> -->
|
2024-01-29 09:44:22 +08:00
|
|
|
<!-- <CG :tabIndex="tabIndex" :typeId="typeId"></CG> -->
|
|
|
|
|
<div class="h-layout space-between h-center">
|
|
|
|
|
<div>
|
|
|
|
|
<div class="h-layout">
|
|
|
|
|
<div
|
|
|
|
|
class="tool-item"
|
|
|
|
|
@click="(dialogVisible = true), (form = {}), (readonly = false)"
|
|
|
|
|
>
|
|
|
|
|
<svg-icon name="add" class="icon" />
|
|
|
|
|
<span>新增</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="tool-item" @click="getList">
|
|
|
|
|
<svg-icon name="refurbish" class="icon" />
|
|
|
|
|
<span>刷新</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<el-table
|
|
|
|
|
ref="loading"
|
|
|
|
|
class="table"
|
|
|
|
|
v-loading="tableDataloading"
|
|
|
|
|
:data="tableData"
|
|
|
|
|
header-row-class-name="el-one-header"
|
|
|
|
|
border
|
|
|
|
|
>
|
|
|
|
|
<el-table-column type="index" align="center" label="序号" width="80"/>
|
|
|
|
|
<el-table-column prop="title" align="center" label="工作内容" />
|
|
|
|
|
<el-table-column prop="startTime" align="center" label="开始时间" width="150"/>
|
|
|
|
|
<el-table-column prop="endTime" align="center" label="结束时间" width="150"/>
|
|
|
|
|
<el-table-column prop="chinaName" align="center" label="发布人" width="120"/>
|
|
|
|
|
<el-table-column prop="postName" align="center" label="发布人岗位" width="150"/>
|
|
|
|
|
<el-table-column
|
|
|
|
|
:resizable="true"
|
|
|
|
|
align="center"
|
|
|
|
|
width="260"
|
|
|
|
|
label="操作"
|
|
|
|
|
>
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<!-- <span
|
|
|
|
|
class="operate"
|
|
|
|
|
@click="
|
|
|
|
|
(dialogVisible = true), (form = scope.row), (readonly = false)
|
|
|
|
|
"
|
|
|
|
|
>
|
|
|
|
|
<svg-icon name="edit" class="icon"></svg-icon>
|
|
|
|
|
<span class="edit">编辑</span>
|
|
|
|
|
</span> -->
|
|
|
|
|
<span
|
|
|
|
|
class="operate"
|
|
|
|
|
@click="
|
|
|
|
|
(dialogVisible = true), (form = scope.row), (readonly = true)
|
|
|
|
|
"
|
|
|
|
|
>
|
|
|
|
|
<svg-icon name="detail" class="icon"></svg-icon>
|
|
|
|
|
<span class="detail">详情</span>
|
|
|
|
|
</span>
|
|
|
|
|
<span class="operate" @click="deletelist(scope.row)">
|
|
|
|
|
<svg-icon name="delete" class="icon"></svg-icon>
|
|
|
|
|
<span class="func">删除</span>
|
|
|
|
|
</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
<!-- 分页 -->
|
|
|
|
|
<el-pagination
|
|
|
|
|
class="pagination"
|
|
|
|
|
v-model:current-page.sync="currentPage"
|
|
|
|
|
:page-sizes="[10, 15, 20, 30]"
|
|
|
|
|
v-model:page-size.sync="pageSize"
|
|
|
|
|
layout="total, sizes, prev, pager, next, jumper"
|
|
|
|
|
:total="total"
|
|
|
|
|
background
|
|
|
|
|
>
|
|
|
|
|
</el-pagination>
|
|
|
|
|
<!-- 新增 -->
|
|
|
|
|
<Add
|
|
|
|
|
:visible="dialogVisible"
|
|
|
|
|
:form="form"
|
|
|
|
|
:readonly="readonly"
|
|
|
|
|
@close="onclone"
|
|
|
|
|
:typeId="typeId"
|
|
|
|
|
:tabsTitle="tabsTitle"
|
|
|
|
|
/>
|
2024-01-26 09:02:58 +08:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script lang='ts' setup>
|
2024-01-28 17:31:43 +08:00
|
|
|
import { onMounted, ref } from "vue";
|
|
|
|
|
// import { ElMessageBox } from "element-plus";
|
|
|
|
|
import { wkTypes } from "@/api/Work";
|
2024-01-29 09:44:22 +08:00
|
|
|
// import CG from "./components/cg.vue";
|
|
|
|
|
import Add from "./components/add.vue";
|
|
|
|
|
import { sendWorkPage } from "@/api/Work";
|
|
|
|
|
import useUserStore from "@/store/modules/user";
|
|
|
|
|
const userStore = useUserStore();
|
|
|
|
|
const user = ref(JSON.parse(userStore.userInfo));
|
|
|
|
|
const userId = ref(user.value.userId);
|
2024-01-26 09:02:58 +08:00
|
|
|
|
|
|
|
|
const tabIndex = ref(0);
|
|
|
|
|
const tabs = ref([
|
2024-01-28 17:31:43 +08:00
|
|
|
{ typeName: "常规工作", sortId: 1, },
|
2024-01-26 09:02:58 +08:00
|
|
|
]);
|
2024-01-28 17:31:43 +08:00
|
|
|
const typeId = ref('');
|
2024-01-29 09:44:22 +08:00
|
|
|
//弹窗标题
|
|
|
|
|
const tabsTitle = ref('');
|
2024-01-28 17:31:43 +08:00
|
|
|
//头部点击取id
|
|
|
|
|
const clickRadio = ()=>{
|
|
|
|
|
tabs.value.forEach(item => {
|
|
|
|
|
if (item.sortId == tabIndex.value) {
|
|
|
|
|
typeId.value = item.typeId
|
2024-01-29 09:44:22 +08:00
|
|
|
tabsTitle.value = item.typeName;
|
2024-01-28 17:31:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
});
|
2024-01-29 09:44:22 +08:00
|
|
|
getList()
|
2024-01-28 17:31:43 +08:00
|
|
|
}
|
|
|
|
|
//工作类型
|
|
|
|
|
const getWkTypes = ()=>{
|
|
|
|
|
let params = {
|
|
|
|
|
classify:1
|
|
|
|
|
}
|
|
|
|
|
wkTypes(params).then((res: any) => {
|
|
|
|
|
tabs.value = res.data;
|
|
|
|
|
typeId.value = res.data[0].typeId;
|
2024-01-29 09:44:22 +08:00
|
|
|
tabsTitle.value = res.data[0].typeName;
|
2024-01-28 17:31:43 +08:00
|
|
|
tabIndex.value = 1;
|
2024-01-29 09:44:22 +08:00
|
|
|
getSendWorkPage();
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const search = ref([]);
|
|
|
|
|
const currentPage = ref(1);
|
|
|
|
|
const pageSize = ref(10);
|
|
|
|
|
const total = ref(0);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//获取列表
|
|
|
|
|
const tableDataloading = ref(false);
|
|
|
|
|
const tableData = ref([]);
|
|
|
|
|
const getSendWorkPage = () => {
|
|
|
|
|
tableDataloading.value = true;
|
|
|
|
|
let params = {
|
|
|
|
|
userId:userId.value,
|
|
|
|
|
limit: pageSize.value,
|
|
|
|
|
page: currentPage.value,
|
|
|
|
|
typeId:typeId.value,
|
|
|
|
|
};
|
|
|
|
|
sendWorkPage(params).then((res: any) => {
|
|
|
|
|
tableData.value = res.data.list;
|
|
|
|
|
total.value = res.data.total;
|
|
|
|
|
tableDataloading.value = false;
|
2024-01-28 17:31:43 +08:00
|
|
|
});
|
2024-01-29 09:44:22 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
//新增弹窗
|
|
|
|
|
const dialogVisible = ref(false);
|
|
|
|
|
const form = ref({});
|
|
|
|
|
const readonly = ref(false);
|
|
|
|
|
//关闭新增弹窗
|
|
|
|
|
const onclone = () => {
|
|
|
|
|
dialogVisible.value = false;
|
|
|
|
|
form.value = {};
|
|
|
|
|
getList();
|
|
|
|
|
};
|
|
|
|
|
//删除
|
|
|
|
|
const deletelist = (data)=>{
|
|
|
|
|
console.log(data,'===>');
|
|
|
|
|
// ElMessageBox.confirm("是否确认删除?", "提示", {
|
|
|
|
|
// confirmButtonText: "是",
|
|
|
|
|
// cancelButtonText: "否",
|
|
|
|
|
// type: "warning",
|
|
|
|
|
// }).then(() => {
|
|
|
|
|
// delOthequipment(id, userId.value).then((res: any) => {
|
|
|
|
|
// if (res.code == 1) {
|
|
|
|
|
// ElMessage.success({
|
|
|
|
|
// message: "删除成功",
|
|
|
|
|
// type: "success",
|
|
|
|
|
// });
|
|
|
|
|
// } else {
|
|
|
|
|
// ElMessage.error({
|
|
|
|
|
// message: res.message,
|
|
|
|
|
// type: "error",
|
|
|
|
|
// });
|
|
|
|
|
// }
|
|
|
|
|
// getSendWorkPage();
|
|
|
|
|
// });
|
|
|
|
|
// });
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
const getList = ()=>{
|
|
|
|
|
currentPage.value = 1;
|
|
|
|
|
getSendWorkPage();
|
2024-01-28 17:31:43 +08:00
|
|
|
}
|
|
|
|
|
onMounted(() => {
|
|
|
|
|
getWkTypes();
|
|
|
|
|
});
|
2024-01-26 09:02:58 +08:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
.percentage-content {
|
2024-01-28 17:31:43 +08:00
|
|
|
height: auto;
|
2024-01-26 09:02:58 +08:00
|
|
|
display: flex;
|
2024-01-28 17:31:43 +08:00
|
|
|
flex-direction: column;
|
|
|
|
|
.rg {
|
|
|
|
|
padding: 16px;
|
|
|
|
|
background: #fff;
|
|
|
|
|
box-shadow: 0 0 6px rgb(0 120 255 / 10%);
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
:deep(.el-radio-button__inner) {
|
|
|
|
|
min-width: 150px;
|
|
|
|
|
}
|
2024-01-26 09:02:58 +08:00
|
|
|
}
|
2024-01-28 17:31:43 +08:00
|
|
|
.content {
|
|
|
|
|
width: 100%;
|
|
|
|
|
background: #fff;
|
|
|
|
|
border-radius: 0.26042vw;
|
|
|
|
|
box-shadow: 0 0 0.41667vw 0 rgb(8 33 85 / 10%);
|
|
|
|
|
padding: 0.83333vw;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
overflow-x: hidden !important;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
.table {
|
|
|
|
|
margin-top: 16px;
|
|
|
|
|
}
|
2024-01-26 09:02:58 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|