123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212 |
- <template>
- <div v-if="visibility" class="Dialog">
- <div class="DialogTit">
- <div class="back" @click="cancle()">
- <span class="iconfont"> </span>返回
- </div>
- <h1 class="name">{{patient_prop.name}} [透析号 {{patient_prop.dialysis_no}} ]</h1>
- <span @click="comfirm" class="success" >确定</span
- >
- </div>
-
- <div class="DialogContent">
- <div class="item">
- <label class="name" for="txms">本次透析日期</label>
- <div class="content">
- <span class="text" id="txms"> {{dialysis_date}}</span>
-
- </div>
- </div>
- <div class="item">
- <label class="name" for="txms">透前体重(kg)</label>
- <div class="content">
- <span class="text" id="txms">{{predialysis.weight_before}}</span>
-
- </div>
- </div>
- <div class="item">
- <label class="name" for="txms">干体重(kg)</label>
- <div class="content">
- <span class="text" id="txms">{{predialysis.dry_weight}}</span>
-
- </div>
- </div>
- <div class="item">
- <label class="name" for="txms">衣物重(kg)</label>
- <div class="content">
- <span class="text" id="txms">{{predialysis.additional_weight}}</span>
-
- </div>
- </div>
- <div class="item">
- <label class="name" for="txms">体重增加(kg)</label>
- <div class="content">
- <span class="text" id="txms">{{prescription_prop.dewater_amount}}</span>
-
- </div>
- </div>
- <div class="item">
- <label class="name" for="txms">透后体重(kg)</label>
- <div class="content">
- <span class="text" id="txms">{{record.weight_after}}</span>
-
- </div>
- </div>
- <div class="item">
- <label class="name" for="txms">体重减少(kg)</label>
- <div class="content">
- <span class="text" id="txms">{{record.weight_loss}}</span>
-
- </div>
- </div>
- <div class="item">
- <label class="name" for="txms">上次透后体重(kg)</label>
- <div class="content">
- <span class="text" id="txms">{{predialysis.weight_after_last_transparency}}</span>
-
- </div>
- </div>
- </div>
- </div>
- </template>
-
- <script>
- import {parseTime} from '@/utils'
-
- export default {
- name: 'LongAdviceSubMenu',
- created () {
- },
- data () {
- return {
- result: [],
- id: 0,
- selectName: ''
- }
- },
- props: {
- predialysis: {
- type: Object
- },
- visibility: {
- type: Boolean,
- default: false
- },
- last_predialysis: {
- type: Object
- },
- record: {
- type: Object
- },
- last_record: {
- type: Object
- },
- patient_prop: {
- type: Object
- },
- prescription_prop: {
- type: Object
- },
- },
- computed: {
- dialysis_date: function () {
- return parseTime(this.$route.query.date, '{y}/{m}/{d}')
- }
- },
- methods: {
-
-
- cancle: function () {
- this.$emit('menu-msg-tip')
- },
- comfirm: function () {
- this.$emit('menu-msg-tip')
- },
- getValue: function () {
- let form = {}
-
- let results = []
-
- for (let i = 0; i < this.propsForm.list.length; i++){
- for (let a = 0; a < this.propsForm.result.length; a++){
- if( this.propsForm.list[i].id == this.propsForm.result[a]){
- results.push(this.propsForm.list[i])
- }
- }
- }
-
- var obj5={}
- results = results.reduce((cur, next) => {
- obj5[next.id] ? '' : obj5[next.id] = true && cur.push(next)
- return cur
- }, [])
-
- results
-
- return results
- },
-
- },
- watch: {
- visibility (val) {
- //初始化数据操作
- }
- }
- }
- </script>
-
- <style style="stylesheet/scss" lang="scss" scoped>
- .optionsBox {
- background: #fff;
- max-height: 10rem;
- min-height: 5rem;
- @media only screen and (max-width: 812px) {
- min-height: 8rem !important;
- }
- ul {
- overflow-y: scroll;
- max-height: 9rem;
- li {
- height: 1.1rem;
- line-height: 1.1rem;
- border-bottom: 1px #e5e5e5 solid;
- padding: 0 0.38rem;
- font-size: 0.36rem;
- color: $title-color;
- }
- .tick {
- position: relative;
- &::before {
- content: "";
- display: inline-block;
- border: 2px solid $main-color;
- border-top-width: 0;
- border-right-width: 0;
- width: 0.3rem;
- height: 0.15rem;
- -webkit-transform: rotate(-50deg);
- position: absolute;
- top: 0.38rem;
- right: 0.44rem;
- }
- }
- }
- }
- .CheckBox {
- background: #fff;
- max-height: 6.8rem;
- min-height: 5rem;
- overflow-y: scroll;
- @media only screen and (max-width: 812px) {
- max-height: 8rem !important;
- min-height: 8rem !important;
- }
-
- ul {
- li {
- line-height: 1rem;
- }
- }
- }
- </style>
|