123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344 |
- <template>
- <!-- 填写收件人信息 -->
- <view class="back">
- <view class="info">
- <view class="item u-flex u-row-between">
- <text class="title">{{i18n.goods}}</text>
- </view>
- <view class="item u-flex " @click="tocitychange">
- <text class="left">{{i18n.country}}</text>
- <view class="right u-flex u-row-between" style="flex: 1;">
- <input type="text" :placeholder="i18n.selection" v-model="addname" />
- <image src="../static/express/next1.png" style="width: 36rpx;height: 36rpx;" mode=""></image>
- </view>
- </view>
- <view class="item u-flex ">
- <text class="left">{{i18n.name}}</text>
- <view class="right">
- <input type="text" :placeholder="i18n.name" v-model="name" />
- </view>
- </view>
- <view class="item u-flex ">
- <text class="left">{{i18n.phone}}</text>
- <view class="right">
- <input type="text" :placeholder="i18n.pleasePhoneNumber" v-model="phone" />
- </view>
- </view>
- <view class="item u-flex ">
- <text class="left">{{i18n.postalCode}}</text>
- <view class="right">
- <input type="text" :placeholder="i18n.PleacePostalCode" v-model="postalCode" />
- </view>
- </view>
- <view class="item u-flex ">
- <text class="left">{{i18n.city}}</text>
- <view class="right u-flex u-row-between " style="flex: 1;" @click="openCity">
- <input type="text" :placeholder="i18n.selection" disabled="" v-model="cityname" />
- <image src="../static/express/next1.png" style="width: 36rpx;height: 36rpx;" mode=""></image>
- </view>
- </view>
- <view class="item u-flex ">
- <text class="left">{{i18n.detailed}}</text>
- <view class="right">
- <input type="area" :placeholder="i18n.sect" v-model="detailed" />
- </view>
- </view>
- <view class="item u-flex ">
- <text class="left">{{i18n.companyName}}</text>
- <view class="right">
- <input type="area" :placeholder="i18n.company" v-model="companyName" />
- </view>
- </view>
- <view class="item u-flex ">
- <text class="left">{{i18n.email}}</text>
- <view class="right">
- <input type="area" :placeholder="i18n.pleaseEmail" v-model="email" />
- </view>
- </view>
- <!-- 默认地址 -->
- <view class="u-flex u-row-between" style="margin-top: 22rpx;">
- <view class="u-flex">
- <view class="">
- <u-checkbox-group v-model="checkboxValue1" placement="row" @change="checkboxChange">
- <u-checkbox shape='circle' :customStyle="{marginRight: '4px'}" :name="active">
- </u-checkbox>
- </u-checkbox-group>
- </view>
- <text class="clear">{{i18n.addressBook}}</text>
- </view>
- <text class="clear">
- {{i18n.empty}}
- </text>
- </view>
- </view>
- <view class="" style="height: 166rpx;"></view>
- <view class="bottom">
- <view class="btn" @click="submit">
- {{i18n.enter}}
- </view>
- </view>
- <!-- 选择省市区 -->
- <u-picker :show="show" :columns="cityList" keyName="name" @confirm="countrycConfirm" @cancel="show = false"
- :closeOnClickOverlay="true" @close="close"></u-picker>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- checkboxValue1: [],
- active: 1,
- addname: '',
- addid: '',
- show: false,
- cityList: [],
- cityid: '',
- cityname: "",
- name: "",
- phone: "",
- postalCode: "",
- detailed: "",
- email: "",
- companyName: "",
- is_default:0
- };
- },
- methods: {
- //确定
- submit() {
- const obj = {
- mobile: this.phone,
- name: this.name,
- country_id: this.addid,
- province_id: this.cityid,
- address: this.detailed,
- company_name: this.companyName,
- email: this.email,
- zip_code: this.postalCodee,
- is_default:this.is_default
- };
- uni.$u.http.post(`/api/address`, obj).then((res) => {
- console.log(res);
- // this.$router.back();
- });
- },
- //选择省市区
- countrycConfirm(e) {
- console.log(e);
- this.cityid = e.value[0].id
- this.cityname = e.value[0].name
- this.show = false;
- },
- //打开选择城市的弹窗
- openCity() {
- //判断是否选择国家
- if (this.addid) {
- this.show = true
- //判断选中的国家有没有城市数据
- // if (this.cityList[0].length > 0) {
- // this.show = true;
- // } else {
- // uni.$u.toast("该国家没有城市数据,请直接填写详细地址");
- // }
- } else {
- uni.$u.toast("请先选择国家");
- }
- },
- checkboxChange(n) {
- console.log('change', n);
- if(n.length>0){
- this.is_default = 1
- }else{
- this.is_default = 0
- }
- },
- //获取国家
- tocitychange() {
- var that = this
- uni.navigateTo({
- url: '/pageB/citychange',
- events: {
- getadd(res) {
- console.log(res.id);
- that.addid = res.id
- that.addname = res.name
- that.getCityList()
- }
- }
- })
- },
- //根据国家获取城市
- getCityList() {
- uni.$u.http.get(`/api/area/tree?pid=` + this.addid).then((res) => {
- this.cityList = [res];
- console.log(this.cityList);
- });
- },
- },
- computed: {
- i18n() {
- return this.$t('index')
- }
- },
- onShow() {
- uni.setNavigationBarTitle({
- title: this.i18n.goods
- })
- },
- }
- </script>
- <style lang="scss">
- .back {
- padding: 20rpx 24rpx;
- box-sizing: border-box;
- .bottom {
- width: 750rpx;
- height: 166rpx;
- background: #FFFFFF;
- position: fixed;
- bottom: 0;
- left: 0;
- padding: 18rpx 24rpx;
- box-sizing: border-box;
- .btn {
- width: 702rpx;
- height: 88rpx;
- background: #F83224;
- border-radius: 44rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 500;
- font-size: 32rpx;
- color: #FFFFFF;
- line-height: 88rpx;
- text-align: center;
- font-style: normal;
- }
- }
- .add {
- width: 702rpx;
- // height: 160rpx;
- background: #FFFFFF;
- border-radius: 16rpx;
- padding: 24rpx;
- box-sizing: border-box;
- .addinfo {
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 24rpx;
- color: #222222;
- line-height: 34rpx;
- text-align: left;
- font-style: normal;
- }
- .name {
- font-family: PingFangSC, PingFang SC;
- font-weight: 500;
- font-size: 28rpx;
- color: #333333;
- line-height: 40rpx;
- text-align: left;
- font-style: normal;
- }
- .phone {
- font-family: SFPro, SFPro;
- font-weight: 400;
- font-size: 24rpx;
- color: #333333;
- line-height: 28rpx;
- text-align: left;
- font-style: normal;
- margin-left: 16rpx;
- }
- }
- .history {
- font-family: PingFangSC, PingFang SC;
- font-weight: 500;
- font-size: 30rpx;
- color: #333333;
- line-height: 42rpx;
- text-align: left;
- font-style: normal;
- margin: 28rpx 0 24rpx;
- }
- .info {
- padding: 0 24rpx 28rpx;
- box-sizing: border-box;
- width: 702rpx;
- // height: 742rpx;
- background: #FFFFFF;
- border-radius: 16rpx;
- .clear {
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 24rpx;
- color: #333333;
- line-height: 34rpx;
- text-align: left;
- font-style: normal;
- }
- .item {
- border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
- min-height: 100rpx;
- padding: 20rpx 0;
- box-sizing: border-box;
- .title {
- font-family: PingFangSC, PingFang SC;
- font-weight: 600;
- font-size: 32rpx;
- color: #333333;
- line-height: 44rpx;
- text-align: left;
- font-style: normal;
- }
- .wx {
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 24rpx;
- color: #333333;
- line-height: 34rpx;
- text-align: left;
- font-style: normal;
- }
- .left {
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 28rpx;
- color: #222222;
- line-height: 40rpx;
- text-align: left;
- font-style: normal;
- width: 115rpx;
- }
- .right {
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 28rpx;
- color: #222222;
- line-height: 40rpx;
- text-align: left;
- font-style: normal;
- margin-left: 60rpx;
- }
- }
- }
- }
- </style>
|