promotion.vue 7.6 KB

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