123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- <template>
- <div v-if="show" class="Dialog">
- <div class="DialogTit">
- <div class="back" @click="cancle()">
- <span class="iconfont"> </span>返回
- </div>
- <h1 class="name">{{ propsForm.title }}</h1>
- <span @click="comfirm" class="success"> </span>
- </div>
- <div class="optionsBox">
- <div class="list">
- <ul>
- <li @click="itemClick(-2)" :key="-2" value="-2">请选择</li>
- <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>
- </ul>
- </div>
- </div>
- </div>
- </template>
-
- <script>
- export default {
- name: "newCheckBoxSubMenu",
- created() {},
- data() {
- return {
- result: [],
- id: 0,
- selectName: ""
- };
- },
- props: {
- propsForm: {
- type: Object
- },
- show: {
- type: Boolean,
- default: false
- }
- },
- methods: {
- cancle: function() {
- this.$emit("menu-cancle");
- },
- comfirm: function() {
- this.$emit("menu-comfirm", this.getValue());
- },
- getValue: function() {
- let form = {};
- if (this.propsForm.isMultiple == 2) {
- form["type"] = this.propsForm.type;
- form["result"] = this.propsForm.result;
- // form["click_ref"] = this.propsForm.click_ref
- } else {
- form["type"] = this.propsForm.type;
- form["selectId"] = this.propsForm.selectId;
- // form["click_ref"] = this.propsForm.click_ref
- }
- return form;
- },
- itemClick: function(id) {
- if (id == -2) {
- this.$emit("menu-empty", this.getValue());
- }
- this.propsForm.selectId = id;
- this.$emit("menu-comfirm", this.getValue());
- }
- },
- watch: {
- visibility(val) {
- // 初始化数据操作
- }
- }
- };
- </script>
-
- <style style="stylesheet/scss" lang="scss" scoped>
- .optionsBox {
- background: #fff;
- max-height: 9.6rem;
- min-height: 5rem;
- overflow-y: scroll;
- @media only screen and (max-width: 812px) {
- min-height: 8rem !important;
- }
- ul {
- li {
- height: 1.1rem;
- line-height: 1.1rem;
- border-bottom: 1px #e5e5e5 solid;
- padding: 0 0.38rem;
- font-size: 0.36rem;
- color: $title-color;
- }
- .tick {
- position: relative;
- &::before {
- content: "";
- display: inline-block;
- border: 2px solid $main-color;
- border-top-width: 0;
- border-right-width: 0;
- width: 0.3rem;
- height: 0.15rem;
- -webkit-transform: rotate(-50deg);
- position: absolute;
- top: 0.38rem;
- right: 0.44rem;
- }
- }
- }
- }
- .CheckBox {
- background: #fff;
- max-height: 6.8rem;
- min-height: 5rem;
- overflow-y: scroll;
- @media only screen and (max-width: 812px) {
- max-height: 8rem !important;
- min-height: 8rem !important;
- }
- ul {
- li {
- line-height: 1rem;
- }
- }
- }
- </style>
|