血透系统pad前端

checkBoxSubMenu.vue 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. <template>
  2. <div v-if="visibility" class="Dialog">
  3. <div class="DialogTit">
  4. <div class="back" @click="cancle()"><span class="iconfont" >&#xe720; </span>返回</div>
  5. <h1 class="name">{{propsForm.title}}</h1>
  6. <span v-if="propsForm.isMultiple == 1" @click="comfirm" class="success"> </span>
  7. <span v-if="propsForm.isMultiple == 2" @click="comfirm" class="success">确定</span>
  8. </div>
  9. <div v-if="propsForm.isMultiple == 1" class="optionsBox">
  10. <div class="list">
  11. <ul>
  12. <li @click="itemClick(item.id)" v-for="item in propsForm.optionList" :key="item.id" value="item" :class="propsForm.selectId == item.id? 'tick':'' ">{{item.name}}</li>
  13. <li v-if="propsForm.isHasOther == 1" @click="itemClick(-1)" :key="-1" value="-1" :class="propsForm.selectId == -1? 'tick':'' ">其他</li>
  14. </ul>
  15. </div>
  16. </div>
  17. <div v-if="propsForm.isMultiple == 2" class="CheckBox">
  18. <ul>
  19. <li>
  20. <van-checkbox-group v-model="propsForm.result" >
  21. <van-checkbox
  22. style="border-bottom: 1px #e5e5e5 solid;padding: 0 0.38rem"
  23. v-for="(item, index) in propsForm.list"
  24. :key="index"
  25. :name="item.name"
  26. >
  27. {{ item.name }}
  28. </van-checkbox>
  29. </van-checkbox-group>
  30. </li>
  31. </ul>
  32. </div>
  33. </div>
  34. </template>
  35. <script>
  36. export default {
  37. name: "checkBoxSubMenu",
  38. created() {},
  39. data() {
  40. return {
  41. result: [],
  42. id: 0,
  43. selectName: ""
  44. };
  45. },
  46. props: {
  47. propsForm: {
  48. type: Object
  49. },
  50. visibility: {
  51. type: Boolean,
  52. default: false
  53. }
  54. },
  55. methods: {
  56. cancle: function() {
  57. this.$emit("menu-cancle");
  58. },
  59. comfirm: function() {
  60. this.$emit("menu-comfirm", this.getValue());
  61. },
  62. getValue: function() {
  63. let form = {};
  64. if (this.propsForm.isMultiple == 2) {
  65. form["type"] = this.propsForm.type;
  66. form["result"] = this.propsForm.result;
  67. // form["click_ref"] = this.propsForm.click_ref
  68. } else {
  69. form["type"] = this.propsForm.type;
  70. form["selectId"] = this.propsForm.selectId;
  71. // form["click_ref"] = this.propsForm.click_ref
  72. }
  73. return form;
  74. },
  75. itemClick: function(id) {
  76. this.propsForm.selectId = id;
  77. this.$emit("menu-comfirm", this.getValue());
  78. }
  79. },
  80. watch: {
  81. visibility(val) {
  82. //初始化数据操作
  83. }
  84. }
  85. };
  86. </script>
  87. <style style="stylesheet/scss" lang="scss" scoped>
  88. .optionsBox {
  89. background: #fff;
  90. max-height: 10.6rem;
  91. min-height: 5rem;
  92. overflow-y: scroll;
  93. ul {
  94. li {
  95. height: 1.1rem;
  96. line-height: 1.1rem;
  97. border-bottom: 1px #e5e5e5 solid;
  98. padding: 0 0.38rem;
  99. font-size: 0.36rem;
  100. color:$title-color;
  101. }
  102. .tick {
  103. position: relative;
  104. &::before {
  105. content: "";
  106. display: inline-block;
  107. border: 2px solid $main-color;
  108. border-top-width: 0;
  109. border-right-width: 0;
  110. width: 0.3rem;
  111. height: 0.15rem;
  112. -webkit-transform: rotate(-50deg);
  113. position: absolute;
  114. top: 0.38rem;
  115. right: 0.44rem;
  116. }
  117. }
  118. }
  119. }
  120. .CheckBox {
  121. background: #fff;
  122. max-height: 6.8rem;
  123. min-height: 5rem;
  124. overflow-y: scroll;
  125. ul {
  126. li {
  127. line-height: 1rem;
  128. }
  129. }
  130. }
  131. </style>