|
@@ -1,5 +1,5 @@
|
|
|
<template>
|
|
|
- <div class="symp-wrap symper">
|
|
|
+ <div class="symp-wrap symper btscroll">
|
|
|
<div class="content">
|
|
|
<div
|
|
|
class="choose"
|
|
@@ -81,6 +81,7 @@ import Tiptoast from '../common/Tiptoast.vue';
|
|
|
import Search from './Search.vue';
|
|
|
import {moduleCP,setScroll,trimDots} from '@utils/tools'
|
|
|
import BScroll from 'better-scroll';
|
|
|
+import $ from 'jquery';
|
|
|
export default {
|
|
|
name: 'Symptom',
|
|
|
props:['modluesLen','nameStr'],
|
|
@@ -264,8 +265,11 @@ export default {
|
|
|
this.delText = "是否删除该信息?<br/>删除后将重新填写预问诊流程 <br/>(已填内容将清除)"
|
|
|
}
|
|
|
this.showToast = true;
|
|
|
+ $(".btscroll").css({'position':'fixed'})
|
|
|
+ $(".foot").css({'position':'fixed'})
|
|
|
},
|
|
|
comfirnDel() {
|
|
|
+ $(".btscroll").css({'position':'absolute'})
|
|
|
this.chooseSymp.splice(this.delIndex, 1);
|
|
|
this.checkText.splice(this.delIndex, 1);
|
|
|
this.$store.commit('delText', { type: moduleCP['symp'], pId: this.questId })
|
|
@@ -285,6 +289,7 @@ export default {
|
|
|
this.cancelDel();
|
|
|
},
|
|
|
cancelDel() {
|
|
|
+ $(".btscroll").css({'position':'absolute'})
|
|
|
this.showToast = false;
|
|
|
this.delIndex = null;
|
|
|
this.questId = null;
|
|
@@ -327,7 +332,7 @@ export default {
|
|
|
|
|
|
.symp-wrap {
|
|
|
font-size: 0.3rem;
|
|
|
- .btscroll;
|
|
|
+ // .btscroll;
|
|
|
.quest {
|
|
|
color: #000;
|
|
|
margin-bottom: 0.36rem;
|