11
WXL
2024-05-30 7bc46f0968567d82f70d310da021e2fc3a707cae
src/views/project/tallage/computingBill/index.vue
@@ -308,6 +308,8 @@
                  <el-select
                    v-model="patientqueryParams.donorname"
                    filterable
                    allow-create
                    default-first-option
                    placeholder="请选择"
                  >
                    <el-option
@@ -589,9 +591,8 @@
  data() {
    return {
      swgatheringlist: [
        { label: "审核中", value: 1 },
        { label: "允许算税", value: 0 },
        { label: "已算税", value: 2 }
        { label: "已算税", value: 1 },
        { label: "未算税", value: 0 }
      ],
      gatheringlist: [
        { label: "未付款", value: "0" },
@@ -606,7 +607,6 @@
        // pacheckno: "047",
        // checkstatus: 0,
        pfundtaxid: 0,
        departid: 0,
        pageNum: 1,
        pageSize: 10
      },
@@ -872,7 +872,6 @@
      if (this.multipleSelection.length <= selection.length) {
        this.multipleSelection = selection;
      } else {
        console.log(11);
        this.multipleSelection.forEach(item => {
          if (selection.includes(item)) {
          } else {
@@ -997,7 +996,7 @@
      this.title = "新增专家费汇总单";
      //获取登录者信息
      getUserProfile().then(res => {
        this.form.username = res.createBy;
        this.form.username = res.data.createBy;
      });
    },