dengjibiao.vue 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <template>
  2. <view>
  3. <view style="text-align: center;">
  4. <image :src="registration" mode="widthFix" style="width: 690rpx;"></image>
  5. </view>
  6. <view class="" style="width: 270rpx;
  7. height: 72rpx;
  8. background: linear-gradient(270deg, #A890FE 0%, #FFAEAE 100%);border-radius: 40rpx;font-size: 30rpx;color: #fff;line-height: 72rpx;text-align: center;margin: 42rpx auto 0;" @click="copy(link)">
  9. 复制链接
  10. </view>
  11. <view class="" style="text-align: center;font-size: 24rpx;color: #8B8B8B;">
  12. 复制链接后请至浏览器中下载会员登记表
  13. </view>
  14. </view>
  15. </template>
  16. <script>
  17. export default {
  18. onLoad() {
  19. this.getInfo()
  20. },
  21. data() {
  22. return {
  23. registration:'',
  24. link:''
  25. }
  26. },
  27. methods: {
  28. copy(str) {
  29. uni.setClipboardData({
  30. data: str
  31. })
  32. },
  33. getInfo(){
  34. uni.$u.http.post('/api/Publics/config_info').then(res => {
  35. if(res.code==1){
  36. this.registration=res.data.registration
  37. this.link=res.data.regist_file
  38. }
  39. })
  40. }
  41. }
  42. }
  43. </script>
  44. <style>
  45. page{
  46. padding: 30rpx 0;
  47. }
  48. </style>