123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264 |
- <template>
- <el-dialog :close-on-click-modal="false"
- :visible.sync="addressView"
- append-to-body
- class="modal"
- title="选择城市" width="950px">
- <el-row :gutter="24" type="flex">
- <el-col :xl="24" :lg="24" :md="24" :sm="24" :xs="24" class="item">
- <div class="check-btn">
- <el-checkbox v-model="iSselect" @change="allCheckbox">全选</el-checkbox>
- <div class="empty" @click="empty">清空</div>
- </div>
- </el-col>
- </el-row>
- <el-row :gutter="24" :loading="loading" >
- <el-col :xl="6" :lg="6" :md="6" :sm="8" :xs="6" class="item" v-for="(item,index) in cityList" :key="index">
- <div @mouseenter="enter(index)" @mouseleave="leave()" v-if="item.level==1">
- <el-checkbox v-model="item.checked" :label="item.cityName" @change="checkedClick(index)">{{item.cityName}}</el-checkbox>
- <div class="city" v-show="activeCity===index">
- <div class="checkBox">
- <div class="arrow"></div>
- <div>
- <el-checkbox v-model="subitem.checked" :label="subitem.cityName" @change="primary(index,subindex)"
- class="itemn" v-for="(subitem,subindex) in item.children" :key="subindex"
- >{{subitem.cityName}}</el-checkbox>
- </div>
- </div>
- </div>
- </div>
- </el-col>
- </el-row>
- <div slot="footer">
- <el-button @click="close">取消</el-button>
- <el-button type="primary" @click="confirm">确定</el-button>
- </div>
- </el-dialog>
- </template>
- <script>
- import {getAllList} from "@/api/hisStore/city";
- export default {
- name: 'city',
- props: {
- type: {
- type: Number,
- default: 0
- }
- },
- data () {
- return {
- iSselect: false,
- addressView: false,
- cityList: [],
- activeCity: -1,
- loading: false
- }
- },
- methods: {
- enter (index) {
- this.activeCity = index;
- },
- leave () {
- this.activeCity = null;
- },
- getCityList () {
- this.loading = true;
- getAllList().then(res => {
- this.loading = false;
- console.log(res.data)
- var data=res.data;
- this.cityList=data.filter(item => item.level===1 )
- this.cityList.forEach(function(item,index,arr){
- var subData=data.filter(subitem => subitem.parentId===item.cityId )
- console.log(subData)
- item.children=subData;
- });
- })
- },
- /**
- * 全选或者反选
- * @param checked
- */
- allCheckbox: function () {
- let that = this, checked = this.iSselect;
- that.cityList.forEach(function (item, key) {
- that.$set(that.cityList[key], 'checked', checked);
- if (checked) {
- that.$set(that.cityList[key], 'count', that.cityList[key].children.length);
- } else {
- that.$set(that.cityList[key], 'count', 0);
- }
- that.cityList[key].children.forEach(function (val, k) {
- that.$set(that.cityList[key].children[k], 'checked', checked);
- })
- });
- },
- // 清空;
- empty () {
- let that = this;
- that.cityList.forEach(function (item, key) {
- that.$set(that.cityList[key], 'checked', false);
- that.cityList[key].children.forEach(function (val, k) {
- that.$set(that.cityList[key].children[k], 'checked', false);
- });
- that.$set(that.cityList[key], 'count', 0);
- });
- this.iSselect = false;
- },
- /**
- * 点击省
- * @param index
- */
- checkedClick: function (index) {
- let that = this;
- if (that.cityList[index].checked) {
- that.$set(that.cityList[index], 'count', that.cityList[index].children.length);
- that.cityList[index].children.forEach(function (item, key) {
- that.$set(that.cityList[index].children[key], 'checked', true);
- });
- } else {
- that.$set(that.cityList[index], 'count', 0);
- that.$set(that.cityList[index], 'checked', false);
- that.cityList[index].children.forEach(function (item, key) {
- that.$set(that.cityList[index].children[key], 'checked', false);
- });
- that.iSselect = false;
- }
- },
- /**
- * 点击市区
- * @param index
- * @param ind
- */
- primary: function (index, ind) {
- let checked = false, count = 0;
- this.cityList[index].children.forEach(function (item, key) {
- console.log("item:"+item.checked)
- if (item.checked) {
- checked = true;
- count++;
- }
- });
- this.$set(this.cityList[index], 'count', count);
- this.$set(this.cityList[index], 'checked', checked);
- },
- // 确定;
- confirm () {
- let that = this;
- // 被选中的省市;
- let selectList = [];
- that.cityList.forEach(function (item, key) {
- let data = {};
- if (item.checked) {
- data = {
- name: item.cityName,
- cityId: item.cityId,
- children: []
- };
- }
- that.cityList[key].children.forEach(function (i, k) {
- if (i.checked) {
- data.children.push({
- cityId: i.cityId
- })
- }
- });
- if (data.cityId !== undefined) {
- selectList.push(data);
- }
- });
- console.log(selectList);
- if (selectList.length === 0) {
- return this.$message({
- message:'至少选择一个省份或者城市',
- type: 'error'
- });
- } else {
- this.$emit('selectCity', selectList, this.type);
- that.addressView = false;
- this.cityList = []
- }
- },
- close () {
- this.addressView = false;
- this.cityList = []
- }
- },
- mounted () {
- }
- }
- </script>
- <style scoped>
- .modal .item {
- position: relative;
- margin-bottom: 20px;
- }
- .modal .item .city {
- position: absolute;
- z-index: 9;
- top: 17px;
- width: 100%;
- padding-top: 18px;
- }
- .modal .item .city .checkBox {
- width: 97%;
- padding: 10px;
- border: 1px solid #eee;
- background-color: #fff;
- max-height: 100px;
- overflow-x: hidden;
- overflow-y: auto;
- }
- .modal .item .city .checkBox .arrow {
- position: absolute;
- top: 3px;
- width: 0;
- height: 0;
- border: 8px solid transparent;
- border-bottom-color: #ddd;
- }
- .modal .item .city .checkBox .arrow:before {
- position: absolute;
- bottom: -8px;
- right: -7px;
- content: "";
- width: 0;
- height: 0;
- border: 7px solid transparent;
- border-bottom-color: #fff;
- }
- .modal .item .city .checkBox .itemn {
- margin-bottom: 10px;
- }
- .radio {
- padding: 5px 0;
- font-size: 14px !important;
- }
- .red {
- color: #ff0000;
- }
- .empty {
- cursor: pointer;
- margin-left:10px
- }
- .check-btn{
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: flex-end;
- }
- </style>
|