about-us.vue 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <template>
  2. <view class="about-box">
  3. <en-nav title="关于我们" :title-color="'#333'" ></en-nav>
  4. <view class="about-data">
  5. <image class="about-img" src="/static/img/common/logo-black.png" mode="aspectFill"></image>
  6. <view class="about-title sys-color-black sys-weight-600">
  7. ICOCO是为了人们摆脱自己单身的生活 而去结交 认识他人的过程一个网络交友平台
  8. </view>
  9. <view class="about-item">
  10. <view class="item-title sys-color-black sys-height-44">当前版本</view>
  11. <view class="item-text sys-color-black-black sys-height-44 sys-weight-600">5.6.00 !</view>
  12. </view>
  13. <view class="about-item">
  14. <view class="item-title sys-color-black sys-height-44">ICOCO官网</view>
  15. <view class="item-text sys-color-black sys-height-44 sys-weight-600">http://www.gmuapp.cn/</view>
  16. </view>
  17. <view class="about-item">
  18. <view class="item-title sys-color-black sys-height-44">客服电话</view>
  19. <view class="item-text sys-color-black sys-height-44 sys-weight-600">4008255900</view>
  20. </view>
  21. <view class="about-item">
  22. <view class="item-title sys-color-black sys-height-44">商务合作</view>
  23. <view class="item-text sys-color-black sys-height-44 sys-weight-600">business @ itsgmu.com</view>
  24. </view>
  25. <view class="about-item">
  26. <view class="item-title sys-color-black sys-height-44">版权所有</view>
  27. <view class="item-text sys-color-black sys-height-44">湖南高佳网络信息有限公司</view>
  28. <view class="item-text sys-color-black sys-height-44 sys-weight-600">Copyright</view>
  29. <view class="item-text sys-color-black sys-height-44 sys-weight-600">Hunan Gaojia Network Infomation Co., Ltd</view>
  30. </view>
  31. </view>
  32. </view>
  33. </template>
  34. <script>
  35. import EnNav from "@/components/en-utils/en-nav/en-nav";
  36. export default {
  37. components: {EnNav},
  38. data() {
  39. return {
  40. }
  41. },
  42. methods: {
  43. }
  44. }
  45. </script>
  46. <style scoped lang="scss">
  47. .about-data{
  48. padding:80rpx 60rpx;
  49. .about-img{
  50. width: 124rpx;
  51. height: 124rpx;
  52. border-radius:24rpx ;
  53. }
  54. .about-title{
  55. margin-top: 16rpx;
  56. font-size: 28rpx;
  57. padding-bottom: 32rpx;
  58. }
  59. .about-item{
  60. margin-top: 48rpx;
  61. .item-title{
  62. font-size: 30rpx;
  63. }
  64. .item-text{
  65. margin-top: 12rpx;
  66. font-size: 28rpx;
  67. }
  68. }
  69. }
  70. </style>