2023-09-24 18:35:52 +08:00
|
|
|
<template>
|
|
|
|
<div class="app-container">
|
|
|
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
2023-09-26 00:01:20 +08:00
|
|
|
<el-form-item label="项目名称" prop="projectId">
|
|
|
|
<el-select v-model="queryParams.projectId" placeholder="请选择项目" clearable @change="doQuerySub">
|
|
|
|
<el-option v-for="(item, index) in projectOptions" :key="index" :label="item.projectName" :value="item.id">
|
|
|
|
</el-option>
|
|
|
|
</el-select>
|
2023-09-24 18:35:52 +08:00
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="总包单位" prop="subDeptId">
|
2023-09-26 00:01:20 +08:00
|
|
|
<el-select v-model="queryParams.subDeptId" placeholder="请选择总包单位" clearable>
|
|
|
|
<el-option v-for="(item, index) in depts" :key="index" :label="item.deptName" :value="item.deptId">
|
|
|
|
</el-option>
|
|
|
|
</el-select>
|
2023-09-24 18:35:52 +08:00
|
|
|
</el-form-item>
|
|
|
|
<el-form-item>
|
|
|
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
|
|
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form>
|
|
|
|
|
|
|
|
<el-row :gutter="10" class="mb8">
|
|
|
|
<el-col :span="1.5">
|
2023-09-26 00:01:20 +08:00
|
|
|
<el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAdd"
|
|
|
|
v-hasPermi="['project:attendanceConfig:add']">新增</el-button>
|
2023-09-24 18:35:52 +08:00
|
|
|
</el-col>
|
|
|
|
<el-col :span="1.5">
|
2023-09-26 00:01:20 +08:00
|
|
|
<el-button type="success" plain icon="el-icon-edit" size="mini" :disabled="single" @click="handleUpdate"
|
|
|
|
v-hasPermi="['project:attendanceConfig:edit']">修改</el-button>
|
2023-09-24 18:35:52 +08:00
|
|
|
</el-col>
|
|
|
|
<el-col :span="1.5">
|
2023-09-26 00:01:20 +08:00
|
|
|
<el-button type="danger" plain icon="el-icon-delete" size="mini" :disabled="multiple" @click="handleDelete"
|
|
|
|
v-hasPermi="['project:attendanceConfig:remove']">删除</el-button>
|
2023-09-24 18:35:52 +08:00
|
|
|
</el-col>
|
2023-09-26 00:01:20 +08:00
|
|
|
<el-col :span="1.5" v-if="1 == 2">
|
|
|
|
<el-button type="warning" plain icon="el-icon-download" size="mini" @click="handleExport"
|
|
|
|
v-hasPermi="['project:attendanceConfig:export']">导出</el-button>
|
2023-09-24 18:35:52 +08:00
|
|
|
</el-col>
|
|
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
<el-table v-loading="loading" :data="attendanceConfigList" @selection-change="handleSelectionChange">
|
|
|
|
<el-table-column type="selection" width="55" align="center" />
|
2023-09-26 00:01:20 +08:00
|
|
|
<el-table-column label="对接厂商" align="center" prop="vendorName" />
|
|
|
|
<el-table-column label="项目名称" align="center" prop="projectName" />
|
|
|
|
<el-table-column label="总包单位" align="center" prop="unitName" />
|
|
|
|
<el-table-column label="是否启用" align="center" prop="enabled">
|
|
|
|
<template slot-scope="{row}">
|
|
|
|
<el-switch v-model="row.enabled" :active-value="1" @change="doUpdateRow(row)" :inactive-value="0"></el-switch>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
2023-09-24 18:35:52 +08:00
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
|
<template slot-scope="scope">
|
2023-09-26 00:01:20 +08:00
|
|
|
<el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"
|
|
|
|
v-hasPermi="['project:attendanceConfig:edit']">修改</el-button>
|
|
|
|
<el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"
|
|
|
|
v-hasPermi="['project:attendanceConfig:remove']">删除</el-button>
|
2023-09-24 18:35:52 +08:00
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table>
|
2023-09-26 00:01:20 +08:00
|
|
|
|
|
|
|
<pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize"
|
|
|
|
@pagination="getList" />
|
2023-09-24 18:35:52 +08:00
|
|
|
|
|
|
|
<!-- 添加或修改项目考勤配置对话框 -->
|
2023-09-26 00:01:20 +08:00
|
|
|
<el-dialog :title="title" :visible.sync="open" width="800px" append-to-body>
|
|
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="100px">
|
|
|
|
<el-form-item label="项目名称" prop="projectId">
|
|
|
|
<el-select v-if="mode == 'add'" v-model="form.projectId" placeholder="请选择项目" clearable @change="doQueryFormSub">
|
|
|
|
<el-option v-for="(item, index) in projectOptions" :key="index" :label="item.projectName" :value="item.id">
|
|
|
|
</el-option>
|
|
|
|
</el-select>
|
|
|
|
<span v-else>{{ form.projectName }}</span>
|
2023-09-24 18:35:52 +08:00
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="总包单位" prop="subDeptId">
|
2023-09-26 00:01:20 +08:00
|
|
|
<el-select v-if="mode == 'add'" v-model="form.subDeptId" placeholder="请选择总包单位" clearable>
|
|
|
|
<el-option v-for="(item, index) in formDepts" :key="index" :label="item.deptName" :value="item.deptId">
|
|
|
|
</el-option>
|
|
|
|
</el-select>
|
|
|
|
<span v-else>{{ form.unitName }}</span>
|
2023-09-24 18:35:52 +08:00
|
|
|
</el-form-item>
|
2023-09-26 00:01:20 +08:00
|
|
|
<el-tabs v-model="actTab">
|
|
|
|
<el-tab-pane v-for="(it, idx) in dict.type.attendance_vendors" :key="idx" :label="it.label" :name="it.value">
|
|
|
|
<el-form-item label="APPID" prop="appId">
|
|
|
|
<el-input v-model="form.appId" placeholder="请输AppId" clearable />
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="Secret" prop="secret">
|
|
|
|
<el-input v-model="form.secret" placeholder="请输Secret" clearable />
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="ProjectId" prop="appProjectId">
|
|
|
|
<el-input v-model="form.appProjectId" placeholder="请输ProjectId" clearable />
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="是否启用" prop="enabled">
|
|
|
|
<el-radio-group v-model="form.enabled">
|
|
|
|
<el-radio :label="1">启用</el-radio>
|
|
|
|
<el-radio :label="0">停用</el-radio>
|
|
|
|
</el-radio-group>
|
|
|
|
</el-form-item>
|
|
|
|
</el-tab-pane>
|
|
|
|
</el-tabs>
|
2023-09-24 18:35:52 +08:00
|
|
|
</el-form>
|
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
|
<el-button type="primary" @click="submitForm">确 定</el-button>
|
|
|
|
<el-button @click="cancel">取 消</el-button>
|
|
|
|
</div>
|
|
|
|
</el-dialog>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import { listAttendanceConfig, getAttendanceConfig, delAttendanceConfig, addAttendanceConfig, updateAttendanceConfig } from "@/api/project/attendanceConfig";
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: "AttendanceConfig",
|
2023-09-26 00:01:20 +08:00
|
|
|
dicts: ['attendance_vendors'],
|
2023-09-24 18:35:52 +08:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
// 遮罩层
|
|
|
|
loading: true,
|
|
|
|
// 选中数组
|
|
|
|
ids: [],
|
|
|
|
// 非单个禁用
|
|
|
|
single: true,
|
|
|
|
// 非多个禁用
|
|
|
|
multiple: true,
|
|
|
|
// 显示搜索条件
|
|
|
|
showSearch: true,
|
|
|
|
// 总条数
|
|
|
|
total: 0,
|
|
|
|
// 项目考勤配置表格数据
|
|
|
|
attendanceConfigList: [],
|
|
|
|
// 弹出层标题
|
|
|
|
title: "",
|
|
|
|
// 是否显示弹出层
|
|
|
|
open: false,
|
|
|
|
// 查询参数
|
|
|
|
queryParams: {
|
|
|
|
pageNum: 1,
|
|
|
|
pageSize: 10,
|
|
|
|
projectId: null,
|
|
|
|
subDeptId: null,
|
|
|
|
vendorsCode: null,
|
|
|
|
vendorsParameter: null,
|
|
|
|
enabled: null,
|
|
|
|
state: null,
|
|
|
|
isDel: null,
|
|
|
|
},
|
|
|
|
// 表单参数
|
2023-09-26 00:01:20 +08:00
|
|
|
form: {
|
|
|
|
projectId: '',
|
|
|
|
subDeptId: '',
|
|
|
|
appId: '',
|
|
|
|
secret: '',
|
|
|
|
appProjectId: '',
|
|
|
|
enabled: 0
|
|
|
|
},
|
2023-09-24 18:35:52 +08:00
|
|
|
// 表单校验
|
|
|
|
rules: {
|
2023-09-26 00:01:20 +08:00
|
|
|
|
|
|
|
},
|
|
|
|
projectOptions: [],
|
|
|
|
depts: [],
|
|
|
|
formDepts: [],
|
|
|
|
actTab: '',
|
|
|
|
mode: '',
|
2023-09-24 18:35:52 +08:00
|
|
|
};
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
this.getList();
|
|
|
|
},
|
|
|
|
methods: {
|
2023-09-26 00:01:20 +08:00
|
|
|
doQueryFormSub() {
|
|
|
|
let prjId = this.form.projectId;
|
|
|
|
let tmps = this.prjDept2 && this.prjDept2[prjId] ? this.prjDept2[prjId] || [] : [];
|
|
|
|
if (tmps.length > 0) {
|
|
|
|
this.formDepts = tmps;
|
|
|
|
if (tmps.length == 1) {
|
|
|
|
this.form.subDeptId = tmps[0].deptId;
|
|
|
|
} else {
|
|
|
|
this.form.subDeptId = '';
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this.$api.publics.queryUnitList({
|
|
|
|
projectId: prjId,
|
|
|
|
unitTypes: "2".split(","),
|
|
|
|
}).then((d) => {
|
|
|
|
let objs = d.rows || [];
|
|
|
|
if (!this.prjDept2) {
|
|
|
|
this.prjDept2 = {};
|
|
|
|
}
|
|
|
|
this.prjDept2[this.queryParams.projectId] = objs;
|
|
|
|
this.formDepts = objs;
|
|
|
|
if (objs.length == 1) {
|
|
|
|
this.form.subDeptId = objs[0].deptId;
|
|
|
|
} else {
|
|
|
|
this.form.subDeptId = '';
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
doQuerySub() {
|
|
|
|
let tmps = this.prjDept2 && this.prjDept2[this.queryParams.projectId] ? this.prjDept2[this.queryParams.projectId] || [] : [];
|
|
|
|
if (tmps.length > 0) {
|
|
|
|
this.depts = tmps;
|
|
|
|
if (tmps.length == 1) {
|
|
|
|
this.queryParams.subDeptId = tmps[0].deptId;
|
|
|
|
} else {
|
|
|
|
this.queryParams.subDeptId = '';
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this.$api.publics.queryUnitList({
|
|
|
|
projectId: this.queryParams.projectId,
|
|
|
|
unitTypes: "2".split(","),
|
|
|
|
}).then((d) => {
|
|
|
|
let objs = d.rows || [];
|
|
|
|
if (!this.prjDept2) {
|
|
|
|
this.prjDept2 = {};
|
|
|
|
}
|
|
|
|
this.prjDept2[this.queryParams.projectId] = objs;
|
|
|
|
this.depts = objs;
|
|
|
|
if (objs.length == 1) {
|
|
|
|
this.queryParams.subDeptId = objs[0].deptId;
|
|
|
|
} else {
|
|
|
|
this.queryParams.subDeptId = '';
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
init() {
|
|
|
|
if (this.projectOptions && this.projectOptions.length > 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this.$api.publics.getMyProjectList({}).then((response) => {
|
|
|
|
this.projectOptions = response.rows;
|
|
|
|
});
|
|
|
|
},
|
2023-09-24 18:35:52 +08:00
|
|
|
/** 查询项目考勤配置列表 */
|
|
|
|
getList() {
|
|
|
|
this.loading = true;
|
|
|
|
listAttendanceConfig(this.queryParams).then(response => {
|
|
|
|
this.attendanceConfigList = response.rows;
|
|
|
|
this.total = response.total;
|
|
|
|
this.loading = false;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
// 取消按钮
|
|
|
|
cancel() {
|
|
|
|
this.open = false;
|
|
|
|
this.reset();
|
|
|
|
},
|
|
|
|
// 表单重置
|
|
|
|
reset() {
|
|
|
|
this.form = {
|
|
|
|
id: null,
|
|
|
|
projectId: null,
|
|
|
|
subDeptId: null,
|
|
|
|
vendorsCode: null,
|
|
|
|
vendorsParameter: null,
|
|
|
|
enabled: null,
|
|
|
|
state: null,
|
|
|
|
remark: null,
|
|
|
|
isDel: null,
|
|
|
|
createBy: null,
|
|
|
|
createTime: null,
|
|
|
|
updateBy: null,
|
|
|
|
updateTime: null
|
|
|
|
};
|
|
|
|
this.resetForm("form");
|
|
|
|
},
|
|
|
|
/** 搜索按钮操作 */
|
|
|
|
handleQuery() {
|
|
|
|
this.queryParams.pageNum = 1;
|
|
|
|
this.getList();
|
|
|
|
},
|
|
|
|
/** 重置按钮操作 */
|
|
|
|
resetQuery() {
|
|
|
|
this.resetForm("queryForm");
|
|
|
|
this.handleQuery();
|
|
|
|
},
|
|
|
|
// 多选框选中数据
|
|
|
|
handleSelectionChange(selection) {
|
|
|
|
this.ids = selection.map(item => item.id)
|
2023-09-26 00:01:20 +08:00
|
|
|
this.single = selection.length !== 1
|
2023-09-24 18:35:52 +08:00
|
|
|
this.multiple = !selection.length
|
|
|
|
},
|
|
|
|
/** 新增按钮操作 */
|
|
|
|
handleAdd() {
|
|
|
|
this.reset();
|
|
|
|
this.open = true;
|
2023-09-26 00:01:20 +08:00
|
|
|
this.mode = "add";
|
|
|
|
this.title = "添加劳务实名制配置";
|
|
|
|
this.rules = {
|
|
|
|
projectId: [{ required: true, trigger: "blur", message: "请选择" }],
|
|
|
|
subDeptId: [{ required: true, trigger: "blur", message: "请选择" }],
|
|
|
|
appId: [{ required: true, trigger: "blur", message: "请输入" }],
|
|
|
|
secret: [{ required: true, trigger: "blur", message: "请输入" }],
|
|
|
|
appProjectId: [{ required: true, trigger: "blur", message: "请输入" }],
|
|
|
|
enabled: [{ required: true, trigger: "blur", message: "请选择" }]
|
|
|
|
}
|
|
|
|
this.actTab = this.dict.type.attendance_vendors[0].value;
|
|
|
|
setTimeout(()=>{
|
|
|
|
this.$refs["form"].clearValidate();
|
|
|
|
},0);
|
2023-09-24 18:35:52 +08:00
|
|
|
},
|
|
|
|
/** 修改按钮操作 */
|
|
|
|
handleUpdate(row) {
|
|
|
|
this.reset();
|
|
|
|
const id = row.id || this.ids
|
|
|
|
getAttendanceConfig(id).then(response => {
|
2023-09-26 00:01:20 +08:00
|
|
|
this.mode = "edit"
|
|
|
|
let obj = response.data;
|
|
|
|
let p = obj.vendorsParameter ? this.$tryToJson(obj.vendorsParameter, {}) : {};
|
|
|
|
obj.appId = p.appId || '';
|
|
|
|
obj.secret = p.secret || '',
|
|
|
|
obj.appProjectId = p.projectId || '';
|
|
|
|
this.form = obj;
|
2023-09-24 18:35:52 +08:00
|
|
|
this.open = true;
|
2023-09-26 00:01:20 +08:00
|
|
|
this.title = "修改劳务实名制配置";
|
|
|
|
this.actTab = this.dict.type.attendance_vendors[0].value;
|
|
|
|
this.rules = {
|
|
|
|
appId: [{ required: true, trigger: "blur", message: "请输入" }],
|
|
|
|
secret: [{ required: true, trigger: "blur", message: "请输入" }],
|
|
|
|
appProjectId: [{ required: true, trigger: "blur", message: "请输入" }],
|
|
|
|
enabled: [{ required: true, trigger: "blur", message: "请选择" }]
|
|
|
|
}
|
|
|
|
setTimeout(()=>{
|
|
|
|
this.$refs["form"].clearValidate();
|
|
|
|
},400);
|
2023-09-24 18:35:52 +08:00
|
|
|
});
|
|
|
|
},
|
2023-09-26 00:01:20 +08:00
|
|
|
doUpdateRow(row){
|
|
|
|
updateAttendanceConfig(row).then(response => {
|
|
|
|
this.$modal.msgSuccess("修改成功");
|
|
|
|
this.getList();
|
|
|
|
});
|
|
|
|
},
|
2023-09-24 18:35:52 +08:00
|
|
|
/** 提交按钮 */
|
|
|
|
submitForm() {
|
|
|
|
this.$refs["form"].validate(valid => {
|
|
|
|
if (valid) {
|
2023-09-26 00:01:20 +08:00
|
|
|
let params = {
|
|
|
|
appId: this.form.appId,
|
|
|
|
secret: this.form.secret,
|
|
|
|
projectId: this.form.appProjectId
|
|
|
|
};
|
|
|
|
let obj = {
|
|
|
|
projectId: this.form.projectId,
|
|
|
|
subDeptId: this.form.subDeptId,
|
|
|
|
vendorsCode: this.actTab,
|
|
|
|
vendorsParameter: JSON.stringify(params),
|
|
|
|
enabled: this.form.enabled,
|
|
|
|
state: 0,
|
|
|
|
isDel: 0
|
|
|
|
};
|
2023-09-24 18:35:52 +08:00
|
|
|
if (this.form.id != null) {
|
2023-09-26 00:01:20 +08:00
|
|
|
obj.id = this.form.id;
|
|
|
|
updateAttendanceConfig(obj).then(response => {
|
2023-09-24 18:35:52 +08:00
|
|
|
this.$modal.msgSuccess("修改成功");
|
|
|
|
this.open = false;
|
|
|
|
this.getList();
|
|
|
|
});
|
|
|
|
} else {
|
2023-09-26 00:01:20 +08:00
|
|
|
addAttendanceConfig(obj).then(response => {
|
2023-09-24 18:35:52 +08:00
|
|
|
this.$modal.msgSuccess("新增成功");
|
|
|
|
this.open = false;
|
|
|
|
this.getList();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
/** 删除按钮操作 */
|
|
|
|
handleDelete(row) {
|
|
|
|
const ids = row.id || this.ids;
|
2023-09-26 00:01:20 +08:00
|
|
|
this.$modal.confirm('是否确认删除项目考勤配置编号为"' + ids + '"的数据项?').then(function () {
|
2023-09-24 18:35:52 +08:00
|
|
|
return delAttendanceConfig(ids);
|
|
|
|
}).then(() => {
|
|
|
|
this.getList();
|
|
|
|
this.$modal.msgSuccess("删除成功");
|
2023-09-26 00:01:20 +08:00
|
|
|
}).catch(() => { });
|
2023-09-24 18:35:52 +08:00
|
|
|
},
|
|
|
|
/** 导出按钮操作 */
|
|
|
|
handleExport() {
|
|
|
|
this.download('project/attendanceConfig/export', {
|
|
|
|
...this.queryParams
|
|
|
|
}, `attendanceConfig_${new Date().getTime()}.xlsx`)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|