兼兼街公众号代码
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.

75 lines
1.3 KiB

  1. <template>
  2. <!-- <view class="btn-box transp">
  3. <view class="left-content">该页面部分功能需要关注公众号获取点击前往关注更有海量独家兼职信息每日放送</view>
  4. <view class="right-box">
  5. <view class="font-btn" @click="onclick">使用完整功能</view>
  6. <view class="font-btn-after"></view>
  7. </view>
  8. </view> -->
  9. </template>
  10. <script>
  11. export default{
  12. props:{
  13. },
  14. data(){
  15. return {
  16. }
  17. },
  18. methods:{
  19. onclick:() => {
  20. window.location = "https://mp.weixin.qq.com/mp/profile_ext?action=home&__biz=Mzg3NzkzMTg3NQ==#wechat_redirect"
  21. }
  22. }
  23. }
  24. </script>
  25. <style lang="scss" scoped>
  26. .transp{
  27. width: 100vw;
  28. height: 154rpx;
  29. z-index: 99999;
  30. box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  31. background-color: #000;
  32. display: flex;
  33. flex-wrap: wrap;
  34. }
  35. .left-content {
  36. color: #777;
  37. font-size: 26rpx;
  38. width: 480rpx;
  39. line-height: 30rpx;
  40. padding: 25rpx;
  41. }
  42. .right-box{
  43. color: #aaa;
  44. font-size: 30rpx;
  45. padding: 35rpx 0;
  46. width: 220rpx;
  47. }
  48. .font-btn-after {
  49. content: " ";
  50. width: 12rpx;
  51. height: 12rpx;
  52. border-bottom: 3rpx solid #aaa;
  53. border-right: 3rpx solid #aaa;
  54. transform: rotate(-45deg);
  55. position: absolute;
  56. right: 25rpx;
  57. top: 42rpx;
  58. }
  59. .btn-box {
  60. position: fixed;
  61. bottom: 0;
  62. left: 0;
  63. right: 0;
  64. }
  65. </style>