su
su1124
2024-08-16 e5257a04ea7796d4b3efbf3959acd4cae9c8ca57
su
2个文件已修改
220 ■■■■■ 已修改文件
dist.zip 补丁 | 查看 | 原始文档 | blame | 历史
src/views/doctor/check/index.vue 220 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
dist.zip
Binary files differ
src/views/doctor/check/index.vue
@@ -657,7 +657,7 @@
                        <el-input
                          type="textarea"
                          placeholder="请选择内容"
                          v-model="proParentList.remark"
                          v-model="titles"
                          rows="2"
                        >
                        </el-input>
@@ -946,7 +946,7 @@
                        <el-input
                          type="textarea"
                          placeholder="请选择内容"
                          v-model="proParentList.remark"
                          v-model="titles"
                          rows="2"
                        >
                        </el-input>
@@ -1191,8 +1191,18 @@
                @selection-change="handleSelectionChanges"
              >
                <el-table-column type="selection" width="40"> </el-table-column>
                <el-table-column prop="title" label="病种名称" align="center" width="130px"></el-table-column>
                <el-table-column prop="advice" label="建议" align="center" :show-overflow-tooltip="true">
                <el-table-column
                  prop="title"
                  label="病种名称"
                  align="center"
                  width="130px"
                ></el-table-column>
                <el-table-column
                  prop="advice"
                  label="建议"
                  align="center"
                  :show-overflow-tooltip="true"
                >
                </el-table-column>
              </el-table>
              <pagination
@@ -1208,11 +1218,7 @@
                <h4>已选病种</h4>
              </div>
              
              <el-table
                border
                :data="deptAdviceList1"
                height="430px"
              >
              <el-table border :data="deptAdviceList1" height="430px">
                <el-table-column prop="title" label="病种名称" align="center">
                </el-table-column>
                <el-table-column
@@ -1342,6 +1348,9 @@
  },
  data() {
    return {
      remakes: "",
      titles: "",
      advice: "",
      idss:[],
      vaids: [],
      vaids1: [],
@@ -1381,6 +1390,7 @@
      deptAdviceList1: [],
      deptAdviceList2: [],
      deptAdviceList3: [],
      deptAdviceList4: [],
      value: {},
      remark: "", //备注
      remarks: "",
@@ -1508,88 +1518,18 @@
        tjNum: this.tableAll.tjNumber,
      };
      getAdviceByTjNumAndPro(data).then((res) => {
        console.log(res);
        if (res.data) {
          // this.deptAdviceList2 = [];
          this.deptAdviceList3 = res.data;
          this.deptAdviceList1 = [
            ...new Set(this.deptAdviceList2.concat(this.deptAdviceList3)),
          ];
          this.deptAdviceList3.forEach(items=>{
            this.idss.push(items.id)
          })
        }
      });
    },
    handleSelectionChanges(val) {
      // this.deptAdviceList1 = val;
      if (val.length > 1) {
        let del_row = val.shift();
        this.$refs.multipleTable.toggleRowSelection(del_row, false);
        val.forEach((item) => {
          this.deptAdviceList2.push(item);
        });
      } else if ((val.length = 1)) {
        val.forEach((item) => {
          this.deptAdviceList2.push(item);
          this.deptAdviceList3.forEach((items) => {
            this.idss.push(items.id);
            this.remakes += items.advice + ",";
        });
      }
      this.deptAdviceList1 = [
        ...new Set(this.deptAdviceList2.concat(this.deptAdviceList3)),
      ];
    },
    queding() {
      if (this.proParentList.xiaoJie.length != 0) {
        // this.proParentList.remark = "";
        console.log(this.deptAdviceList,111);
        this.deptAdviceList.forEach((item) => {
          this.ids = item.id;
          console.log(this.deptAdviceList1,222);
          this.deptAdviceList1.forEach((item1) => {
            if (
              item1.id === item.id &&
              !this.proParentList.remark.includes(item.title)
            ) {
              if (this.proParentList.remark) {
                this.proParentList.remark += item.title + ",";
                this.value += item.title + ",";
                this.vaids.push(item1.id);
                this.vaids1 = this.vaids.concat(this.idss)
              } else {
                this.proParentList.remark = item.title + ",";
                this.value += item.title + ",";
                this.vaids.push(item1.id);
                this.vaids1 = this.vaids.concat(this.idss)
              }
            }
          });
        });
        this.taocan = false;
      } else {
        this.proParentList.remark = "";
        this.deptAdviceList.forEach((item) => {
          this.ids = item.id;
          this.deptAdviceList1.forEach((item1) => {
            if (
              item1.id === item.id &&
              !this.proParentList.remark.includes(item.title)
            ) {
              if (this.proParentList.remark) {
                this.proParentList.remark += item.title + ",";
                this.value += item.title + ",";
                console.log(item);
                this.vaids.push(item1.id);
                this.vaids1 = this.vaids.concat(this.idss)
              } else {
                this.proParentList.remark = item.title + ",";
                this.value += item.title + ",";
                this.vaids.push(item1.id);
                this.vaids1 = this.vaids.concat(this.idss)
              }
            }
          });
        });
        this.taocan = false;
      }
    },
    /** 删除按钮操作 */
    handleDelete(row) {
@@ -1598,6 +1538,113 @@
          this.deptAdviceList1.splice(index, 1);
        }
      });
    },
    handleSelectionChanges(selection) {
      this.deptAdviceList2 = this.deptAdviceList1;
      if (selection.length > 1) {
        const del_row = selection.shift();
        this.$refs.multipleTable.toggleRowSelection(del_row, false);
      }
      console.log(selection);
      // this.selectArr = selection;
      selection.forEach((item) => {
        this.deptAdviceList2.push(item);
      });
      this.deptAdviceList1 = [
        ...new Set(this.deptAdviceList2.concat(this.deptAdviceList3)),
      ];
    },
    queding() {
      if (this.proParentList.xiaoJie.length != 0) {
        // this.proParentList.remark = "";
        this.remakes = "";
        this.titles = "";
        // this.deptAdviceList.forEach((item) => {
        // this.ids = item.id;
        this.deptAdviceList1.forEach((item1) => {
          // if (
          //   item1.id === item.id &&
          //   !this.proParentList.remark.includes(item.title)
          // ) {
          if (this.proParentList.remark != null) {
            console.log(this.proParentList.remark);
            this.titles += item1.title + ",";
            this.remakes += item1.advice + ",";
            this.proParentList.remark =
              this.proParentList.remark + this.remakes;
            this.value += item1.title + ",";
            this.vaids.push(item1.id);
            this.vaids1 = this.vaids.concat(this.idss);
          } else {
            this.titles += item1.title + ",";
            this.proParentList.remark = item1.advice + ",";
            this.value += item1.title + ",";
            this.vaids.push(item1.id);
            this.vaids1 = this.vaids.concat(this.idss);
          }
          // }
        });
        // });
        this.taocan = false;
      } else {
        // this.proParentList.remark = "";
        this.titles = "";
        this.remakes = "";
        console.log(this.deptAdviceList1, 888888888888888888888888888);
        // this.deptAdviceList.forEach((item) => {
        // this.ids = item.id;
        this.deptAdviceList1.forEach((item) => {
          this.titles += item.title + ",";
          this.remakes += item.advice + ",";
          this.vaids.push(item.id);
          this.vaids1 = this.vaids.concat(this.idss);
        });
        if (this.proParentList.remark != null) {
          console.log(this.remakes);
          this.proParentList.remark = "";
          console.log(this.proParentList.remark);
          let data = {
            tjNumber: this.tjNumber,
            proParentId: this.nums,
          };
          getParentId(data).then((response) => {
            this.proParentList = response.data;
            this.proParentList.remark = this.remakes+ this.proParentList.remark;
          });
        } else {
          this.proParentList.remark = this.remakes;
        }
        // this.deptAdviceList1.forEach((item1) => {
        //   // if (item1.id === item.id) {
        //   if (this.proParentList.remark != null) {
        //     console.log(this.proParentList.remark,10101010);
        //     console.log(66666666666);
        //     this.titles += item1.title + ",";
        //     // this.proParentList.remark += item1.advice + ",";
        //     this.remakes += item1.advice + ",";
        //     this.proParentList.remark = this.remakes + this.proParentList.remark;
        //     // this.proParentList.remark ;
        //     // this.value += item1.title + ",";
        //     this.vaids.push(item1.id);
        //     this.vaids1 = this.vaids.concat(this.idss);
        //     return
        //   } else {
        //     console.log(77777777777);
        //     this.titles += item1.title + ",";
        //     this.proParentList.remark = item1.advice + ",";
        //     // this.value += item1.title + ",";
        //     this.vaids.push(item1.id);
        //     this.vaids1 = this.vaids.concat(this.idss);
        //   }
        //   // }
        // });
        // });
        this.taocan = false;
      }
    },
    /** 查询用户列表 */
    getListUser() {
@@ -2231,7 +2278,13 @@
        proParentId: this.nums,
      };
      getParentId(data).then((response) => {
        if (response.data != {}) {
        this.proParentList = response.data;
          this.proParentList.xiaoJie.forEach((item) => {
            this.titles += item.title + ",";
            // this.advice += item.advice + ",";
          });
        }
        this.loading = false;
        this.value = [];
@@ -2811,7 +2864,6 @@
.tab4 {
  margin-top: 6px;
  width: 30%;
}
.tab4_txt{
  display: flex;