123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <template>
- <div class="plate-box">
- <h2 class="DetailsTit">
- <span>{{ title }}</span>
- </h2>
- <div class="plate ">
- <ul>
- <li>
- <label>透后宣教 : </label>
- <span class="content">{{ mission }}</span>
- </li>
- </ul>
- <ul>
- <li>
- <label>透析小结 : </label>
- <span class="content">{{ dialysis_summary }}</span>
- </li>
- </ul>
- </div>
- <div class="plate ">
- <ul>
- <li>
- <label>透析护理记录 : </label>
- <span class="content">{{ nursing_record }}</span>
- </li>
- </ul>
- <ul>
- <li>
- <label>特殊记录 : </label>
- <span class="content">{{ special_record }}</span>
- </li>
- </ul>
- </div>
- <div class="middleLine"></div>
- </div>
- </template>
-
- <script>
- export default {
- name: "DialysisPrescription",
- data() {
- return {
- title: "治疗小结"
- };
- },
- props: {
- record: {
- type: Object
- }
- },
- computed: {
- mission: function() {
- if (this.record.id == 0) {
- return "";
- }
- return this.record.mission;
- },
- dialysis_summary: function() {
- if (this.record.id == 0) {
- return "";
- }
- return this.record.dialysis_summary;
- },
- nursing_record: function() {
- if (this.record.id == 0) {
- return "";
- }
-
- return this.record.nursing_record;
- },
- special_record: function() {
- if (this.record.id == 0) {
- return "";
- }
-
- return this.record.special_record;
- }
- },
- methods: {}
- };
- </script>
-
- <style rel="stylesheet/scss" lang="scss" scoped></style>
|