gonglue.vue 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <template>
  2. <view class="index">
  3. <image src="https://xiangqin.zhousi.hdlkeji.com/main/gonglue.png" mode="" style="width: 750rpx;height: 1624rpx;position: absolute;top: 0;left: 0;right: 0;z-index: -1;"></image>
  4. <view class="title">
  5. 入会攻略
  6. </view>
  7. <view class="content">
  8. <rich-text :nodes="introduction_to"></rich-text>
  9. </view>
  10. </view>
  11. </template>
  12. <script>
  13. export default {
  14. onLoad() {
  15. this.getInfo()
  16. },
  17. data() {
  18. return {
  19. introduction_to:''
  20. }
  21. },
  22. methods: {
  23. getInfo(){
  24. uni.$u.http.post('/api/Publics/config_info').then(res => {
  25. if(res.code==1){
  26. this.introduction_to=res.data.introduction_to
  27. }
  28. })
  29. }
  30. }
  31. }
  32. </script>
  33. <style lang="scss">
  34. .index{
  35. position: relative;
  36. .title{
  37. padding-left: 70rpx;
  38. font-weight: 600;
  39. font-size: 80rpx;
  40. font-family: hzgb;
  41. color: #555555;
  42. line-height: 68px;
  43. background: linear-gradient(270deg, #B093F7 0%, #EFA9BE 100%);
  44. -webkit-background-clip: text;
  45. -webkit-text-fill-color: transparent;
  46. }
  47. .content{
  48. padding: 20rpx;
  49. margin: 40rpx auto 0;
  50. width: 690rpx;
  51. height: 1228rpx;
  52. background: #FFFFFF;
  53. border-radius: 40rpx;
  54. }
  55. }
  56. </style>