invite.vue 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290
  1. <template>
  2. <view>
  3. <u-mask :show="show" z-index="10000">
  4. <view class="warp">
  5. <view class="rect" @tap.stop>
  6. <!-- 关闭按钮 -->
  7. <view class="guanbiBox">
  8. <image src="../../static/images/origin/guanbi.png" class="guanbi" mode="" @click="showcos"></image>
  9. </view>
  10. <!-- 内容 -->
  11. <view>
  12. <image src="../../static/images/origin/banyuan.png" style="width: 100%;height: 44rpx;" mode=""></image>
  13. </view>
  14. <view style="padding: 30rpx;">
  15. <!-- 个人信息 -->
  16. <view class="user">
  17. <view>
  18. <image :src="listitem.headImage" style="width: 90rpx;height: 90rpx;border-radius: 50%;" mode=""></image>
  19. </view>
  20. <view style="margin-left: 20rpx;">
  21. <p style="margin-top: 5rpx; font-size: 28rpx;">{{ listitem.name }}</p>
  22. <p style="margin-top: 10rpx; font-size: 20rpx; color: #9A9A9A;">{{ listitem.extensionReason }}</p>
  23. </view>
  24. <view
  25. v-if="listitem.invitationCode"
  26. style="color: #C5AA7B;font-size: 24rpx;flex: 1; text-align: right;line-height: 90rpx;"
  27. >
  28. 邀请码:{{ listitem.invitationCode }}
  29. </view>
  30. </view>
  31. <!-- 图片宣传 -->
  32. <view class="flex-items-plus">
  33. <image :src="listitem.image" style="width: 450upx;height:450upx" mode=""></image>
  34. </view>
  35. <view style="display: flex;margin-top: 40upx;">
  36. <view style="flex: 1;line-height: 40rpx;">
  37. <p style="color: #343434;font-size: 24rpx;">点击二维码保存到本地长按识别小程序</p>
  38. <p style="color: #666666;font-size: 22rpx;">来自「shop商城」小程序</p>
  39. </view>
  40. <view v-if="listitem.ifLogo" style="margin-left: 60rpx;">
  41. <!-- <image src="../../static/images/origin/morentouxiang.png" style="width: 118rpx;height: 118rpx;" mode=""></image> -->
  42. <view class="qrimg-i" @click="saveQrcode">
  43. <TkiQrcode
  44. ref="qrcode2" cid="qrcode2" :val="erweima" :size="size"
  45. :onval="onval" :load-make="loadMake"
  46. :using-components="true"
  47. />
  48. </view>
  49. </view>
  50. </view>
  51. </view>
  52. </view>
  53. </view>
  54. <!-- 分享 -->
  55. <view class="fenx">
  56. <view class="shareBox">
  57. <button open-type="share">
  58. <view style="flex: 1;text-align: center;display: flex;" @click="WXfenx">
  59. <view style="margin-left: 120rpx;">
  60. <image src="../../static/images/origin/weixin2xx.png" mode=""></image>
  61. </view>
  62. <view style="margin-left: 10rpx;font-size: 28rpx;color: #333333">分享到微信</view>
  63. </view>
  64. </button>
  65. </view>
  66. <!-- <view class="share"> -->
  67. <!-- <button open-type="share"> -->
  68. <!-- <image :src="item.icon" mode='heightFix' @click="share_action"></image> -->
  69. <!-- <text>分享</text> -->
  70. <!-- </button> -->
  71. <!-- </view> -->
  72. <view class="linkBtnBox" @click="FZlianj">
  73. <view class="linkBox">
  74. <image src="../../static/images/origin/lianjie.png" mode=""></image>
  75. </view>
  76. <view style="margin-left: 10rpx;">
  77. 复制链接
  78. </view>
  79. </view>
  80. </view>
  81. </u-mask>
  82. </view>
  83. </template>
  84. <script>
  85. const NET = require('../../utils/request')
  86. const API = require('../../config/api')
  87. import tkiQrcode from '@/components/tki-qrcode/tki-qrcode.vue'
  88. export default {
  89. components: { TkiQrcode: tkiQrcode },
  90. data() {
  91. return {
  92. size: 110, // 二维码大小
  93. onval: true, // val值变化时自动重新生成二维码
  94. loadMake: true, // 组件加载完成后自动生成二维码
  95. erweima: '',
  96. show: true,
  97. item: {},
  98. listitem: {},
  99. FindSalesPromQuery: {
  100. type: 2,
  101. tenantCode: ''
  102. },
  103. shopId: 0,
  104. distributorId: 0
  105. }
  106. },
  107. onLoad(item) {
  108. this.item = JSON.parse(item.tenantCode)
  109. this.shopId = item.shopId
  110. this.distributorId = item.distributorId
  111. this.erweima = '/pages_category_page1/store/index?storeId=' + this.shopId,
  112. this.getFindSalesPromConfig()
  113. },
  114. methods: {
  115. getFindSalesPromConfig() {
  116. NET.request(API.FindSalesPromConfig, {
  117. shopId: this.shopId,
  118. title: '邀请下级',
  119. distributorId: this.distributorId
  120. }, 'GET').then((res) => {
  121. this.listitem = res.data
  122. })
  123. .catch((res) => {
  124. })
  125. },
  126. showcos() {
  127. uni.navigateBack({
  128. delta: 1
  129. })
  130. },
  131. WXfenx() {
  132. },
  133. FZlianj() {
  134. // API.shareLink + '/h5/#/pages/store/index?storeId='+this.shopId+'&salesId='+this.salesId
  135. uni.setClipboardData({
  136. data: API.shareLink + '/#/pages_category_page1/store/index?storeId=' + this.shopId,
  137. success: (res) => {
  138. uni.showToast({
  139. title: '复制成功',
  140. icon: 'none',
  141. duration: 2000// 时间
  142. })
  143. }
  144. })
  145. },
  146. // 分享到朋友圈
  147. onShareTimeline(options) {
  148. const that = this
  149. const data = {
  150. title: '', // 默认是小程序的名称
  151. path: '/pages_category_page1/store/index?storeId=' + this.shopId,
  152. imageUrl: '', // 图片封面,本地文件路径、网络图片路,支持PNG及JPG,默认当前页面截图,显示图片长宽比是 5:4。
  153. success: (res) => {
  154. // 分享成功
  155. if (res.errMsg == 'shareAppMessage:ok') { }
  156. },
  157. fail: (res) => {
  158. // 用户取消
  159. if (res.errMsg == 'shareAppMessage:fail cancel') { }
  160. // 分享失败
  161. if (res.errMsg == 'shareAppMessage:fail') { }
  162. },
  163. complete: (res) => { }
  164. }
  165. return data
  166. },
  167. // 分享给好友
  168. onShareAppMessage(options) {
  169. var that = this
  170. // 设置菜单中的转发按钮触发转发事件时的转发内容
  171. var shareObj = {
  172. title: '', // 默认是小程序的名称(可以写slogan等)
  173. desc: '', // 小程序的描述
  174. path: '/pages_category_page1/store/index?storeId=' + this.shopId, // 默认是当前页面,必须是以‘/’开头的完整路径
  175. imageUrl: '', // 图片封面,本地文件路径、网络图片路,支持PNG及JPG,默认当前页面截图,显示图片长宽比是 5:4。
  176. success(res) {
  177. // 转发成功之后的回调
  178. if (res.errMsg == 'shareAppMessage:ok') {
  179. }
  180. },
  181. fail() {
  182. // 转发失败之后的回调
  183. if (res.errMsg == 'shareAppMessage:fail cancel') {
  184. // 用户取消转发
  185. } else if (res.errMsg == 'shareAppMessage:fail') {
  186. // 转发失败,其中 detail message 为详细失败信息
  187. }
  188. },
  189. complete() {
  190. // 转发结束之后的回调(转发成不成功都会执行)
  191. }
  192. }
  193. // 来自页面内的按钮的转发
  194. if (options.from == 'button') {
  195. var eData = options.target.dataset
  196. // 此处可以修改 shareObj 中的内容
  197. shareObj.path = '/pages_category_page1/store/index?storeId=' + this.shopId
  198. }
  199. // 返回shareObj
  200. return shareObj
  201. },
  202. saveQrcode() {
  203. this.$refs.qrcode._saveCode()
  204. }
  205. }
  206. }
  207. </script>
  208. <style lang="scss" scoped>
  209. .guanbiBox {
  210. padding: 30upx 20upx;
  211. }
  212. .warp {
  213. display: flex;
  214. align-items: center;
  215. justify-content: center;
  216. height: 100%;
  217. }
  218. .qrimg-i {
  219. margin-right: 10px;
  220. }
  221. .guanbi {
  222. width: 46rpx;
  223. height: 46rpx;
  224. position: absolute;
  225. top: -100rpx;
  226. left: 50%;
  227. margin-left: -23rpx;
  228. }
  229. .rect {
  230. width: 75%;
  231. height: 65%;
  232. background-color: #fff;
  233. position: relative;
  234. .user {
  235. display: flex;
  236. }
  237. }
  238. .fenx {
  239. position: fixed;
  240. bottom: 118rpx;
  241. z-index: 10001;
  242. background-color: #F7F7F7;
  243. width: 100%;
  244. height: 98rpx;
  245. display: flex;
  246. color: #343434;
  247. view {
  248. line-height: 98rpx;
  249. }
  250. image {
  251. width: 50rpx;
  252. height: 50rpx;
  253. display: inline-block;
  254. margin-top: 25rpx;
  255. }
  256. }
  257. .linkBtnBox {
  258. flex: 1;
  259. text-align: center;
  260. display: flex;
  261. .linkBox {
  262. margin-left: 70rpx;
  263. }
  264. }
  265. // #ifdef H5
  266. .fenx {
  267. display: none;
  268. }
  269. // #endif
  270. </style>