血透系统pad前端

newCheckBoxSubMenu.vue 2.7KB

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