排队支付小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
615 B

  1. <block wx:if="{{store.copyright||store.copyright_pic_url}}">
  2. <view class="flex-y-center flex-x-center flex-col" style="padding: 20rpx">
  3. <view wx:if="{{store.copyright_pic_url}}">
  4. <navigator url="{{store.copyright_url}}">
  5. <image src="{{store.copyright_pic_url}}" style="height: 60rpx;width: 240rpx" mode="aspectFit"></image>
  6. </navigator>
  7. </view>
  8. <view wx:if="{{store.copyright}}" style="color: rgba(0,0,0,.3);font-size: 9pt;">
  9. <navigator url="{{store.copyright_url}}">{{store.copyright}}</navigator>
  10. </view>
  11. </view>
  12. </block>