微信小程序商城开发之实现用户收货地址管理页面的代码
本篇文章给大家带来的内容是关于微信小程序商城开发之实现用户收货地址管理页面的代码 ,有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。
看效果
开发计划
1、布局收货地址列表和新增收货地址页面
2、实现省市县三级联动功能
3、使用缓存管理数据
一、收货地址列表管理
addressList.wxml
<scroll-view> <view> <view> <view>{{item.consignee}} <text> </text> {{item.mobile}} </view> <view> {{item.address}} </view> <view> <p>{{item.transportDay}}</p> <p>删除</p> </view> <view></view> </view> </view></scroll-view><view> <image></image>新增地址</view>
addressList.wxss
page{ display: flex; flex-direction: column; height: 100%; } .product-name-wrap{ margin: 0px 10px; font-size: 14px; color: #404040;}.ui-list-item-info{ margin: 5px 0px;}.ui-list-item-address{ color: #585c64;}.ui-list-item-time{ margin: 5px 0px;}.ui-list-item-del{ position: absolute; right: 10px; color: #585c64;}/* 分割线 */.separate { margin: 5px 0px; height: 2rpx; background-color: #f2f2f2;}.add-address{ margin: 0 auto; margin-top: 30px; width: 150px; height: 35px; border: 1px #000 solid; line-height: 35px; text-align: center; color: #000; border-radius: 5rpx; display: block;}.add-img{ margin-right: 15rpx; width: 15px; height: 15px;}
addressList.json
{ "navigationBarTitleText": "管理地址"}
addressList.js
Page({ /** * 页面的初始数据 */ data: { addressList:[] }, /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { var arr = wx.getStorageSync('addressList') || []; console.info("缓存数据:" + arr); // 更新数据 this.setData({ addressList: arr }); }, /** * 生命周期函数--监听页面显示 */ onShow: function () { this.onLoad(); }, addAddress:function(){ wx.navigateTo({ url: '../address/address' }); }, /* 删除item */ delAddress: function (e) { this.data.addressList.splice(e.target.id.substring(3), 1); // 更新data数据对象 if (this.data.addressList.length > 0) { this.setData({ addressList: this.data.addressList }) wx.setStorageSync('addressList', this.data.addressList); } else { this.setData({ addressList: this.data.addressList }) wx.setStorageSync('addressList', []); } }})
二、新增收货信息
address.wxml
收货人 手机号 收货时间 {{transportValues[transportIndex]}} 省份 {{provinceNames[provinceIndex]}} 城市 {{cityNames[cityIndex]}} 区县 {{countyNames[countyIndex]}} 详细地址 保存
address.wxss
@import '../../utils/weui.wxss'; .weui-cells:before{ top:0; border-top:1rpx solid white; }.weui-cell{ line-height: 3.5rem;}.weui-cells:after{ bottom:0;border-bottom:1rpx solid white} .weui-btn{ width: 80%;}
address.json
{ "navigationBarTitleText": "添加收货地址"}
address.js
var area = require('../../utils/area.js');var areaInfo = []; //所有省市区县数据var provinces = []; //省var provinceNames = []; //省名称var citys = []; //城市var cityNames = []; //城市名称var countys = []; //区县var countyNames = []; //区县名称var value = [0, 0, 0]; //数据位置下标var addressList = null;Page({ /** * 页面的初始数据 */ data: { transportValues: ["收货时间不限", "周六日/节假日收货", "周一至周五收货"], transportIndex: 0, provinceIndex: 0, //省份 cityIndex: 0, //城市 countyIndex: 0, //区县 }, /** * 生命周期函数--监听页面加载 */ onLoad: function(options) { }, /** * 生命周期函数--监听页面显示 */ onShow: function() { var that = this; area.getAreaInfo(function(arr) { areaInfo = arr; //获取省份数据 that.getProvinceData(); }); }, // 获取省份数据 getProvinceData: function() { var that = this; var s; provinces = []; provinceNames = []; var num = 0; for (var i = 0; i <p><strong>area.js和weui.wxss 可以看下方源码获取方式,这里就不多做解释。</strong></p><p>