| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383 |
- <template>
- <view class="content bg-drak ft-main">
- <view class="gap"></view>
- <view class="row dflex border-line padding-lr">
- <text class="tit">收货人</text>
- <input class="input" type="text" v-model="addrData.receiverName" placeholder="请输入收货人姓名"
- placeholder-class="placeholder" />
- </view>
- <view class="row dflex border-line padding-lr">
- <text class="tit">手机号</text>
- <input class="input" type="number" v-model="addrData.phoneNum" placeholder="请输入手机号码"
- placeholder-class="placeholder" />
- </view>
- <view class="row dflex border-line padding-left">
- <text class="tit">所在地区</text>
- <view class="dflex-b flex1">
- <view class="flex1 input_t" @click="openAddress">{{ addressName }}</view>
- <use-address ref="useAddress" @onConfirm="changeAddr" cancelColor="#bbb" themeColor="#FF6A6C">
- </use-address>
- <!-- <use-pickeraddr class="flex1" @change="changeAddr">
- <view class="input_t">{{ addressName }}</view>
- </use-pickeraddr> -->
- <!-- #ifdef MP-WEIXIN || MP-BAIDU -->
- <view class="iconfont icondizhi- input_t padding-lr-sm padding-tb-16" @click="choiceMapAddr"></view>
- <!-- #endif -->
- <!-- #ifdef MP-ALIPAY -->
- <view class="iconfont icondizhi- input_t padding-lr-sm padding-tb-16" @click="choiceAlipayMapAddr">
- </view>
- <!-- #endif -->
- </view>
- </view>
- <view class="row dflex border-line padding-lr">
- <text class="tit">详细地址</text>
- <input class="input" type="text" v-model="addrData.address" placeholder="请输入详细地址"
- placeholder-class="placeholder" />
- </view>
- <view class="gap"></view>
- <view class="row dflex-b padding-lr">
- <text class="tit">设为默认</text>
- <switch :checked="addrDefault" color="#FF6A6C" @change="switchChange" />
- </view>
- <view class="padding w-full margin-top">
- <view class="dflex-b border-radius-big">
- <view class="tac padding-tb-sm flex1 bg-base-a-tijiao" @click="submit">提交</view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import {
- addressinfo,
- addressadd,
- addressupdate
- } from '../../../utils/api_user.js'
- import useAddress from '../../../components/use-address/use-address.vue'
- const __name = 'usemall-member-address';
- export default {
- components:{
- useAddress,
- },
- data() {
- return {
- addrDefault: false,
- addressName: '请选择地址 | 地图选择',
- addrData: {
- id:'',
- receiverName:'',
- phoneNum: '',
- address1: '',
- province: '',
- city: '',
- county: '',
- address: '',
- defaultFlag: 0,
- addr_source: '录入',
- remark: '家',
- longitude: '',
- latitude: '',
- },
- id: 0,
- type: 'add',
- };
- },
- onLoad(options) {
- console.log(options)
- let title = '新增收货人';
- if (options.type === 'edit') {
- title = '编辑收货人';
- this.id = options.id;
- // 收货人地址详情
- var _self=this
- var data=_self.id
- addressinfo(data).then((res) => {
- if(res.success){
- for (let key in _self.addrData) {
- _self.addrData[key] = res.data[key];
- }
- _self.addrDefault = _self.addrData.defaultFlag == '1';
- _self.addressName = _self.addrData.province + '-' + _self.addrData.city +
- '-' + _self.addrData.county;
- return
- }
- _self.$api.msg(res.msg);
- })
- } else {
- // #ifdef H5 || MP-360 || MP-QQ || MP-TOUTIAO
- this.addressName = "请选择地址";
- // #endif
- }
- this.type = options.type || 'add';
- uni.setNavigationBarTitle({
- title
- });
- },
- methods: {
- switchChange(e) {
- this.addrDefault = e.detail.value;
- },
- openAddress() {
- this.$refs.useAddress.open();
- },
- // 选择地址
- changeAddr(res) {
- let _this = this;
- _this.addrData.province = res.labelArr[0] || '';
- _this.addrData.city = res.labelArr[1] || '';
- _this.addrData.county = res.labelArr[2] || '';
- _this.addrData.address1 = res.label;
- _this.addressName = _this.addrData.address1;
- },
- // 选择地图地址
- choiceMapAddr(options) {
- let _this = this;
- uni.authorize({
- scope: 'scope.userLocation',
- success() {
- uni.chooseLocation({
- success: res => {
- console.log('位置', res);
- // console.log('位置名称:' + res.name);
- // console.log('详细地址:' + res.address);
- // console.log('纬度:' + res.latitude);
- // console.log('经度:' + res.longitude);
- if (res && res.name) {
- let __addr = _this.resolveAddr(res);
- _this.addrData.province = __addr.province || '';
- _this.addrData.city = __addr.city || '';
- _this.addrData.county = __addr.area || '';
- _this.addrData.address1 = __addr.addr;
- _this.addressName = _this.addrData.address1;
- _this.addrData.longitude = res.longitude + '';
- _this.addrData.latitude = res.latitude + '';
- _this.addrData.address = res.name;
- }
- },
- fail(err) {
- console.log(err);
- }
- });
- },
- fail(err) {
- uni.showModal({
- title: '位置未授权,打开设置',
- success: function(res) {
- if (res.confirm) {
- uni.openSetting({});
- }
- }
- });
- }
- });
- },
- // #ifdef MP-ALIPAY
- // 选择地图地址
- choiceAlipayMapAddr(options) {
- console.log('open-location', options);
- let _this = this;
- uni.chooseLocation({
- success: res => {
- console.log('位置', res);
- if (res && res.address1) {
- let __addr = _this.resolveAddr(res);
- _this.addrData.province = res.provinceName || '';
- _this.addrData.city = res.cityName || '';
- _this.addrData.county = res.adName || '';
-
- _this.addrData.address1 = [_this.addrData.province, _this.addrData.city, _this.addrData.county]
- .filter(x => x).join('-');
- _this.addressName = _this.addrData.address1;
- _this.addrData.longitude = res.longitude;
- _this.addrData.latitude = res.latitude;
- _this.addrData.address = res.name || res.address1;
- }
- },
- fail(err) {
- console.log(err);
- }
- });
- },
- // #endif
- // 解析地址
- resolveAddr(options) {
- let _this = this;
- let str = options.address;
- let __addr = {
- addr: ''
- };
- let __idx = 0;
- let __idx_pro = str.indexOf('省');
- if (__idx_pro == -1) {
- __idx = str.indexOf('自治区');
- if (__idx != -1) {
- __addr.province = str.substring(0, __idx + 3);
- } else {
- __addr.province = str.substring(0, 0);
- __idx = 0;
- }
- } else {
- __addr.province = str.substring(0, __idx_pro + 1);
- }
- if (__addr.province) __addr.addr += __addr.province + '-';
- let __idx_city = str.indexOf('市');
- if (__idx_city == -1) {
- __idx = str.indexOf('自治州');
- if (__idx != -1) {
- __addr.city = str.substring(__idx_pro + 1, __idx + 3);
- } else {
- __addr.city = str.substring(__idx + 1, __idx_city + 1);
- }
- } else {
- if (__idx == 0) {
- __addr.city = str.substring(__idx_pro + 1, __idx_city + 1);
- } else {
- __addr.city = str.substring(__idx + 3, __idx_city + 1);
- }
- }
- if (__addr.city) __addr.addr += __addr.city + '-';
- let __idx_area = str.lastIndexOf('区');
- if (__idx_area == -1) {
- __idx_area = str.indexOf('县');
- if (__idx == 0) {
- __addr.area = str.substring(__idx_city + 1, __idx_area + 1);
- } else {
- __addr.area = str.substring(__idx + 3, __idx_area + 1);
- }
- } else {
- if (__idx == 0) {
- __addr.area = str.substring(__idx_city + 1, __idx_area + 1);
- } else {
- __addr.area = str.substring(__idx + 3, __idx_area + 1);
- }
- }
- if (__addr.area) __addr.addr += __addr.area;
- return __addr;
- },
- //提交
- submit() {
- let _self=this
- if (_self.addrDefault) {
- _self.addrData.defaultFlag = '1';
- } else {
- _self.addrData.defaultFlag = '0';
- }
- let data = _self.addrData;
- if (!data.receiverName) {
- _self.$api.msg('请填写收货人');
- return;
- }
- if (!/(^1[3|4|5|7|8|9][0-9]{9}$)/.test(data.phoneNum)) {
- _self.$api.msg('请输入正确的手机号码');
- return;
- }
-
- if (!data.address) {
- _self.$api.msg('请填写详细地址');
- return;
- }
-
- if (_self.addrDefault) {
- // // 把默认为是的改成 否
- // _self.$db[__name]
- // .where('create_uid == $env.uid && defaultFlag == "1"')
- // .update({
- // defaultFlag: '0'
- // });
- }
-
- if (_self.type == 'add') {
- if (!data.address1) {
- _self.$api.msg('请选择地址');
- return;
- }
- //添加收货地址
- addressadd(data).then((res) => {
- if(res.success){
- _self.$api.msg('添加成功');
- _self.$api.timerout(() => {
- uni.navigateBack();
- }, 100);
- return
- }
- _self.$api.msg(res.msg);
- })
- } else {
- if (!_self.addressName) {
- _self.$api.msg('请选择地址');
- return;
- }
- if (!_self.id) {
- _self.$api.msg('当前ID异常,编辑失败');
- return;
- }
- //修改收货地址
- addressupdate(data).then((res) => {
- if(res.success){
- _self.$api.msg('编辑成功');
- _self.$api.timerout(() => {
- uni.navigateBack();
- }, 100);
- return
- }
- _self.$api.msg(res.msg);
- })
- }
- }
- }
- };
- </script>
- <style lang="scss">
- @import url('/packageShang/components/iconfont/iconfont.css');
- @import url('/packageShang/common/common.scss');
- page {
- background: $page-color-base;
- }
- .row {
- background: #fff;
- position: relative;
- height: 110rpx;
- .tit {
- flex-shrink: 0;
- width: 150rpx;
- }
- .input {
- flex: 1;
- font-size: 30rpx;
- padding-left: 0;
- }
- .input_t {
- color: #333;
- }
- }
- </style>
|