aboutUsService.vue 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <template>
  2. <view class="aboutUsBox">
  3. <view class="aboutUsContent">
  4. <!--<view class="aboutUsTitle">
  5. 聚联诚集团服务协议
  6. </view>-->
  7. <view class="">
  8. <text>{{ configDataList.about_us_service }}</text>
  9. </view>
  10. </view>
  11. <view class="aboutUsBottom">
  12. <view class="aboutUsCopy">
  13. <view>Copyright @ 2011-2020 JULIANCHENG CREDIT</view>
  14. <view>ALL Rights Reserved</view>
  15. </view>
  16. </view>
  17. </view>
  18. </template>
  19. <script>
  20. export default {
  21. data() {
  22. return {
  23. configDataList: [], // 全局配置文件
  24. };
  25. },
  26. onLoad() {
  27. this.configData()
  28. },
  29. mounted() {
  30. },
  31. methods: {
  32. configData: async function() {
  33. let res = await this.$request.post('/api/SystemConfig/getSysteConfig');
  34. console.log(res);
  35. if (res.code == 200) {
  36. this.configDataList = res.data
  37. } else {
  38. uni.showToast({
  39. title: '错误信息',
  40. content: res.message,
  41. showCancel: false
  42. })
  43. }
  44. },
  45. }
  46. };
  47. </script>
  48. <style>
  49. .aboutUsBox {
  50. padding: 10rpx 30rpx 0 30rpx;
  51. background-color: #f9f9f9;
  52. width: 100vw;
  53. height: 100vh;
  54. color: #AAAAAA;
  55. }
  56. .aboutUsTitle {
  57. text-align: center;
  58. font-size: 30rpx;
  59. border-bottom: 1rpx solid #000;
  60. }
  61. .aboutUsContent {
  62. height: 90vh;
  63. overflow: auto;
  64. }
  65. .aboutUsBottom {
  66. width: 100%;
  67. position: fixed;
  68. bottom: 0;
  69. left: 0;
  70. }
  71. .aboutUsNav {
  72. display: flex;
  73. align-items: center;
  74. justify-content: center;
  75. }
  76. .aboutUsCopy {
  77. margin: 0 auto;
  78. padding-bottom: 30rpx;
  79. width: 500rpx;
  80. font-size: 20rpx;
  81. text-align: center;
  82. }
  83. .bottomNotice {
  84. color: #3180D5;
  85. }
  86. </style>