qinxianzhangyao
2024-03-08 2d1cc07e5be9d226d23dc172031a3971ea43528f
src/views/doctor/examination/index.vue
@@ -9,11 +9,12 @@
    >
      <el-form-item label="体检号" prop="tjNumber">
        <el-input
        ref="inputName"
          ref="inputName"
          v-model="queryParams.tjNumber"
          placeholder="请输入体检号"
          clearable
          @keyup.enter.native="handleQuery"
          @keyup.enter.native="handleQuery"
          @blur="hb"
          style="width: 170px"
        />
      </el-form-item>
@@ -95,16 +96,16 @@
            prop="cusSex"
            width="50px"
          >
          <template slot-scope="scope">
            <span v-if="scope.row.cusSex == '0'">男</span>
            <span v-if="scope.row.cusSex == '1'">女</span>
            <span v-if="scope.row.cusSex == '2'">未知</span>
            <span v-if="scope.row.cusSex == '9'">未说明性别</span>
          </template>
            <template slot-scope="scope">
              <span v-if="scope.row.cusSex == '0'">男</span>
              <span v-if="scope.row.cusSex == '1'">女</span>
              <span v-if="scope.row.cusSex == '2'">未知</span>
              <span v-if="scope.row.cusSex == '9'">未说明性别</span>
            </template>
            <!-- <template slot-scope="scope"> -->
              <!-- {{scope.row.customer.cusSex}} -->
              <!-- {{ scope.row.cusSex === 0 ? "男" : "女" }} -->
              <!-- <dict-tag :options="dict.type.sys_user_sex" :value="scope.row.cusSex " /> -->
            <!-- {{scope.row.customer.cusSex}} -->
            <!-- {{ scope.row.cusSex === 0 ? "男" : "女" }} -->
            <!-- <dict-tag :options="dict.type.sys_user_sex" :value="scope.row.cusSex " /> -->
            <!-- </template> -->
          </el-table-column>
          <el-table-column
@@ -145,19 +146,19 @@
              >
            </template>
          </el-table-column>
          <!--   v-hasPermi="['reservation:reservation:edit']" -->
          <el-table-column label="操作" align="center" width="120px">
            <template slot-scope="scope">
              <el-button
                size="mini"
                type="text"
                v-hasPermi="['reservation:reservation:edit']"
                type="text"
                @click="tongbu(scope.row)"
                >同步</el-button
              >
              <el-button
                :disabled="dis"
                size="mini"
                type="text"
                v-hasPermi="['reservation:reservation:edit']"
                v-show="
                  scope.row.confirmStatus == '299' ||
                  scope.row.confirmStatus == 288
@@ -168,7 +169,6 @@
              <el-button
                size="mini"
                type="text"
                v-hasPermi="['reservation:reservation:edit']"
                v-show="
                  scope.row.confirmStatus == '301' ||
                  scope.row.confirmStatus == 288
@@ -176,7 +176,6 @@
                @click="bohui(scope.row)"
                >驳回</el-button
              >
            </template>
          </el-table-column>
        </el-table>
@@ -280,11 +279,20 @@
</template>
<script>
import { getCsList, confirmOrder, cSWebGetPro,dataSynchronization } from "@/api/doctor/examination";
import {
  getCsList,
  confirmOrder,
  cSWebGetPro,
  dataSynchronization,
} from "@/api/doctor/examination";
import { getNewDateList } from "@/api/hosp/order";
import moment from "moment";
export default {
  dicts: ["dict_tj_status"],
  data() {
    return {
      dis: false,
      createTimeList: "",
      total: 0,
      loading: true,
@@ -346,6 +354,7 @@
  },
  created() {
    this.getList();
    this.getdate();
    // this.getNowTime();
  },
  mounted() {
@@ -354,6 +363,14 @@
    });
  },
  methods: {
    getdate() {
      getNewDateList().then((res) => {
        this.createTimeList = [
          moment(res.data).format("YYYY-MM-DD 00:00:00"),
          moment(res.data).format("YYYY-MM-DD 23:59:00"),
        ];
      });
    },
    // / 处理默认选中当前日期
    getNowTime() {
      var curDate = new Date().getTime();
@@ -435,6 +452,13 @@
        }
      });
    },
    hb() {
      console.log(this.queryParams.tjNumber);
      if (this.queryParams.tjNumber != null) {
        this.handleQuery();
      }
    },
    /** 搜索按钮操作 */
    handleQuery() {
      this.queryParams.page = 1;
@@ -462,6 +486,14 @@
        let tjNumber = this.tjnum;
        cSWebGetPro(tjNumber).then((res) => {
          this.xiangmuList = res.data;
          this.xiangmuList.forEach((item) => {
            console.log(item);
            if (item.type == 0) {
              this.dis = true;
            } else {
              this.dis = false;
            }
          });
        });
      });
    },
@@ -488,6 +520,7 @@
          if (res.code == 200) {
            // this.$forceUpdate();
            this.getList();
            this.xiangmuList = []
            this.$modal.msgSuccess("提交成功!");
          }
        });
@@ -497,12 +530,11 @@
      let tjNumber = row.tjNumber;
      dataSynchronization(tjNumber).then((res) => {
        if (res.code == 200) {
            // this.$forceUpdate();
            this.getList();
            this.$modal.msgSuccess("同步成功!");
          }
        });
          // this.$forceUpdate();
          this.getList();
          this.$modal.msgSuccess("同步成功!");
        }
      });
    },
    // 驳回按钮
    bohui(row) {