| | |
| | | :before-close="handleClosehz" |
| | | > |
| | | <div class="examine-jic"> |
| | | <div style="margin: 0 10px 20px 10px;"> |
| | | <el-card class="box-card"> |
| | | <el-tag |
| | | v-for="item in overallCase" |
| | | :key="item.id" |
| | | closable |
| | | @close="handleClose(item)" |
| | | > |
| | | {{ item.donorname }} |
| | | </el-tag> |
| | | <div style="margin-top: 20px; text-align: right;"> |
| | | 共选择<span |
| | | style="font-size: 18px; color: #409EFF;margin: 0 10px;" |
| | | >{{ overallCase.length }}</span |
| | | >条数据 |
| | | </div> |
| | | </el-card> |
| | | </div> |
| | | <div class="jic-value"> |
| | | <el-row :gutter="20"> |
| | | <!--用户数据--> |
| | |
| | | :key="item.id" |
| | | :label="item.name" |
| | | :value="item.id" |
| | | > |
| | | </el-option> |
| | | </el-select> </el-form-item |
| | | ><el-form-item label="算税状态" prop="status"> |
| | | <el-select |
| | | v-model="patientqueryParams.istax" |
| | | filterable |
| | | placeholder="请选择" |
| | | > |
| | | <el-option |
| | | v-for="item in istaxlist" |
| | | :key="item.value" |
| | | :label="item.label" |
| | | :value="item.value" |
| | | > |
| | | </el-option> |
| | | </el-select> |
| | |
| | | </el-table-column> |
| | | <el-table-column |
| | | prop="taXmoney" |
| | | label="扣税金额(缺)" |
| | | label="扣税金额" |
| | | show-overflow-tooltip |
| | | > |
| | | </el-table-column> |
| | |
| | | { label: "未付款", value: "0" }, |
| | | { label: "已付款", value: "1" } |
| | | ], |
| | | // 当前页选中数据 |
| | | multipleSelection: [], |
| | | // 总选中数据 |
| | | overallCase: [], |
| | | patientqueryParams: { |
| | | paApplyType: 1, |
| | | pacheckno: "047", |
| | | checkstatus: 0, |
| | | istax:0, |
| | | pageNum: 1, |
| | | pageSize: 10 |
| | | }, |
| | |
| | | organParams: { |
| | | pageNum: 1, |
| | | pageSize: 10, |
| | | paymentid: null |
| | | paymentid: null, |
| | | istax: 0 |
| | | }, |
| | | |
| | | // 当前用户信息 |
| | | userprofile: {}, |
| | | decision: false, |
| | | // 表单参数 |
| | | form: { |
| | | istax: 0, |
| | |
| | | |
| | | baselist: [], |
| | | donorList: [], |
| | | istaxlist: [ |
| | | { value: 0, label: "未算税" }, |
| | | { value: 2, label: "待算税" } |
| | | ], |
| | | organchargelist: [], |
| | | standardlevel: 0, |
| | | defaultperson: {}, |
| | |
| | | handleUploadError() {}, |
| | | // 弹框添加 |
| | | AddDispatchpatients() { |
| | | this.donorchargeorgans = this.donorchargeorgans.concat( |
| | | this.multipleSelection |
| | | ); |
| | | this.donorchargeorgans = this.donorchargeorgans.concat(this.overallCase); |
| | | console.log(this.donorchargeorgans, "donorchargeorgans"); |
| | | this.donorchargeorgans.forEach(item => { |
| | | CalculationDetail({ id: item.id, fundTaxId: this.form.id }); |
| | |
| | | ); |
| | | }, |
| | | // 多选框选中数据 |
| | | handleSelectionChange(val) { |
| | | this.multipleSelection = val; |
| | | handleSelectionChange(selection) { |
| | | if (this.decision) return; |
| | | // 判断是否有删除 |
| | | if (this.multipleSelection.length <= selection.length) { |
| | | this.multipleSelection = selection; |
| | | } else { |
| | | console.log(11); |
| | | this.multipleSelection.forEach(item => { |
| | | if (selection.includes(item)) { |
| | | } else { |
| | | if (this.multipleSelection.length == 1) { |
| | | this.multipleSelection = []; |
| | | } else { |
| | | this.multipleSelection.splice( |
| | | this.multipleSelection.indexOf(item), |
| | | 1 |
| | | ); |
| | | } |
| | | if (this.overallCase.length == 1) { |
| | | this.overallCase = []; |
| | | } else { |
| | | this.overallCase.splice(this.overallCase.indexOf(item), 1); |
| | | } |
| | | } |
| | | }); |
| | | } |
| | | // 赋值给整体选中数组 |
| | | this.multipleSelection.forEach(item => { |
| | | if (!this.overallCase.includes(item)) { |
| | | this.overallCase.push(item); |
| | | } |
| | | }); |
| | | console.log(this.multipleSelection, "触发选择后multipleSelection"); |
| | | }, |
| | | // 切换页后恢复选中 |
| | | Restorecheck() { |
| | | console.log(this.overallCase, "this.overallCase"); |
| | | const allid = this.overallCase.map(item => item.id); |
| | | const overlap = this.donorchargeList.filter(value => { |
| | | return allid.includes(value.id); |
| | | }); |
| | | // 保持ids和当前页面的同步性 |
| | | this.multipleSelection = overlap; |
| | | console.log(this.multipleSelection, "进入分页multipleSelection"); |
| | | |
| | | this.toggleSelection(overlap); |
| | | }, |
| | | // 挂载选择状态 |
| | | toggleSelection(rows) { |
| | | if (rows) { |
| | | this.decision = true; |
| | | this.$nextTick(() => { |
| | | rows.forEach(row => { |
| | | this.$refs.multipleTable.toggleRowSelection(row, true); |
| | | }); |
| | | this.decision = false; |
| | | }); |
| | | console.log(123); |
| | | } else { |
| | | this.$refs.multipleTable.clearSelection(); |
| | | } |
| | | }, |
| | | // 选择人员标签删除事件 |
| | | handleClose(item) { |
| | | this.overallCase.splice(this.overallCase.indexOf(item), 1); |
| | | if (this.multipleSelection.indexOf(item) == -1) { |
| | | } else { |
| | | this.multipleSelection.splice(this.multipleSelection.indexOf(item), 1); |
| | | this.$refs.multipleTable.toggleRowSelection(item, false); |
| | | // this.toggleSelection(this.multipleSelection); |
| | | } |
| | | }, |
| | | // 点击新增 |
| | | handleAddpatient(row) { |
| | |
| | | ExpertfeeListnb(this.patientqueryParams).then(res => { |
| | | this.donorchargeList = res.rows; |
| | | this.patienttotal = res.total; |
| | | console.log(this.donorchargeList); |
| | | this.Restorecheck(); |
| | | }); |
| | | }, |
| | | // 获取最大taxid |
| | |
| | | color: #000000; |
| | | cursor: not-allowed; |
| | | } |
| | | ::v-deep .el-tag--medium { |
| | | height: 28px; |
| | | line-height: 26px; |
| | | margin-right: 15px; |
| | | margin-bottom: 15px; |
| | | font-size: 16px; |
| | | } |
| | | |
| | | ::v-deep .el-input--medium .el-input__inner { |
| | | height: 36px; |