1
lkk
7 分钟以前 4936c229b0eeea0305e15d019c801bd88b8d074e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<template>
  <div>
    <el-drawer
      title="历史体检记录"
      :visible.sync="table"
      direction="rtl"
      size="50%"
    >
      <el-table :data="HistoryList" style="width: 95%; margin-left: 20px" border>
        <el-table-column
          property="tjNum"
          label="体检号"
          align="center"
          :show-overflow-tooltip="true"
        ></el-table-column>
        <el-table-column
          property="userName"
          label="姓名"
          align="center"
          :show-overflow-tooltip="true"
        ></el-table-column>
        <el-table-column
          property="tjTime"
          label="体检时间"
          align="center"
          :show-overflow-tooltip="true"
        ></el-table-column>
        <el-table-column
          property="tjProName"
          label="体检项目"
          align="center"
          :show-overflow-tooltip="true"
        ></el-table-column>
      </el-table>
    </el-drawer>
   
  </div>
</template>
 
<script>
import {
  getHistryTjOrderByCusIdCard,
} from "@/api/system/tijian";
export default {
  name: "historyTj",
  props: {
    cusIdCard: {
      default: false,
      type: String,
    },
  },
  data() {
    return {
      proIdList: [],
      tableDatas: [],
      dialogVisiblese: false,
      lishi: false,
      table: false,
      HistoryList: {},
      cusIdCards:"",
    };
  },
  //   created() {
  //     this.getlist();
  //   },
  watch: {
    cusIdCard(val, newVla) {
      console.log(val, newVla);
      if (val) {
        this.cusIdCards = val;
      }
    },
  },
  methods: {
    getlist() {
      let cusIdCard = this.cusIdCards;
      getHistryTjOrderByCusIdCard(cusIdCard).then((res) => {
        if (res.code == 200) {
          this.table = true;
          this.lishi = true;
          this.HistoryList = res.data;
        }
      });
    },
  },
};
</script>
 
<style lang="scss" scoped>
</style>