| | |
| | | <el-row> |
| | | <el-col :span="5"> |
| | | <el-form-item |
| | | label-width="120px" |
| | | label-width="120px" |
| | | label="申请材料状态" |
| | | prop="checkstatus" |
| | | style="float: left" |
| | |
| | | </el-col> |
| | | </el-row> |
| | | </el-form> |
| | | <el-row> |
| | | <el-col :span="8"> |
| | | <div style="margin-bottom: 15px;"> |
| | | <el-button |
| | | type="primary" |
| | | plain |
| | | icon="el-icon-circle-check" |
| | | size="mini" |
| | | @click="Totalcalculation(1)" |
| | | >计税后合计</el-button |
| | | > |
| | | <el-button |
| | | icon="el-icon-remove-outline" |
| | | type="success" |
| | | plain |
| | | size="mini" |
| | | @click="Totalcalculation(0)" |
| | | >计税前合计</el-button |
| | | > |
| | | </div> |
| | | </el-col> |
| | | </el-row> |
| | | <el-form ref="infoform" label-width="100px"> |
| | | <el-row> |
| | | <el-table |
| | | v-loading="loading" |
| | | ref="multipleTable" |
| | | tooltip-effect="dark" |
| | | border |
| | | :data="donateconsolationfundList" |
| | | @selection-change="handleSelectionChange" |
| | | > |
| | | <!-- |
| | | <el-table-column label="审批状态" width="120" align="center" prop="checkFlag"> |
| | | <el-table-column type="selection" width="45"> </el-table-column> |
| | | <el-table-column |
| | | label="个税计算情况" |
| | | align="center" |
| | | prop="recordstatus" |
| | | width="200" |
| | | > |
| | | <template slot-scope="scope"> |
| | | <span v-if="scope.row.checkFlag == 0"><i class="el-icon-check" |
| | | style="color: #5fb878; font-weight: bold"></i></span> |
| | | <span v-else>待审核</span> |
| | | <dict-tag :options="dict.type.sys_tax" :value="scope.row.istax" /> |
| | | </template> |
| | | </el-table-column> |
| | | --> |
| | | <el-table-column |
| | | label="申请日期" |
| | | width="120" |
| | |
| | | getdownloadBX, |
| | | checkfund, |
| | | listbypower, |
| | | addFundSharedInfo |
| | | addFundSharedInfo, |
| | | TotalcalculationFn |
| | | } from "@/api/project/fund"; |
| | | import { |
| | | onelistFunds, |
| | |
| | | "sys_fund_type", |
| | | "sys_finsubject", |
| | | "sys_financeitemtype", |
| | | "sys_stage_type" |
| | | "sys_stage_type", |
| | | "sys_tax" |
| | | ], |
| | | data() { |
| | | return { |
| | |
| | | exportLoading: false, |
| | | // 选中数组 |
| | | ids: [], |
| | | overallids: [], //总选中 |
| | | overallidsvalue: [], //总选中对象 |
| | | |
| | | // 非单个禁用 |
| | | single: true, |
| | | // 非多个禁用 |
| | |
| | | checkmaterials: [ |
| | | { |
| | | value: 1, |
| | | label: "待审查" |
| | | label: "材料待审核" |
| | | }, |
| | | { |
| | | value: 2, |
| | | label: "审核通过等待材料" |
| | | label: "审查通过等待邮寄纸质材料" |
| | | }, |
| | | { |
| | | value: 3, |
| | | label: "已收到材料" |
| | | label: "已收到纸质材料" |
| | | } |
| | | ], |
| | | |
| | |
| | | }, |
| | | // 多选框选中数据 |
| | | handleSelectionChange(selection) { |
| | | this.ids = selection.map(item => item.id); |
| | | this.single = selection.length !== 1; |
| | | this.multiple = !selection.length; |
| | | let xuanzlist = selection.map(item => item.id); |
| | | if (this.ids.length <= selection.length) { |
| | | this.ids = xuanzlist; |
| | | } else { |
| | | this.ids.forEach(item => { |
| | | if (xuanzlist.includes(item)) { |
| | | } else { |
| | | this.ids.splice(this.ids.indexOf(item), 1); |
| | | this.overallids.splice(this.overallids.indexOf(item), 1); |
| | | this.overallidsvalue.splice(this.overallidsvalue.indexOf(item), 1); |
| | | } |
| | | }); |
| | | } |
| | | console.log(this.ids); |
| | | this.ids.forEach(item => { |
| | | if (this.overallids.includes(item)) { |
| | | console.log("3 is in the array"); |
| | | } else { |
| | | this.overallids.push(item); |
| | | const obj = selection.find(obj => obj.id === item); |
| | | console.log(obj); |
| | | this.overallidsvalue.push(obj); |
| | | } |
| | | }); |
| | | console.log(this.overallids); |
| | | }, |
| | | // 切换页后恢复选中 |
| | | Restorecheck() { |
| | | console.log(this.donateconsolationfundList); |
| | | console.log(this.overallids); |
| | | const overlap = this.donateconsolationfundList.filter(value => { |
| | | return this.overallids.includes(value.id); |
| | | }); |
| | | // 保持ids和当前页面的同步性 |
| | | this.ids = overlap.map(item => item.id); |
| | | console.log(overlap, "当前页选中数据"); |
| | | this.toggleSelection(overlap); |
| | | }, |
| | | // 挂载选择状态 |
| | | toggleSelection(rows) { |
| | | console.log(rows); |
| | | if (rows) { |
| | | this.$nextTick(() => { |
| | | rows.forEach(row => { |
| | | console.log(row); |
| | | this.$refs.multipleTable.toggleRowSelection(row, true); |
| | | console.log(1); |
| | | }); |
| | | }); |
| | | } else { |
| | | this.$refs.multipleTable.clearSelection(); |
| | | } |
| | | }, |
| | | Totalcalculation(tot) { |
| | | console.log(tot); |
| | | let bojite = { |
| | | fundids: this.overallids, |
| | | isTaxAfter: tot |
| | | }; |
| | | if (tot == 0) { |
| | | TotalcalculationFn(bojite).then(row => { |
| | | console.log(row.msg); |
| | | if (row.code == 200) { |
| | | this.$modal.msgSuccess(row.msg); |
| | | } else { |
| | | console.log(123); |
| | | this.$modal.msgError(row.msg); |
| | | } |
| | | }).catch(error => { |
| | | this.$modal.msgError(error); |
| | | }); |
| | | } else { |
| | | console.log(this.overallidsvalue); |
| | | const hasValue = this.overallidsvalue.every(obj => obj.istax == 1); |
| | | if (hasValue) { |
| | | TotalcalculationFn(bojite).then(row => { |
| | | if (row.code == 200) { |
| | | this.$modal.msgSuccess(row.msg); |
| | | } else { |
| | | this.$modal.msgError(row.msg); |
| | | } |
| | | }).catch(error => { |
| | | this.$modal.msgError(error); |
| | | }); |
| | | } else { |
| | | this.$modal.msgError("请选择算税后的数据进行合并计算"); |
| | | } |
| | | } |
| | | }, |
| | | /** 新增按钮操作 */ |
| | | handleAdd() { |