血透系统pad前端

newCheckBoxSubMenu.vue 3.0KB

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