|
@@ -63,7 +63,7 @@
|
|
<view class="pople">{{i18n.recipient}}</view>
|
|
<view class="pople">{{i18n.recipient}}</view>
|
|
<view class="jiadd" style="margin-top: 14rpx;">{{i18n.informate}}</view>
|
|
<view class="jiadd" style="margin-top: 14rpx;">{{i18n.informate}}</view>
|
|
</view>
|
|
</view>
|
|
- <view v-else class="u-row-between " style="" @click="send">
|
|
|
|
|
|
+ <view v-else class="u-row-between " style="" @click="recipirnt">
|
|
<view class="">
|
|
<view class="">
|
|
<text class="topname">{{bottomadd.name}}</text>
|
|
<text class="topname">{{bottomadd.name}}</text>
|
|
<text class="topaddress"
|
|
<text class="topaddress"
|
|
@@ -112,7 +112,9 @@
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="bottom u-flex u-row-between">
|
|
<view class="bottom u-flex u-row-between">
|
|
- <button style="background-color: transparent;padding-left: 0 !important;padding-right: 0 !important;margin: 0 !important;" open-type="share" class="u-flex" >
|
|
|
|
|
|
+ <button
|
|
|
|
+ style="background-color: transparent;padding-left: 0 !important;padding-right: 0 !important;margin: 0 !important;"
|
|
|
|
+ open-type="share" class="u-flex">
|
|
<image src="../../static/express/share.png" style="width: 36rpx;height: 36rpx;" mode=""></image>
|
|
<image src="../../static/express/share.png" style="width: 36rpx;height: 36rpx;" mode=""></image>
|
|
<text class="friend">{{i18n.share}}</text>
|
|
<text class="friend">{{i18n.share}}</text>
|
|
</button>
|
|
</button>
|
|
@@ -479,14 +481,55 @@
|
|
},
|
|
},
|
|
//寄件人信息
|
|
//寄件人信息
|
|
send() {
|
|
send() {
|
|
- uni.navigateTo({
|
|
|
|
- url: '/pageB/Senderinfor'
|
|
|
|
- })
|
|
|
|
|
|
+ var that = this
|
|
|
|
+ if (JSON.stringify(that.topadd) == '{}') {
|
|
|
|
+ uni.navigateTo({
|
|
|
|
+ url: '/pageC/addEditAddress/addEditAddress',
|
|
|
|
+ events: {
|
|
|
|
+ topadd: function(res) {
|
|
|
|
+ // console.log(res);
|
|
|
|
+ that.topadd = res
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ } else {
|
|
|
|
+ var that = this
|
|
|
|
+ uni.navigateTo({
|
|
|
|
+ url: '/pageC/addEditAddress/addEditAddress?id=' + that.topadd.id,
|
|
|
|
+ events: {
|
|
|
|
+ topadd: function(res) {
|
|
|
|
+ // console.log(res);
|
|
|
|
+ that.topadd = res
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ }
|
|
},
|
|
},
|
|
recipirnt() {
|
|
recipirnt() {
|
|
- uni.navigateTo({
|
|
|
|
- url: '/pageB/recipientinfo'
|
|
|
|
- })
|
|
|
|
|
|
+ var that = this
|
|
|
|
+ if (JSON.stringify(that.bottomadd) == '{}') {
|
|
|
|
+ console.log(11111);
|
|
|
|
+ uni.navigateTo({
|
|
|
|
+ url: '/pageB/recipientinfo',
|
|
|
|
+ events: {
|
|
|
|
+ bottomadd: function(res) {
|
|
|
|
+ console.log(res);
|
|
|
|
+ that.bottomadd = res
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ } else {
|
|
|
|
+ console.log(22222222);
|
|
|
|
+ uni.navigateTo({
|
|
|
|
+ url: '/pageB/recipientinfo?id=' + that.bottomadd.id,
|
|
|
|
+ events: {
|
|
|
|
+ bottomadd: function(res) {
|
|
|
|
+ console.log(res);
|
|
|
|
+ that.bottomadd = res
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ }
|
|
},
|
|
},
|
|
close() {
|
|
close() {
|
|
this.logshow = false
|
|
this.logshow = false
|
|
@@ -512,9 +555,10 @@
|
|
</script>
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
<style lang="scss" scoped>
|
|
- button{
|
|
|
|
- border:0rpx solid rgba(0, 0, 0, 1) !important;
|
|
|
|
|
|
+ button {
|
|
|
|
+ border: 0rpx solid rgba(0, 0, 0, 1) !important;
|
|
}
|
|
}
|
|
|
|
+
|
|
page {
|
|
page {
|
|
background-color: rgba(0, 0, 0, 0)
|
|
background-color: rgba(0, 0, 0, 0)
|
|
}
|
|
}
|