Browse Source

合并修改(套餐选择项层级太高,导致下一步会选择套餐)

master
lzp 1 day ago
parent
commit
a8361a9c23
  1. 18
      web_client/src/views/Patient/chooseSetMeal/index.vue

18
web_client/src/views/Patient/chooseSetMeal/index.vue

@ -102,11 +102,10 @@
class="checkbox-group2-item" class="checkbox-group2-item"
> >
<el-checkbox :label="item2.scaleCode" border> <el-checkbox :label="item2.scaleCode" border>
<h2 <h3
@click.stop=" @click="handleCheckAll1(item1, item2, false)"
handleCheckAll1(item1, item2, false) ></h3>
" <h2>
>
{{ item2.scaleName }}{{ {{ item2.scaleName }}{{
item2.questionNum || 0 item2.questionNum || 0
}} }}
@ -427,7 +426,7 @@ export default {
if (row1.scaleList) { if (row1.scaleList) {
// console.log(row1.scaleList); // console.log(row1.scaleList);
let scaleCodeList = row1.scaleList.map( let scaleCodeList = row1.scaleList.map(
(item) => item.scaleCode (item) => item.scaleCode,
); );
this.checkboxGroup2 = [ this.checkboxGroup2 = [
...this.checkboxGroup2, ...this.checkboxGroup2,
@ -525,6 +524,8 @@ export default {
evaluationId: this.createId, evaluationId: this.createId,
scaleList, scaleList,
}; };
console.log("param", param);
let res = await bindScale(param); let res = await bindScale(param);
const { code, msg, data } = res; const { code, msg, data } = res;
if (code === 200) { if (code === 200) {
@ -947,7 +948,7 @@ export default {
right: 0; right: 0;
margin: 0 auto; margin: 0 auto;
bottom: 20px; bottom: 20px;
z-index: 9999; z-index: 66;
} }
.divul { .divul {
display: flex; display: flex;
@ -1047,6 +1048,7 @@ export default {
border: 2px solid #5cc0be; border: 2px solid #5cc0be;
margin: 5px; margin: 5px;
height: 58px; height: 58px;
position: relative;
} }
.checkbox-group2 h2 { .checkbox-group2 h2 {
font-size: 22px; font-size: 22px;
@ -1060,7 +1062,7 @@ export default {
left: 0px; left: 0px;
right: 0px; right: 0px;
height: 58px; height: 58px;
z-index: 8888; z-index: 9999;
} }
.div-scale-box { .div-scale-box {
// border-top: 1px solid #e1e9f1; // border-top: 1px solid #e1e9f1;

Loading…
Cancel
Save