|
@@ -113,8 +113,8 @@
|
|
|
</text>
|
|
|
</view>
|
|
|
<view class="a-b2">
|
|
|
- <image src="http://www.gzzzyd.com/groupon/order_details/微信@2x.png" mode="scaleToFill" />
|
|
|
- <image src="http://www.gzzzyd.com/groupon/order_details/电话键盘_填充@2x.png" mode="scaleToFill" />
|
|
|
+ <image src="http://www.gzzzyd.com/groupon/order_details/微信@2x.png" mode="scaleToFill" @click="openGroupWx(orderDetail.qrCode)"/>
|
|
|
+ <image src="http://www.gzzzyd.com/groupon/order_details/电话键盘_填充@2x.png" mode="scaleToFill" @click="callPhone(orderDetail.phone)"/>
|
|
|
</view>
|
|
|
</view>
|
|
|
</block>
|
|
@@ -300,6 +300,24 @@
|
|
|
<payment :payMode="payMode" :pay_close="pay_close" @onChangeFun="onChangeFun" :order_id="pay_order_id"
|
|
|
:totalPrice="totalPrice"></payment>
|
|
|
|
|
|
+
|
|
|
+ <uni-popup ref="popup" type="center">
|
|
|
+ <view class="block_3">
|
|
|
+ <image @click="closePopup"
|
|
|
+ class="icon_1"
|
|
|
+ referrerpolicy="no-referrer"
|
|
|
+ src="/static/images/X.png"
|
|
|
+ />
|
|
|
+ <image
|
|
|
+ class="image_3"
|
|
|
+ referrerpolicy="no-referrer"
|
|
|
+ :src="qrCode"
|
|
|
+ show-menu-by-longpress="true"
|
|
|
+ />
|
|
|
+ <text class="text_23">长按图片识别 “加团长微信”</text>
|
|
|
+ </view>
|
|
|
+ </uni-popup>
|
|
|
+
|
|
|
</view>
|
|
|
</template>
|
|
|
<script>
|
|
@@ -334,6 +352,7 @@ export default {
|
|
|
mixins: [colors],
|
|
|
data () {
|
|
|
return {
|
|
|
+ qrCode: '',
|
|
|
showWl: false,
|
|
|
wlNo: '',
|
|
|
pay_orderId: '',
|
|
@@ -394,6 +413,34 @@ export default {
|
|
|
})
|
|
|
},
|
|
|
methods: {
|
|
|
+ /**
|
|
|
+ * 打开团长微信
|
|
|
+ */
|
|
|
+ closePopup(){
|
|
|
+ this.$refs.popup.close()
|
|
|
+ },
|
|
|
+ /**
|
|
|
+ * 打开团长微信
|
|
|
+ */
|
|
|
+ openGroupWx(qrCode){
|
|
|
+ let that = this;
|
|
|
+ this.qrCode = qrCode;
|
|
|
+ if (!this.qrCode) {
|
|
|
+ return that.$util.Tips({
|
|
|
+ title: that.$t(`团长未设置微信号`)
|
|
|
+ });
|
|
|
+ }
|
|
|
+ this.$refs.popup.open()
|
|
|
+ },
|
|
|
+ /**
|
|
|
+ * 拨打电话
|
|
|
+ */
|
|
|
+ callPhone(phone){
|
|
|
+ uni.makePhoneCall({
|
|
|
+ phoneNumber: phone
|
|
|
+ })
|
|
|
+ },
|
|
|
+
|
|
|
/**
|
|
|
* 打开支付组件
|
|
|
*
|
|
@@ -1487,6 +1534,36 @@ export default {
|
|
|
}
|
|
|
|
|
|
|
|
|
+ .block_3 {
|
|
|
+ background-color: rgba(255, 255, 255, 1);
|
|
|
+ border-radius: 4px;
|
|
|
+ padding: 16rpx 16rpx 32rpx 24rpx;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ }
|
|
|
+
|
|
|
+ .icon_1 {
|
|
|
+ width: 32rpx;
|
|
|
+ height: 32rpx;
|
|
|
+ margin-left: 566rpx;
|
|
|
+ }
|
|
|
+
|
|
|
+ .image_3 {
|
|
|
+ width: 590rpx;
|
|
|
+ height: 766rpx;
|
|
|
+ margin: 16rpx 8rpx 0 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .text_23 {
|
|
|
+ overflow-wrap: break-word;
|
|
|
+ color: rgba(51, 51, 51, 1);
|
|
|
+ font-size: 28rpx;
|
|
|
+ font-weight: NaN;
|
|
|
+ text-align: center;
|
|
|
+ white-space: nowrap;
|
|
|
+ line-height: 40rpx;
|
|
|
+ margin: 24rpx 128rpx 0 122rpx;
|
|
|
+ }
|
|
|
|
|
|
|
|
|
</style>
|