qx
qx
2025-03-18 7f6ec112b1295e6edd669a1592a596e904c930b5
qx
5个文件已修改
64 ■■■■■ 已修改文件
src/components/jianceResult/index.vue 4 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/doctor/check/index.vue 33 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/hosp/project/index.vue 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/system/package/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/system/tijian/index.vue 17 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/jianceResult/index.vue
@@ -87,7 +87,9 @@
      console.log(this.list);
      
    },
    getList() {
    getList(row,date) {
      console.log(row)
     this.proId=row.proId
      this.loading = true;
      selectZT({
        proId: this.proId,
src/views/doctor/check/index.vue
@@ -1096,17 +1096,24 @@
    // 以下为其他方法,未做修改,仅保留必要部分,其余省略以保持简洁
    handleFocus(row) {
      this.autorule = [];
      if (!row.resultType || row.resultType == 2) return;
      this.curindex = row;
      selectZT({ proId: row.proId }).then((res) => {
      if (!row.resultType || row.resultType == 2 ) {
        return;
      } else {
        this.curindex = row;
      selectZT({
        proId: row.proId,
      }).then((res) => {
        if (res.data.length > 0) {
          this.$refs.bbb.title = "选择检测结果";
          this.$refs.bbb.open = true;
          this.$refs.bbb.getList(this.curindex);
        // this.$refs.bbb.proId = row.proId;
        this.$refs.bbb.open = true;
        this.$refs.bbb.getList(this.curindex);
        } else {
          this.$refs.bbb.open = false;
        }
      });
      }
    },
    handleChangesZt(params) {
@@ -1303,21 +1310,7 @@
      this.inputDoms = inputDoms;
    },
    keyInputConfirm(event, currentRowIndex) {
      event.preventDefault();
      event.stopPropagation();
      const nextRowIndex = currentRowIndex + 1;
      if (nextRowIndex < this.proParentList.sons.length) {
        this.$nextTick(() => {
          const nextInputRef = `input-${nextRowIndex}`;
          const nextInput = this.$refs[nextInputRef];
          if (nextInput) {
            const target = Array.isArray(nextInput) ? nextInput[0] : nextInput;
            target.focus();
          }
        });
      }
    },
    keyInputConfirm(event,index, currentRowIndex) {
src/views/hosp/project/index.vue
@@ -692,13 +692,7 @@
          } else if (this.treeDate.id) {
           if(this.treeDate.qf == "0"){
            this.form.proParentId = "0"
            this.projectOptions.forEach((item) => {
              item.children.forEach((item1) => {
                if (this.treeDate.id == item1.deptId) {
                  this.form.deptId = item1.deptId;
                }
              });
            });
            this.form.deptId=this.treeDate.id
           }else{
            this.form.proParentId = this.treeDate.id;
            this.projectOptions.forEach((item) => {
src/views/system/package/index.vue
@@ -206,7 +206,7 @@
        <el-form-item label="现价" prop="xianprice">
          <el-input v-model="form.xianprice" placeholder="现价" clearable style="width: 140px" @input="changeXianjia"
            @blur="numberChangeXianPrice(youhui, youhui)" type="number" :debounce="3000"/>
            @blur="numberChangeXianPrice(youhui, youhui)" type="number" :debounce="3000" min="0"/>
        </el-form-item>
        <el-form-item label="关键字" prop="keywords">
          <el-select multiple v-model="form.keywords" placeholder="请选择关键字" style="width: 160px" @change="sel" filterable
src/views/system/tijian/index.vue
@@ -1225,11 +1225,9 @@
      this.open1 = true;
      this.title = "添加体检单位信息维护";
    },
    idFn1(value) {
      if (value) {
        // console.log(value);
    idFn1() {
      if (this.form.firmName) {
        const originalCompId = this.form.firmId;
        this.form.firmName = value;
        this.CompanyList.forEach((item) => {
          if (item.cnName == this.form.firmName) {
            this.form.firmId = item.drugManufacturerId;
@@ -1239,10 +1237,15 @@
        if (this.form.firmId === originalCompId) {
          this.form.firmId = "";
        }
        if (this.form.firmId) {
          this.form.tjType = this.dict.type.dict_team[2].value;
        }
      }
      if (this.form.firmName) {
          this.form.tjType = this.dict.type.dict_team[1].value;
        }else{
          this.form.tjType = this.dict.type.dict_team[0].value;
        }
    },
    getCurrentDateTime() {
      const currentDate = new Date();