123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483 |
- <template>
- <!-- 编辑/添加地址 -->
- <view class="container flex-center flex-column">
- <global-loading />
- <!-- #ifdef MP-WEIXIN -->
- <!-- <view class="wxAddress flex-items flex-end" v-if="type == 1"> -->
- <!-- <view class="wxBtnBox flex-items" @click="addAddressWx"> -->
- <!-- <image class="" src="../../static/images/origin/withdraw.png"></image> -->
- <!-- </view> -->
- <!-- </view> -->
- <!-- #endif -->
- <view class="addressBack-box">
- <view class="consignee-box bor-line-F7F7F7">
- <input v-model="addressData.username" maxlength="20" class="fs28" placeholder-class="consignee" placeholder="收货人" />
- </view>
- <view class="iphoneNum-box bor-line-F7F7F7">
- <input v-model="addressData.phone" type="number" maxlength="11" class="fs28" placeholder-class="iphoneNum" placeholder="手机号码" />
- </view>
- <view class="location-box bor-line-F7F7F7 flex-row-plus flex-sp-between flex-items" @click="locationClick">
- <view class="fs28 location">所在地</view>
- <view class="locationBox">
- <!-- <city-select v-model="locationShowFalg" @city-change="cityChange"></city-select> -->
- <u-picker-shop v-model="locationShowFalg" mode="region" :default-region="addressData.defaultRegion" title="所在地" @confirm="cityChange"></u-picker-shop>
- <text v-model="addressData.ssqText">{{ addressData.ssqText }}</text>
- <image class="arrow mar-left-20" src="../../static/images/origin/greyArrow.png"></image>
- </view>
- </view>
- <view class="detailAddress-box">
- <input v-model="addressData.address" class="fs28" maxlength="60" placeholder-class="detailAddress" placeholder="详细地址:如道路、门牌号、小区、楼栋号、单元等" />
- </view>
- </view>
- <view class="addressTagBack-box">
- <view class="addressTag-box bor-line-F7F7F7 flex-row-plus flex-sp-between flex-items" @click="addressTagClick">
- <view class="fs28 addressTag">地址标签</view>
- <view class="flex-items">
- <text v-model="tag">{{ tag }}</text>
- <image class="arrow mar-left-20" src="../../static/images/origin/greyArrow.png"></image>
- </view>
- </view>
- <view class="defaultState-box flex-row-plus flex-sp-between flex-items">
- <view class="fs28 defaultState">设为默认地址</view>
- <u-switch v-model="ifDefault" active-color="#C5AA7B" inactive-color="#eee"></u-switch>
- </view>
- </view>
- <view v-if="type == 2" class="deleteAddress-box" @click="delAddress">
- <text class="font-color-C5AA7B">删除收货地址</text>
- </view>
- <view class="saveAddress-box">
- <view v-if="type == 1 || type == 3" class="saveAddress" @click="addAddressClick">保存</view>
- <view v-else class="saveAddress" @click="saveAddressClick">保存</view>
- </view>
- <!-- 所在地弹窗 -->
- <!-- <u-select v-model="locationShowFalg" safe-area-inset-bottom="true" mode="mutil-column-auto" :list="locationList" @confirm="locationConfirm" title="所在地"></u-select> -->
- <!-- 所在地弹窗 -->
- <!-- <u-select v-model="addressTagShowFalg" mode="single-column" :list="addressTagList" @confirm="addressTagconfirm" title="地址标签"></u-select> -->
- <u-picker-shop v-model="addressTagShowFalg" mode="selector" :range="addressTagList" range-key="label" title="地址标签" :default-selector="[ addressTagIndex ]" @confirm="addressTagconfirm"></u-picker-shop>
- </view>
- </template>
- <script>
- // import citySelect from './u-city-select.vue';
- const NET = require('../../utils/request')
- const API = require('../../config/api')
- export default {
- // components: {
- // citySelect
- // },
- data() {
- return {
- show: false,
- type: 1, // 1.添加新地址 2.编辑收货地址
- locationShowFalg: false,
- locationList: [],
- locationName: '',
- provinceName: '',
- cityName: '',
- districtName: '',
- addressTagList: [
- {
- value: '1',
- label: '家'
- },
- {
- value: '2',
- label: '公司'
- },
- {
- value: '3',
- label: '学校'
- }
- ],
- addressTagShowFalg: false,
- areaList: [],
- username: '',
- phone: '',
- ssqText: '',
- address: '',
- tag: '',
- ifDefault: 0,
- province: '',
- city: '',
- area: '',
- id: '',
- ordertype: 0,
- editAddress: {},
- addressTagIndex: 0,
- // defaultRegion: [],
- addressData: {
- username: '',
- phone: '',
- ssqText: '',
- address: '',
- defaultRegion: [],
- city: '',
- province: ''
- }
- }
- },
- onLoad(options) {
- this.type = options.type
- if (options.ordertype == 1) {
- this.ordertype = 1
- }
- const receiveId = options.receiveId
- this.id = receiveId
- if (this.type == 2) {
- // uni.showLoading({
- // mask: true,
- // title: '请稍后...',
- // })
- NET.request(API.receiveGetInfo, { receiveId }, 'GET').then((res) => {
- this.editAddress = res.data
- this.addressData.username = this.editAddress.receiveName
- this.addressData.phone = this.editAddress.receivePhone
- this.addressData.ssqText = this.editAddress.receiveAdress
- this.addressData.address = this.editAddress.address
- this.tag = this.editAddress.label
- for (let i = 0; i < this.addressTagList.length; i++) {
- if (this.addressTagList[i].label === this.tag) {
- this.addressTagIndex = i
- }
- }
- this.ifDefault = this.editAddress.ifDefault
- this.addressData.defaultRegion = this.addressData.ssqText.split('-')
- this.addressData.province = this.addressData.defaultRegion[0]
- this.addressData.city = this.addressData.defaultRegion[1]
- this.addressData.area = this.addressData.defaultRegion[2]
- this.addressData.id = this.editAddress.receiveId
- uni.hideLoading()
- })
- .catch((res) => {
- })
- }
- if (this.type == 3) {
- const obj = JSON.parse(options.wxAddressData)
- this.addressData = obj
- // this.username = obj.username
- // this.phone = obj.phone
- // this.ssqText = obj.ssqText
- // this.defaultRegion = obj.defaultRegion
- // this.address = obj.address
- // this.province = obj.provinceName
- // this.city = obj.cityName
- }
- if (this.editAddress != '') {
- uni.removeStorageSync('editAddress')
- }
- },
- methods: {
- cityChange(e) {
- this.addressData.ssqText = e.province.label + '-' + e.city.label + '-' + e.area.label
- this.addressData.province = e.province.label
- this.addressData.city = e.city.label
- this.addressData.area = e.area.label
- },
- locationClick() {
- this.locationShowFalg = true
- },
- locationConfirm(e) {
- this.provinceName = e[0].label
- this.cityName = e[1].label
- this.districtName = e[2].label
- this.locationDot = '·'
- },
- addressTagClick() {
- this.addressTagShowFalg = true
- },
- addressTagconfirm(index) {
- this.tag = this.addressTagList[index].label
- },
- // 编辑地址
- saveAddressClick() {
- const phoneCodeVerification = /^[1][3-9][0-9]{9}$/
- if (this.addressData.username == '') {
- uni.showToast({
- title: '请输入收货人!',
- duration: 2000,
- icon: 'none'
- })
- } else if (this.addressData.phone == '') {
- uni.showToast({
- title: '请输入手机号!',
- duration: 2000,
- icon: 'none'
- })
- } else if (!phoneCodeVerification.test(this.addressData.phone)) {
- uni.showToast({
- title: '请输入正确的手机号!',
- duration: 2000,
- icon: 'none'
- })
- } else if (this.addressData.province == '' || this.addressData.city == '') {
- uni.showToast({
- title: '所在地不能为空!',
- duration: 2000,
- icon: 'none'
- })
- } else if (this.addressData.address == '') {
- uni.showToast({
- title: '请输入详细地址!',
- duration: 2000,
- icon: 'none'
- })
- } else {
- NET.request(API.AddresUpdate, {
- receiveId: this.id,
- receiveName: this.addressData.username,
- receivePhone: this.addressData.phone,
- receiveAdress: this.addressData.ssqText,
- address: this.addressData.address,
- label: this.tag,
- ifDefault: this.ifDefault ? 1 : 0
- }, 'POST').then((res) => {
- uni.navigateBack({
- delta: 1
- })
- uni.removeStorageSync('editAddress')
- })
- .catch((res) => {
- })
- }
- },
- // 新增地址
- addAddressClick() {
- const phoneCodeVerification = /^[1][3-9][0-9]{9}$/
- if (this.addressData.username == '') {
- uni.showToast({
- title: '请输入收货人!',
- duration: 2000,
- icon: 'none'
- })
- } else if (this.addressData.phone == '') {
- uni.showToast({
- title: '请输入手机号!',
- duration: 2000,
- icon: 'none'
- })
- } else if (!phoneCodeVerification.test(this.addressData.phone)) {
- uni.showToast({
- title: '请输入正确的手机号!',
- duration: 2000,
- icon: 'none'
- })
- } else if (this.addressData.province == '' || this.addressData.city == '') {
- uni.showToast({
- title: '所在地不能为空!',
- duration: 2000,
- icon: 'none'
- })
- } else if (this.addressData.address == '') {
- uni.showToast({
- title: '请输入详细地址!',
- duration: 2000,
- icon: 'none'
- })
- } else {
- NET.request(
- API.AddresAdd,
- {
- receiveName: this.addressData.username,
- receivePhone: this.addressData.phone,
- receiveAdress: this.addressData.ssqText,
- address: this.addressData.address,
- label: this.tag,
- ifDefault: this.ifDefault ? 1 : 0
- }, 'POST'
- ).then((res) => {
- if (this.ordertype == 1) {
- uni.setStorageSync('receiveItem', res.data)
- uni.navigateBack({
- delta: 2
- })
- } else {
- uni.navigateBack({
- delta: 1
- })
- }
- })
- .catch((res) => {
- })
- }
- },
- // addAddressWx() {
- // let self = this
- // uni.chooseAddress({
- // success(res){
- // self.username = res.userName
- // self.phone = res.telNumber
- // self.ssqText = `${res.provinceName}-${res.cityName}-${res.countyName}`
- // self.defaultRegion = self.ssqText.split("-")
- // self.address = res.detailInfo
- // self.province = res.provinceName
- // self.city = res.cityName
- // }
- // })
- // },
- // 删除地址
- delAddress() {
- uni.showModal({
- title: '温馨提示',
- content: '是否删除此地址?',
- confirmText: '确定',
- cancelText: '取消',
- success: (res) => {
- if (res.confirm) {
- this.subm()
- } else if (res.cancel) {
- }
- }
- })
- },
- subm() {
- NET.request(API.AddresDelete, {
- receiveId: this.id
- }, 'POST').then((res) => {
- if (res.code === '200') {
- uni.navigateBack({
- delta: 1
- })
- }
- })
- .catch((res) => {
- })
- }
- }
- }
- </script>
- <style lang="scss">
- page{
- background-color: #F7F7F7;
- }
- .container{
- .addressBack-box{
- background-color: #FFFFFF;
- padding: 30upx 30upx;
- .consignee-box{
- padding-bottom: 36upx;
- width: 690upx;
- margin-top: 20upx;
- .consignee{
- color: #999999;
- font-size: 28upx;
- }
- }
- .iphoneNum-box{
- padding-bottom: 36upx;
- width: 690upx;
- margin-top: 36upx;
- .iphoneNum{
- color: #999999;
- font-size: 28upx;
- }
- }
- .location-box{
- padding-bottom: 36upx;
- width: 690upx;
- margin-top: 36upx;
- .location{
- color: #999999;
- font-size: 28upx;
- }
- .locationBox {
- display: flex;
- align-items: center;
- }
- }
- .detailAddress-box{
- padding-bottom: 36upx;
- width: 690upx;
- margin-top: 36upx;
- input{
- width: 100%;
- }
- .detailAddress{
- color: #999999;
- font-size: 28upx;
- }
- }
- }
- .addressTagBack-box{
- background-color: #FFFFFF;
- padding: 30upx 30upx;
- margin-top: 20upx;
- .addressTag-box{
- padding-bottom: 36upx;
- width: 690upx;
- .addressTag{
- color: #999999;
- font-size: 28upx;
- }
- }
- .defaultState-box{
- padding-bottom: 10upx;
- width: 690upx;
- margin-top: 36upx;
- .defaultState{
- color: #999999;
- font-size: 28upx;
- }
- }
- }
- .arrow{
- width: 62upx;
- height: 62upx;
- }
- .saveAddress-box{
- position: fixed;
- bottom: 50upx;
- left: 30upx;
- .saveAddress{
- width: 690upx;
- height: 100upx;
- text-align: center;
- line-height: 100upx;
- background: #333333;
- color: #FFEBC4;
- }
- }
- .wxAddress {
- height: 80rpx;
- text-align: center;
- line-height: 80rpx;
- color: #999999;
- .wxBtnBox {
- width: 100rpx;
- height: 80rpx;
- image {
- width: 80rpx;
- height: 80rpx;
- }
- }
- }
- }
- .deleteAddress-box{
- background-color: #FFFFFF;
- padding: 30upx 30upx;
- margin-top: 20upx;
- }
- .content{
- font-size: 35rpx;
- width: 500rpx;
- .btn{
- margin-bottom: 20rpx;
- width: 200rpx;
- background-image: linear-gradient( 135deg, #FFA100 10%, #FF7911 100%);
- }
- }
- </style>
- <style scoped>
- .addressBack-box /deep/ .u-tab-item{
- color: #C5AA7B !important;
- font-weight: 400 !important;
- }
- .addressBack-box /deep/ .u-tab-bar {
- background-color: #C5AA7B !important;
- }
- </style>
|