my-fapiao.vue 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390
  1. <template>
  2. <view class="web_box">
  3. <u-navbar title="邀请好友" leftIconColor="#000" :safeAreaInsetTop='true' :placeholder='true'>
  4. <view class="navbar-left" slot="left">
  5. <view class="u-flex">
  6. <u-icon name="arrow-left" size="20" @click='return1'></u-icon>
  7. <u-icon name="list" @click="showmenu = !showmenu" size="18"></u-icon>
  8. </view>
  9. <view class="navbar-popup" v-if="showmenu">
  10. <view class="popup-item u-flex" @click="tochangeimg('hxr')">
  11. <text>候选人</text>
  12. </view>
  13. <view class="popup-item u-flex" @click="tochangeimg('hr')">
  14. <text>HR</text>
  15. </view>
  16. <view class="popup-item u-flex" @click="tochangeimg('lt')">
  17. <text>猎头</text>
  18. </view>
  19. </view>
  20. </view>
  21. </u-navbar>
  22. <view class="vflex acenter jcenter top">
  23. <view class="title">邀请好友加入内核</view>
  24. <view class="subtitle">你与好友均可获得超值奖励</view>
  25. </view>
  26. <view class="box vflex acenter">
  27. <image src="../static/images/logo.png" mode="" class="logo"></image>
  28. <view class="title">内核招聘</view>
  29. <view class="subtitle">邀请你注册内核招聘,完成注册可获得超值奖励</view>
  30. <image :src="invite_img" mode="" class="code-img"></image>
  31. <view class="code-text vflex acenter">
  32. <view class="hflex acenter jcenter">
  33. <view class="text">邀请码</view>
  34. <view class="text">{{data.invitation_code}}</view>
  35. </view>
  36. <view class="copy" @click="copy">复制邀请码</view>
  37. </view>
  38. </view>
  39. <view class="bottom hflex acenter jbetween">
  40. <view class="save" @click="setimg">保存图片</view>
  41. <button class="invite" open-type="share">马上邀请好友</button>
  42. </view>
  43. <view class="list hflex acenter jcenter" @click="tolist">
  44. <view>已邀请<span style="color: #0C66C2;">{{num || 0}}</span>人</view>
  45. <u-icon name="arrow-rightward" color="rgba(68,68,68,.4)" size="14"></u-icon>
  46. </view>
  47. <view class="" style="height: 40rpx;"></view>
  48. <canvas-drawer ref="poster" :width="646" :height="842"></canvas-drawer>
  49. </view>
  50. </template>
  51. <script>
  52. import CanvasDrawer from "@/components/xinyu-canvas-drawer/index.vue";
  53. import {
  54. index,
  55. invite_list
  56. } from "@/units/inquire.js"
  57. export default {
  58. data() {
  59. return {
  60. code: '',
  61. num: 0,
  62. list: [],
  63. money: 0,
  64. data: {},
  65. isCanvasLoading: false,
  66. src: '',
  67. invite_img: '',
  68. invite_type: 'hxr',
  69. showmenu: false
  70. };
  71. },
  72. components: {
  73. CanvasDrawer
  74. },
  75. onLoad() {
  76. this.getuser()
  77. this.getlist()
  78. },
  79. onShareAppMessage() {
  80. return {
  81. path: '',
  82. // imageUrl: this.data.invitation_code,
  83. title: '内核招聘'
  84. }
  85. },
  86. async mounted() {
  87. },
  88. methods: {
  89. return1() {
  90. uni.navigateBack()
  91. },
  92. tochangeimg(type) {
  93. if (type == 'hxr') {
  94. this.$set(this, 'invite_img', this.data.invitation_code_url)
  95. } else if (type == 'hr') {
  96. this.$set(this, 'invite_img', this.data.invitation_code_url_hr)
  97. } else if (type == 'lt') {
  98. this.$set(this, 'invite_img', this.data.invitation_code_url_headhunter)
  99. }
  100. this.showmenu = false
  101. },
  102. // aaa() {
  103. // res.data // 接口返回数据
  104. // res.data.forEach(item => {
  105. // province.forEach(a => {
  106. // if (item.areaBelongsProvince == a.value) {
  107. // item.city = a.label
  108. // }
  109. // })
  110. // this.list.push(item) //需要渲染的列表
  111. // })
  112. // }
  113. getuser() {
  114. index().then((res) => {
  115. // this.code = res.data.invitation_code
  116. this.data = res.data
  117. // this.money = res.data.statistic_data.invite_commission
  118. this.invite_img = res.data.invitation_code_url
  119. })
  120. },
  121. getlist() {
  122. invite_list({
  123. page: 1
  124. }).then((res) => {
  125. this.list = res.data.data
  126. this.num = res.data.total
  127. })
  128. },
  129. copy() {
  130. uni.setClipboardData({
  131. data: this.code,
  132. success: function() {
  133. this.$u.toasta('复制成功')
  134. }
  135. })
  136. },
  137. async setimg() {
  138. let posterRef = this.$refs.poster;
  139. uni.showLoading({
  140. title: "渲染海报中"
  141. });
  142. await posterRef.init();
  143. this.src = await posterRef
  144. .setBackgroundColor("#fff") //指定渲染图片的背景色
  145. // .addRect(0, 0, 750, 198, "#FEFEFE") //绘制矩形
  146. .addImage(require("@/static/images/logo.png"), 268, 48, 107,
  147. 107) //绘制圆图片,如果不绘制圆图片最后一个参数可以不传或传false,当最后一个参数为true时圆形的直径为w,h参数将没有意义
  148. // .addQRCode(, 585, 22, 130, 130) //绘制二维码(不要太长否则会扫不出来)
  149. .addText("内核招聘", 252, 208, 36, "#222222") //绘制文本
  150. .addText("邀请你注册内核招聘,完成注册可获得超值奖励", 92, 282, 22, "#555555") //绘制文本
  151. .addImage(this.invite_img, 218, 370, 210, 210) //绘制云端图片时第一个参数直接传云端图片地址即可,不需要require。注意不要跨域
  152. .addRect(50, 646, 546, 112, "#F3F3F3")
  153. .addText("邀请码", 150, 678, 36, "#222222")
  154. .addText("|", 306, 678, 36, "#E0E0E0")
  155. .addText(this.data.invitation_code, 354, 678, 36, "#222222")
  156. .draw();
  157. this.isCanvasLoading = true;
  158. this.save()
  159. uni.hideLoading();
  160. this.$forceUpdate();
  161. },
  162. save() {
  163. if (!this.isCanvasLoading)
  164. return this.$u.toast("稍安勿躁,图片还没有加载完哦~");
  165. let posterRef = this.$refs.poster;
  166. posterRef.saveImageToPhotosAlbum(this.src).then(() => {
  167. uni.showModal({
  168. title: '提示',
  169. content: '保存成功',
  170. success(res) {
  171. if (res.confirm) {
  172. // return recv();
  173. } else if (res.cancel) {
  174. // return recj();
  175. }
  176. }
  177. });
  178. }).catch((e) => {
  179. uni.showModal({
  180. title: '提示',
  181. content: '保存失败',
  182. success(res) {
  183. if (res.confirm) {
  184. // return recv();
  185. } else if (res.cancel) {
  186. // return recj();
  187. }
  188. }
  189. });
  190. });
  191. },
  192. tolist() {
  193. uni.navigateTo({
  194. url: '/pagesD/invite-list?money=' + this.money
  195. })
  196. },
  197. }
  198. }
  199. </script>
  200. <style lang="scss">
  201. .navbar-left {
  202. position: relative;
  203. z-index: 100;
  204. .navbar-popup {
  205. position: absolute;
  206. width: 224rpx;
  207. top: 50rpx;
  208. left: -32rpx;
  209. background: #FFFFFF;
  210. box-shadow: 0rpx 2rpx 16rpx 0rpx rgba(0, 0, 0, 0.1);
  211. border-radius: 20rpx;
  212. padding: 15rpx 0;
  213. .popup-item {
  214. padding: 15rpx 24rpx;
  215. image {
  216. width: 32rpx;
  217. height: 32rpx;
  218. margin-right: 12rpx;
  219. }
  220. text {
  221. font-size: 24rpx;
  222. font-family: PingFangSC-Regular, PingFang SC;
  223. font-weight: 400;
  224. color: #222222;
  225. }
  226. }
  227. }
  228. .navbar-popup::after {
  229. content: " ";
  230. border-bottom: 20rpx solid #fff;
  231. border-right: 20rpx solid rgba(0, 0, 0, 0);
  232. border-left: 20rpx solid rgba(0, 0, 0, 0);
  233. position: absolute;
  234. top: -20rpx;
  235. left: 30rpx;
  236. }
  237. }
  238. .web_box {
  239. background: #FAFAFC;
  240. padding: 0 52rpx;
  241. .top {
  242. padding: 54rpx 0;
  243. .title {
  244. font-size: 48rpx;
  245. font-family: PingFangSC-Medium, PingFang SC;
  246. font-weight: 500;
  247. color: #141414;
  248. }
  249. .subtitle {
  250. font-size: 28rpx;
  251. font-family: PingFangSC-Regular, PingFang SC;
  252. font-weight: 400;
  253. color: #444444;
  254. padding: 16rpx 0 0;
  255. }
  256. }
  257. .box {
  258. width: 646rpx;
  259. height: 872rpx;
  260. background: #FFFFFF;
  261. box-shadow: 0rpx 4rpx 68rpx 0rpx rgba(0, 0, 0, 0.1);
  262. border-radius: 20rpx;
  263. position: relative;
  264. .logo {
  265. width: 107rpx;
  266. height: 107rpx;
  267. margin: 0 auto;
  268. z-index: 9;
  269. }
  270. .title {
  271. font-size: 36rpx;
  272. font-family: PingFangSC, PingFang SC;
  273. font-weight: 500;
  274. color: #222222;
  275. padding: 54rpx 0 24rpx;
  276. }
  277. .subtitle {
  278. font-size: 22rpx;
  279. font-family: PingFangSC, PingFang SC;
  280. font-weight: 400;
  281. color: #555555;
  282. padding: 0 0 56rpx;
  283. }
  284. .code-img {
  285. width: 210rpx;
  286. height: 210rpx;
  287. margin-bottom: 66rpx;
  288. }
  289. .code-text {
  290. width: 546rpx;
  291. background: #F3F3F3;
  292. border-radius: 20rpx;
  293. padding: 32rpx 0;
  294. .text {
  295. font-size: 36rpx;
  296. font-family: PingFangSC, PingFang SC;
  297. font-weight: 500;
  298. color: #222222;
  299. padding: 0 48rpx 0 0;
  300. }
  301. .text:nth-child(2) {
  302. padding: 0 0 0 48rpx;
  303. border-left: 1px solid #E0E0E0;
  304. }
  305. .copy {
  306. padding: 32rpx 0 0;
  307. font-size: 24rpx;
  308. font-family: PingFangSC, PingFang SC;
  309. font-weight: 400;
  310. color: #0C66C2;
  311. }
  312. }
  313. }
  314. .box::before {
  315. content: "";
  316. position: absolute;
  317. width: 110rpx;
  318. height: 110rpx;
  319. background: #fff;
  320. top: -40rpx;
  321. left: 268rpx;
  322. border-radius: 50%;
  323. }
  324. .bottom {
  325. padding: 28rpx 0 60rpx;
  326. .save {
  327. width: 244rpx;
  328. height: 112rpx;
  329. background: #E7E7E7;
  330. border-radius: 56rpx;
  331. font-size: 32rpx;
  332. font-family: PingFangSC, PingFang SC;
  333. font-weight: 400;
  334. color: #333333;
  335. padding: 0;
  336. line-height: 112rpx;
  337. text-align: center;
  338. }
  339. .invite {
  340. width: 364rpx;
  341. height: 112rpx;
  342. background: #0C66C2;
  343. border-radius: 56rpx;
  344. font-size: 32rpx;
  345. font-family: PingFangSC, PingFang SC;
  346. font-weight: 400;
  347. color: #FFFFFF;
  348. padding: 0;
  349. line-height: 112rpx;
  350. }
  351. }
  352. .list {
  353. font-size: 24rpx;
  354. font-family: PingFangSC, PingFang SC;
  355. font-weight: 400;
  356. color: rgba(51, 51, 51, 0.6);
  357. padding: 0 12rpx 0 0;
  358. }
  359. }
  360. </style>