WXL
昨天 c8e9849cb5f24848df0174c13bfbbff37bb08a5a
src/views/project/donatefinishcheck/index.vue
@@ -226,10 +226,10 @@
      <el-form ref="form" :model="form" :rules="rules" label-width="120px">
        <el-row>
          <el-col :span="8">
            <el-form-item label="捐献编号" prop="donorno">
            <el-form-item label="捐献编号" prop="caseNo">
              <el-input
                disabled
                v-model="curCase.donorno"
                v-model="curCase.caseNo"
                placeholder="请输入捐献者编号"
              />
            </el-form-item>
@@ -454,7 +454,7 @@
            <annex-upload
              ref="finishannex"
              :infoid="curCase.id"
              :donorno="curCase.donorno"
              :caseNo="curCase.caseNo"
              :flowname="flowname"
              :annexno="annexno"
            />
@@ -589,7 +589,7 @@
  data() {
    return {
      curCase: {
        donorno: "",
        caseNo: "",
        name: "",
        registerAddresss: "",
        infoid: "",
@@ -644,7 +644,7 @@
      queryParams: {
        pageNum: 1,
        pageSize: 10,
        donorno: null,
        caseNo: null,
        recordstate: "13",
        // treatmenthospitalno: null,
        treatmenthospitalname: null,
@@ -754,7 +754,7 @@
       this.loading = true;
      this.reset();
      this.curCase.registerAddresss = row.registeraddresss;
      this.curCase.donorno = row.donorno;
      this.curCase.caseNo = row.caseNo;
      this.curCase.name = row.name;
      this.curCase.infoid = row.id;
      this.curCase.id = row.id;
@@ -763,11 +763,11 @@
      this.curdonotor = row;
      //查询
      let searchParam = {
        donorno: row.donorno,
        caseNo: row.caseNo,
      };
      let oraganqueryParam = {
        // donorname: this.curCase.name,
        // donorno: this.curCase.donorno,
        // caseNo: this.curCase.caseNo,
        // registeraddress: this.curCase.registeraddresss,
        infoid:this.curCase.id
      };
@@ -969,7 +969,7 @@
        bloodtype: "0",
        inpatientno: null,
        rhyin: 0,
        donorno: null,
        caseNo: null,
        donationcategory: null,
        illnessoverview: null,
        diseasetype: [],
@@ -1024,7 +1024,7 @@
        // "2"
        recordstate: null,
        treatmenthospitalname: null,
        donorno: null,
        caseNo: null,
        acquisitiontissueno: null,
        reportername: null,
        reporttime: null,
@@ -1193,7 +1193,7 @@
      this.reviewForm = {
        id: null,
        infoid: null,
        donorno: null,
        caseNo: null,
        delFlag: null,
        createBy: null,
        createTime: null,
@@ -1212,7 +1212,7 @@
      // console.log(JSON.stringify(this.curCase));
      this.resetReviewForm();
      this.reviewForm.infoid = row.id;
      this.reviewForm.donorno = row.donorno;
      this.reviewForm.caseNo = row.caseNo;
      this.reviewForm.flowname = this.flowname;
      this.isShowReviewDialog = true;
    },
@@ -1272,7 +1272,7 @@
    getReview(row) {
      this.curCase = row;
      let searchParam = {
        donorno: row.donorno,
        caseNo: row.caseNo,
        flowname: this.flowname,
      };
      listDonateflowchart(searchParam).then((response) => {
@@ -1281,13 +1281,13 @@
          if (response.rows.length == 0) {
            this.resetReviewForm();
            this.reviewForm.infoid = row.id;
            this.reviewForm.donorno = row.donorno;
            this.reviewForm.caseNo = row.caseNo;
            this.reviewForm.flowname = this.flowname;
            this.isShowReviewDialog = true;
          } else if (response.rows.length == 1) {
            this.reviewForm = response.rows[0];
            this.reviewForm.infoid = row.id;
            this.reviewForm.donorno = row.donorno;
            this.reviewForm.caseNo = row.caseNo;
            this.reviewForm.flowname = this.flowname;
            this.isShowReviewDialog = true;
          }