123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308 |
- <template>
- <view class="address" :style="{ background:isAdd ? '#fff' : '#f5f5f5' }">
- <custom-nav :title="pageTitle"></custom-nav>
- <custom-toast ref='toast'></custom-toast>
- <view v-if="isAdd">
- <view class="form">
- <view class="form_item">
- <view class="label">
- <text>收货人</text>
- <text class="star">*</text>
- </view>
- <input v-model="adsInfo.username" type="text" placeholder="请填写真实姓名" />
- </view>
- <view class="form_item">
- <view class="label">
- <text>手机号</text>
- <text class="star">*</text>
- </view>
- <input type="text" placeholder="请填写手机号" v-model="adsInfo.mobile" maxlength="11">
- </view>
- <view class="form_item">
- <view class="label">
- <text>省市县区</text>
- <text class="star">*</text>
- </view>
- <view class="picker_box">
- <picker mode="region" @change="RegionChange" :value="region">
- <view class="picker" :style="{ color: region.length ? '#333' : '#999' }">
- <text>{{region.length==0?'请点击选择地址':region[0]+'-'+region[1]+'-'+region[2]}}</text>
- <text class="cuIcon-right"></text>
- </view>
- </picker>
- </view>
- </view>
- <view class="form_item">
- <view class="label">
- <text>详细地址</text>
- <text class="star">*</text>
- </view>
- <input type="text" placeholder="请填写详细地址" v-model="adsInfo.address">
- </view>
- </view>
- <view class="sub_btn" @click="saveAds">保存地址</view>
- </view>
- <view class="ads_box" v-else>
- <view class="box_item" v-if="adsInfo.username">
- <view>
- <text class="user_name">{{adsInfo.username}}</text>
- <text class="user_phone">{{adsInfo.mobile}}</text>
- </view>
- <view class="user_ads" v-if="adsInfo.province">
- {{adsInfo.province}}{{adsInfo.city}}{{adsInfo.area}}{{adsInfo.address}}
- </view>
- <view class="opera_box">
- <view @click="isAdd=true">编辑</view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import {
- showAddress,
- UpdateAddAddress
- } from '../../api.js' //添加地址接口
- export default {
- data() {
- return {
- pageTitle: '地址管理', //导航栏名字
- region: [],
- adsInfo: {
- username: '',
- mobile: '',
- province: '',
- city: '',
- area: '',
- address: ''
- },
- isAdd: false,
- isPoint: true, //防连点
- };
- },
- onShow() {
- //获取地址
- this.$ajax.get(showAddress).then(([, {
- data: res
- }]) => {
- this.$hideLoading()
- if (res.code === 200) {
- if (res.data && res.data != 'null') {
- const {
- province,
- city,
- area
- } = res.data
- this.adsInfo = res.data
- console.log(this.adsInfo,'info')
- this.region = [province, city, area]
- this.isAdd = false
- this.pageTitle = '地址管理'
- } else {
- this.isAdd = true
- this.pageTitle = '地址填写'
- console.log(this.adsInfo,'infoelse')
- }
- } else {
- this.$refs.toast.hover(res.msg || '获取地址失败')
- }
- })
- },
- methods: {
- //选择地址
- RegionChange(e) {
- this.region = e.detail.value
- },
- //保存地址
- saveAds() {
- let _this = this;
- console.log('提交')
- if (!this.isPoint) {
- uni.showModal({
- content: '请稍后重试~',
- showCancel: false
- });
- return
- }
- const {
- username,
- mobile,
- address
- } = _this.adsInfo
- if (!username.match(/^[\u4E00-\u9FA5\uf900-\ufa2d·s]{2,20}$/)) {
- this.$refs.toast.hover('真实姓名不符合要求')
- return
- }
- if (!mobile || mobile.length != 11) {
- this.$refs.toast.hover('手机号格式不正确')
- return
- }
- if (this.region.length === 0) {
- this.$refs.toast.hover('请选择地址')
- return
- }
- if (!address) {
- this.$refs.toast.hover('详细地址不能为空')
- return
- }
- this.isPoint = false;
- this.adsInfo.province = this.region[0]
- this.adsInfo.city = this.region[1]
- this.adsInfo.area = this.region[2]
- this.$ajax.post(UpdateAddAddress, this.adsInfo).then(([, {
- data: res
- }]) => {
- if (+res.code === 200) {
- this.$refs.toast.hover('添加成功')
- this.isAdd = false
- this.pageTitle = '地址管理'
- } else {
- this.$refs.toast.hover(res.msg || '添加失败')
- }
- }).catch(err => {
- this.isPoint = true;
- uni.hideLoading();
- })
- .finally(() => {
- uni.hideLoading();
- setTimeout(() => {
- this.isPoint = true;
- }, 2000);
- });
- },
- },
- }
- </script>
- <style lang="scss" scoped>
- .address {
- // @include page();
- width: 100%;
- height: 100%;
- .form {
- width: 100%;
- margin-top: 30rpx;
- .form_item {
- width: 690rpx;
- margin: 0 auto;
- .star {
- color: #f00;
- margin-left: 10rpx;
- }
- .label {
- font-size: 36rpx;
- font-weight: bold;
- margin-top: 24rpx;
- }
- input {
- width: 100%;
- height: 88rpx;
- font-size: 34rpx;
- border-bottom: 2rpx solid #E9E9E9;
- color: #333;
- }
- .picker_box {
- display: flex;
- justify-content: space-between;
- align-items: center;
- border-bottom: 2rpx solid #E9E9E9;
- min-height: 88rpx;
- picker {
- width: 100%;
- .cuIcon-right {
- font-size: 45rpx;
- color: #999;
- }
- .picker {
- width:100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- font-size: 34rpx;
- }
- }
-
-
- }
- }
- }
- .sub_btn {
- width: 570rpx;
- height: 88rpx;
- margin: 60rpx auto;
- background: linear-gradient(93deg, #F97C55 0%, #F44545 100%);
- opacity: 1;
- border-radius: 44rpx;
- color: #fff;
- font-size: 32rpx;
- text-align: center;
- line-height: 88rpx;
- }
- .ads_box {
- margin-top: 30rpx;
- .box_item {
- padding: 24rpx;
- box-sizing: border-box;
- background: #fff;
- width: 702rpx;
- background: #FFFFFF;
- border-radius: 16rpx;
- margin: 24rpx auto 0;
- .user_name {
- font-size: 34rpx;
- font-weight: bold;
- margin-right: 10rpx;
- }
- .user_phone {
- font-size: 32rpx;
- color: #999;
- }
- .user_ads {
- margin: 24rpx 0;
- font-size: 32rpx;
- color: #333;
- }
- .opera_box {
- width: 100%;
- display: flex;
- justify-content: flex-end;
- align-items: center;
- view {
- width: 120rpx;
- height: 60rpx;
- background: #F8F8F8;
- border-radius: 30rpx;
- opacity: 1;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- }
- }
- }
- }
- </style>
|