123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455 |
- <template>
- <el-dialog title="公积金信息" v-model="visible" :width="width" append-to-body draggable @close="close" class="dialog-form">
- <!-- <div slot="title" class="dialog-title-container">
- <span class="title-label"><i class="el-icon-document" /> 工资信息</span>
- <i class="el-icon-close" @click="close" />
- </div> -->
- <!-- 功能按钮 -->
- <div style="padding: 8px 24px 16px 24px">
- <el-form size="small" label-width="120px" v-model="form">
- <el-row :gutter="30">
- <el-col :span="12">
- <el-form-item label="客户名称">
- <div>{{ form.companyName }}</div>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="所属月份">
- <div>{{ form.year }}-{{ form.month }}</div>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="服务状态">
- <el-select v-model="form.status" placeholder="请选择">
- <el-option v-for="item in selectStatus" :key="item.value" :value="item.value" :label="item.label" />
- </el-select>
- </el-form-item>
- </el-col>
- <el-divider content-position="left">社保人员信息</el-divider>
- <el-col :span="24" class="details-container">
- <!--操作按钮 开始-->
- <div class="details-head"></div>
- <div class="details-body">
- <div>
- <el-table ref="sourceTable" :data="form.housingFundConfirm.details" size="small" max-height="490px" border
- show-summary :summary-method="getSummaries" highlight-current-row
- header-row-class-name="list-header-row" row-class-name="list-row" class="salary-table"
- @selection-change="handleCheckChange" @current-change="handleCurrentChange">
- <el-table-column type="selection" width="50" align="center" />
- <el-table-column type="index" label="序号" width="50" align="center" />
- <el-table-column label="姓名" width="80" align="center">
- <template #default="scope">
- <div>
- {{ scope.row.employeeName }}
- </div>
- <span style="
- color: red;
- position: absolute;
- z-index: 10;
- top: 4px;
- right: 12px;
- ">*</span>
- </template>
- </el-table-column>
- <el-table-column label="电话号" width="130" align="center">
- <template #default="scope">
- <div>
- {{ scope.row.phone }}
- </div>
- <span style="
- color: red;
- position: absolute;
- z-index: 10;
- top: 4px;
- right: 12px;
- ">*</span>
- </template>
- </el-table-column>
- <el-table-column label="身份证正面" width="120" align="center">
- <template #default="scope">
- <div class="show-image" style="display: flex; justify-content: center">
- <img class="img" :src="baseUrl + '/' + scope.row.idCardImage" alt=""
- @click="handleImageView(scope.row.idCardImage)" />
- </div>
- <span style="
- color: red;
- position: absolute;
- z-index: 10;
- top: 4px;
- right: 12px;
- ">*</span>
- </template>
- </el-table-column>
- <el-table-column label="身份证反面" width="120" align="center">
- <template #default="scope">
- <div class="show-image" style="display: flex; justify-content: center">
- <img class="img" :src="baseUrl + '/' + scope.row.idCardImageBack" alt=""
- @click="handleImageView(scope.row.idCardImageBack)" />
- </div>
- <span style="
- color: red;
- position: absolute;
- z-index: 10;
- top: 4px;
- right: 12px;
- ">*</span>
- </template>
- </el-table-column>
- <el-table-column label="基数" width="100" align="center">
- <template #default="scope">
- <div>
- {{ scope.row.cardinalNumber }}
- </div>
- <span style="
- color: red;
- position: absolute;
- z-index: 10;
- top: 4px;
- right: 12px;
- ">*</span>
- </template>
- </el-table-column>
- <el-table-column label="比例" width="100" align="center">
- <template #default="scope">
- <div>{{ scope.row.ratio }}%</div>
- <span style="
- color: red;
- position: absolute;
- z-index: 10;
- top: 4px;
- right: 12px;
- ">*</span>
- </template>
- </el-table-column>
- <el-table-column label="备注" header-align="center">
- <template #default="scope">
- <div>
- {{ scope.row.remark }}
- </div>
- </template>
- </el-table-column>
- </el-table>
- </div>
- </div>
- </el-col>
- <el-col :span="24">
- <el-form-item label="备注">
- {{ form.housingFundConfirm.content }}
- </el-form-item>
- </el-col>
- <el-divider content-position="left">社保申报信息</el-divider>
- <el-col :span="12">
- <el-form-item label="单位缴纳:">
- {{ form.housingFundDeclare.unitAmount }}
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="个人缴纳:">
- {{ form.housingFundDeclare.individualAmount }}
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="合计:">
- {{ form.housingFundDeclare.amount }}
- </el-form-item>
- </el-col>
- <el-col :span="24">
- <el-divider />
- </el-col>
- <el-col :span="24">
- <el-form-item label="备注">
- <!-- <el-input v-model.trim="form.housingFundDeclare.content" type="textarea" rows="2" /> -->
- {{ form.housingFundDeclare.content }}
- </el-form-item>
- </el-col>
- <el-col :span="24">
- <el-form-item label="凭证" required>
- <el-table ref="dbTable" :data="form.housingFundDeclare.evidenceFiles" size="small" border
- header-row-class-name="list-header-row" row-class-name="list-row">
- <el-table-column label="文件名" prop="originalFileName" align="center" show-overflow-tooltip>
- <template #default="scope">
- <el-button size="small" type="text" @click="openFile(scope.row)">{{
- scope.row.originalFileName == ""
- ? "打开文件"
- : scope.row.originalFileName
- }}</el-button>
- </template>
- </el-table-column>
- <!-- <el-table-column
- label="文件类型"
- width="80"
- prop="fileType"
- align="center"
- /> -->
- </el-table>
- </el-form-item>
- </el-col>
- </el-row>
- </el-form>
- </div>
- <div class="form-btns-container" style="height: 40px">
- <el-button size="small" style="float: right" @click="close" icon="close">取消</el-button>
- </div>
- <el-image-viewer v-if="showViewer" :url-list="currentFileList" @close="closeImages" :initial-index="showIndex" />
- <!-- <feedback-dialog ref="feedbackDialogView" :parent="this" />
- <print-dialog ref="printDialog" :parent="this" /> -->
- </el-dialog>
- </template>
- <script setup>
- import {
- getDetail,
- saveDetail,
- updateDetail,
- } from "@/api/business/crm/serviceWorkOrder";
- import { ref } from "vue";
- const { proxy } = getCurrentInstance();
- const visible = ref(false);
- const width = ref(800);
- const selections = ref([]);
- const currentSource = ref(null);
- const showViewer = ref(false);
- const props = defineProps({
- getList: {
- type: Function,
- default: () => { },
- },
- });
- const selectStatus = ref([
- {
- label: "未开始",
- value: 0,
- color: "#fff",
- },
- {
- label: "进行中",
- value: 1,
- color: "#FFB836",
- },
- {
- label: "已完成",
- value: 3,
- color: "#2FCB81",
- },
- ]);
- const { getList } = toRefs(props);
- const total = ref(0);
- const baseUrl = ref(import.meta.env.VITE_APP_BASE_API);
- const employeeEmptyData = {
- id: null,
- title: "",
- remark: "",
- employeeName: "",
- departmentName: "",
- idCardImage: "",
- idCardImageBack: "",
- idiograph: "",
- details: [],
- editStatus: true,
- };
- const form = ref({});
- const emptyForm = {
- housingFundConfirm: {},
- housingFundDeclare: {},
- };
- function open(detail) {
- visible.value = true;
- form.value = { ...emptyForm, ...detail };
- loadData();
- }
- function loadData() {
- getDetail(form.value).then((res) => {
- form.value = { ...proxy.deepClone(emptyForm), ...res.data };
- computeTotal();
- });
- }
- function close() {
- visible.value = false;
- reset();
- }
- function reset() {
- form.value = proxy.deepClone(emptyForm);
- }
- function printSalary() { }
- function exportSalary() { }
- function handleCurrentChange(row) {
- currentSource.value = row;
- }
- function handleCheckChange(selection) {
- selections.value = selection.map((item) => item);
- }
- function handleSave() {
- proxy.$modal
- .confirm("确认保存么?")
- .then(() => {
- const saveValue = proxy.deepClone(form.value);
- saveDetail(saveValue).then((res) => {
- proxy.$modal.msgSuccess("保存成功");
- reset();
- close();
- getList.value();
- });
- })
- .catch((err) => {
- proxy.$modal.msg("取消保存");
- });
- }
- function getSummaries(param) {
- const { columns, data } = param;
- const sums = [];
- columns.forEach((column, index) => {
- if (index === 0) {
- sums[index] = "合计";
- return;
- } else if (index === 1) {
- sums[index] = "";
- return;
- }
- const values = data.map((item) => Number(item[column.property]));
- if (!values.every((value) => isNaN(value))) {
- sums[index] = values.reduce((prev, curr) => {
- const value = Number(curr);
- if (!isNaN(value)) {
- return (Number(prev) + Number(curr)).toFixed(2);
- } else {
- return Number(prev).toFixed(2);
- }
- }, 0);
- } else {
- sums[index] = "";
- }
- });
- return sums;
- }
- function handleEmployeeCreate() {
- // 此处必须进行深拷贝,否则添加的明细,将都指向了一个对象
- const _newSource = JSON.parse(JSON.stringify(employeeEmptyData));
- form.value.housingFundConfirm.details.push(_newSource);
- handleCurrentChange(_newSource);
- }
- function handleEmployeeBatchDelete() {
- proxy.$modal
- .confirm("确定删除?")
- .then(() => {
- form.value.housingFundConfirm.details =
- form.value.housingFundConfirm.details.filter(
- (item) => selections.value.indexOf(item) === -1
- );
- })
- .catch(() => {
- proxy.$modal.msg("已取消删除");
- });
- }
- function upload(param) {
- const formData = new FormData();
- formData.append("file", param.file);
- uploadFile(formData).then((res) => {
- if (res.code === 200) {
- const file = {};
- file.fileName = res.newFileName;
- file.url = res.url;
- file.originalFileName = res.originalFilename;
- file.fileUrl = res.fileName;
- form.value.housingFundDeclare.evidenceFiles.push(file);
- }
- });
- }
- function openFile(row) {
- window.open(`${baseUrl.value}${row.fileUrl}`);
- }
- function handleDel(row, index) {
- proxy.$modal
- .confirm("确定删除吗?")
- .then((_) => {
- form.value.housingFundDeclare.evidenceFiles.splice(index, 1);
- })
- .catch((_) => {
- proxy.$modal.msg("已取消删除");
- });
- }
- function computeTotal() {
- let totalSalay = 0;
- form.value.housingFundConfirm.details.forEach((l) => {
- totalSalay += l.actuallySalary == null ? 0 : l.actuallySalary;
- });
- form.value.housingFundConfirm.amount = totalSalay.toFixed(2);
- }
- function uploadIdImage(param, row, field) {
- const formData = new FormData();
- formData.append("file", param.file);
- uploadFile(formData).then((res) => {
- if (res.code === 200) {
- const file = {};
- file.fileName = res.newFileName;
- file.url = res.url;
- file.originalFileName = res.originalFilename;
- file.fileUrl = res.fileName;
- row[field] = file.fileUrl;
- }
- });
- }
- function handleImageView(fileUrl) {
- currentFileList.value = [`${baseUrl.value}${fileUrl}`];
- showViewer.value = true;
- }
- function closeImages() {
- showViewer.value = false;
- }
- // 暴露给父组件的方法
- defineExpose({
- open,
- });
- </script>
- <style scoped>
- .img {
- width: 23px;
- height: 23px;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- ::v-deep(.el-upload) {
- display: flex;
- text-align: center;
- justify-content: center;
- cursor: pointer;
- outline: 0;
- }
- .required::after {
- content: "*";
- color: red;
- }
- </style>
- <style>
- .el-table .delete-row {
- background-color: rgb(251, 159, 173);
- }
- .el-table .add-row {
- background-color: rgb(184, 234, 147);
- }
- </style>
|