1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <template>
- <div class="plate-box">
-
- <h2 class="title"><span class="line"></span><p>{{title}}</p><span class="line"></span> </h2>
- <div class="plate " >
- <ul>
- <li>
- <label>透后宣教 : </label>
- <span class="content">{{mission}}</span>
- </li>
- <li>
- <label>透析小结 : </label>
- <span class="content">{{dialysis_summary}}</span>
- </li>
- </ul>
- </div>
- {{doctor}}
-
- </div>
- </template>
-
- <script>
- export default {
- name: 'DialysisPrescription',
- data () {
- return {
- title: '治疗小结 ',
- doctor: '刘小花 护士'
-
-
-
-
- }
- },
- props: {
- record: {
- type: Object
- }
- },
- computed: {
- mission: function () {
- if (this.record == null || this.record.id == '') {
- return ''
- }
- return this.record.mission
- },
- dialysis_summary: function () {
- if (this.record == null || this.record.id == '') {
- return ''
- }
- return this.record.dialysis_summary
- }
- },
- methods: {
-
-
-
-
- }
- }
- </script>
-
- <style rel="stylesheet/scss" lang="scss" scoped>
- </style>
|