91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Vue2仿淘寶實現省市區三級聯動的方法

發布時間:2020-08-03 13:45:06 來源:億速云 閱讀:425 作者:小豬 欄目:web開發

這篇文章主要講解了Vue2仿淘寶實現省市區三級聯動的方法,內容清晰明了,對此有興趣的小伙伴可以學習一下,相信大家閱讀完之后會有幫助。

三級聯動,隨著越來越多的審美,出現了很多種,好多公司都仿著淘寶的三級聯動 ,好看時尚,so我們公司也一樣……為了貼代碼方便,我把寫在data里面省市區的json獨立了出來,下載貼進去即可用,鏈接如下:vue.json(這個直接是個data,放入你的vue2項目中即可。(因為我的項目是用的vue2,所以,其他的屬性跟博客內容是吻合的。請配合博客再下載此json))。

首先頁面顯示如下:

Vue2仿淘寶實現省市區三級聯動的方法

然后我們縣級所在地區會出現三級聯動,如下:(以下是片段,背景色未截取)

Vue2仿淘寶實現省市區三級聯動的方法Vue2仿淘寶實現省市區三級聯動的方法

這個張什么樣,以什么形式出現,取決于貴公司的UI需求,我們公司是做成彈出層了。。然后背景色透明,這里為了節省流量,我只截取了一段,最后顯示如下:

Vue2仿淘寶實現省市區三級聯動的方法

如果貴公司也跟我們需求一樣,希望這個可以幫到你們。下面是在vue2項目中寫的三級聯動代碼以及css樣式:
<template>

 <section class="myAddress">
  <section>
   <section class="cont" @click="choseAdd()">
    <section>
     <span>所在地區:{{Province&#63;Province:''}} {{City&#63;City:''}} {{District&#63;District:''}}</span>
    </section>
    <img src="../../assets/main/right.png" alt="">
    <div ></div>
   </section>
  </section>
  <!-- 居住地址三級聯動選項 -->
  <section class="showChose" v-show="showChose">
   <section class="address">
   <section class="title">
    <h5>居住地址</h5>
    <span @click="closeAdd()">×</span>
   </section>
   <section class="title">
    <div class="area" @click="provinceSelected()">
     {{Province&#63;Province:info[province-1].name}}
    </div>
    <div class="area" @click="citySelected()" :class="City&#63;'':'active'">
     {{City&#63;City:'請選擇'}}
    </div>
    <div class="area" @click="districtSelected()" :class="District&#63;'':'active'" v-show="City">
     {{District&#63;District:'請選擇'}}
    </div>
   </section>
   <ul>
    <li class="addList" v-for="(v,k) in info" 
     @click="getProvinceId(v.id, v.name, k)" 
     v-show="showProvince" 
     :class="v.selected &#63; 'active' : ''">{{v.name}}</li>
    <li class="addList" v-for="(v,k) in showCityList" 
     @click="getCityId(v.id, v.name, k)" 
     v-show="showCity" 
     :class="v.selected &#63; 'active' : ''">{{v.name}}</li>
    <li class="addList" v-for="(v,k) in showDistrictList" 
     @click="getDistrictId(v.id, v.name, k)" 
     v-show="showDistrict" 
     :class="v.selected &#63; 'active' : ''">{{v.name}}</li>
    </ul>
   </section>
  </section>
  <!-- 頁面內容 -->
  <section class="cont">
   <span>詳細地址:</span>
   <input type="text" v-model="address" placeholder=" 請填寫詳細地址">
  </section>
 </section>
</template>
<script>
 import {
   mapActions,
   mapGetters
 } from 'vuex';
 import api from './../../fetch/api.js'
 export default {
  name: 'address',
  data(){},此處的data直接下載json復制進去即可。http://download.csdn.net/detail/zhaohaixin0418/9862255。
  components: {
   MineHeader
  },
  computed: {
    ...mapGetters([
     'BCcontextPathSrc',
     'sessionId',
     'token',
    ]),
 },
 methods: {
  choseAdd: function() {
   this.showChose = true;
  },
  closeAdd: function() {
   this.showChose = false;
  },
  _filter(add, name, code) {
   let result = [];
   for (let i = 0; i < add.length; i++) {
    if (code == add[i].id) {
     result = add[i][name];
    }
   }
   return result;
  },
  getProvinceId: function(code, input, index) {
   this.province = code;
   this.Province = input;
   this.showProvince = false;
   this.showCity = true;
   this.showDistrict = false;
   this.showCityList = this._filter(this.info, 'city', this.province);
   // 點擊選擇當前
   this.info.map(a => a.selected = false);
   this.info[index].selected = true;
   this.areaProvince = input;
  },
  provinceSelected: function() {
   // 清除市級和區級列表
   this.showCityList = false;
   this.showDistrictList = false;
   // 清除市級和區級選項
   this.City = false;
   this.District = false;
   // 選項頁面的切換
   this.showProvince = true;
   this.showCity = false;
   this.showDistrict = false;
  },
  getCityId: function(code, input, index) {
   this.city = code;
   this.City = input;
   this.showProvince = false;
   this.showCity = false;
   this.showDistrict = true;
   this.showDistrictList = this._filter(this.showCityList, 'district', this.city);
   // 選擇當前添加active
   this.showCityList.map(a => a.selected = false);
   this.showCityList[index].selected = true;
   this.areaCity = input;
  },
  citySelected: function() {
   this.showProvince = false;
   this.showCity = true;
   this.showDistrict = false;
  },
  getDistrictId: function(code, input, index) {
   this.district = code;
   this.District = input;
   // 選擇當前添加active
   this.showDistrictList.map(a => a.selected = false);
   this.showDistrictList[index].selected = true;
   // 選取市區選項之后關閉彈層
   this.showChose = false;
   this.areaDistrict = input;
  },
  districtSelected: function() {
   this.showProvince = false;
   this.showCity = false;
   this.showDistrict = true;
  },
  saveProfile: function() {
   api.commonApi('后臺接口', 這里是貴公司后臺接口,按照你們公司的改了就好
     'param_key={"head":{"TYPE":"ADD_UPD_INFO",' +
     '"SESSION_ID":"' + this.sessionId + '",' +
     '"TOKEN":"' + this.token + '","DEVICE_ID":""},' +
     '"param":{"PROVINCE":"' + this.areaProvince + '", ' +
     '"CITY":"' + this.areaCity + '", "COUNTY":"' + this.areaDistrict + '",' +
     '"ADDRESS": "' + this.address + '"}}')
     .then(res => {
    console.log(res.data);
  });
  }
 }
 }
</script>
<style scoped>
 .myAddress {
  width: 100%;
  background-color: white;
  border-top: 4px solid rgba(245, 245, 245, 1);
  color: #333;
 }
 .myAddress .cont {
  border-bottom: 1px solid rgba(245, 245, 245, 0.8);
 }
 .myAddress .cont span {
  display: inline-block;
  font-size: 0.28rem;
  color: #333;
  line-height: 0.88rem;
  margin-left: 0.32rem;
 }
 .myAddress .cont section {
  float: left;
 }
 .myAddress .cont img {
  float: right;
  width: 0.14rem;
  height: 0.24rem;
  margin: 0.32rem 0.32rem 0.32rem 0;
 }
 .showChose {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  background: rgba(77, 82, 113, 0.8);
 }
 .address {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 121;
  background: #fff;
  width: 100%;
 }
 .title h5 {
  display: inline-block;
  margin-left: 3.2rem;
  font-size: 0.32rem;
  line-height: 0.88rem;
  font-weight: normal;
  color: #999;
 }
 .title span {
  margin: 0.42rem 0 0 2.2rem;
  font-size: 0.45rem;
  line-height: 0.34rem;
  color: #D8D8D8;
 }
 .area {
  display: inline-block;
  font-size: 0.24rem;
  line-height: 0.88rem;
  margin-left: 0.42rem;
  color: #333;
 }
 .addList {
  padding-left: 0.32rem;
  font-size: 0.34rem;
  line-height: 0.88rem;
  color: #333;
 }
 /* 修改的格式 */
 .address ul {
  height: 100%;
  margin-left: 5%;
  max-height: 4.4rem;
  overflow: auto;
 }
 .address .title .active {
  color: #0071B8;
  border-bottom: 0.02rem solid #0071B8;
 }
 .address ul .active {
  color: #0071B8;
 }
</style>

這樣就完成了一個省市區的三級聯動。

看完上述內容,是不是對Vue2仿淘寶實現省市區三級聯動的方法有進一步的了解,如果還想學習更多內容,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

水城县| 孟州市| 金寨县| 江孜县| 靖西县| 沅江市| 临江市| 视频| 衡山县| 梨树县| 旬阳县| 寿宁县| 门源| 阿鲁科尔沁旗| 阿拉善左旗| 曲靖市| 行唐县| 安吉县| 江安县| 荥经县| 青神县| 五大连池市| 鄂州市| 南漳县| 潜山县| 屏边| 麻江县| 壤塘县| 伊通| 中超| 兴国县| 凌源市| 横山县| 利津县| 临猗县| 肇庆市| 巴彦县| 大埔县| 云南省| 如东县| 武陟县|