index.vue 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <template>
  2. <view class="page">
  3. <view class="banner">
  4. <img src="../../static/imgs/concat.png" />
  5. </view>
  6. <view class="box">
  7. <view class="tit">合作与咨询</view>
  8. <view class="txt">
  9. 请于工作日的08:30至17:30期间来电咨询我们的产品和服务。
  10. </view>
  11. <view class="btn">
  12. <img src="../../static/imgs/call.png" />0551-68992527
  13. </view>
  14. </view>
  15. <view class="box">
  16. <view class="tit">演示与在线试用</view>
  17. <view class="txt">
  18. 我们将适时与您取得联系,并为您量身打造适合企业需求的专项演示方案。
  19. </view>
  20. <view class="btn">
  21. 立即申请
  22. </view>
  23. </view>
  24. <tabbar :tabbarIndex="2"></tabbar>
  25. </view>
  26. </template>
  27. <script>
  28. import * as echarts from "echarts";
  29. import aqiData from '@/static/js/aqi-beijing.js'
  30. export default {
  31. data() {
  32. return {
  33. testData: [],
  34. testOption: null,
  35. kxData: [],
  36. kxOption: null,
  37. kxData2: [],
  38. kxOption2: null
  39. }
  40. },
  41. mounted() {
  42. this.init();
  43. },
  44. methods: {
  45. init() {
  46. },
  47. }
  48. }
  49. </script>
  50. <style scoped lang="less">
  51. .page {
  52. background-color: #E8ECF2;
  53. height: 100vh;
  54. box-sizing: border-box;
  55. }
  56. .banner {
  57. img {
  58. width: 100%;
  59. }
  60. }
  61. .box {
  62. width: calc(100% - 48rpx);
  63. margin: 0 auto;
  64. background-color: #fff;
  65. padding: 36rpx 0;
  66. border-radius: 12rpx;
  67. margin-bottom: 40rpx;
  68. .tit {
  69. font-size: 32rpx;
  70. color: #111;
  71. padding-left: 30rpx;
  72. font-weight: bold;
  73. position: relative;
  74. line-height: 45rpx;
  75. &:before {
  76. content: "";
  77. display: block;
  78. width: 12rpx;
  79. height: 24rpx;
  80. background-color: #1460CA;
  81. position: absolute;
  82. top: 11rpx;
  83. left: 0;
  84. }
  85. }
  86. .txt {
  87. margin: 7rpx 0 20rpx;
  88. line-height: 44rpx;
  89. color: #666;
  90. font-size: 28rpx;
  91. padding: 0 30rpx;
  92. }
  93. .btn {
  94. width: 318rpx;
  95. height: 68rpx;
  96. line-height: 68rpx;
  97. color: #fff;
  98. background-color: #1460CA;
  99. text-align: center;
  100. border-radius: 8rpx;
  101. margin-left: 30rpx;
  102. img{
  103. width: 28rpx;
  104. height: 28rpx;
  105. margin-right: 20rpx;
  106. }
  107. }
  108. }
  109. </style>