铝交易,微信公众号
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.

100 lines
2.2 KiB

4 months ago
4 months ago
  1. <template>
  2. <view class="page">
  3. <view class="frame">
  4. <!--顶部导航栏-->
  5. <topbar showRight="0"></topbar>
  6. <!--内容区域-->
  7. <view class="content">
  8. <view class="bigImg">
  9. <!--换成后端后删除对应的图片-->
  10. <img src="../../static/image/clearanceService.png" alt="" style="width: 100%;height: 100%;">
  11. </view>
  12. <view class="smallImg">
  13. <!--换成后端后删除对应的图片-->
  14. <img src="../../static/image/1.png" alt="" style="width: 100%;height: 100%;">
  15. </view>
  16. <view class="ljsq">
  17. <span @click="applyClearanceService" class="text">
  18. {{ $t('components.applyNow') }}&nbsp;&nbsp;>>
  19. </span>
  20. </view>
  21. </view>
  22. </view>
  23. <!--底部导航栏-->
  24. <tabber select="2"/>
  25. </view>
  26. </template>
  27. <script>
  28. import topbar from "@/components/base/topbar.vue";
  29. import tabber from "@/components/base/tabbar.vue";
  30. export default {
  31. name: "clearanceService",
  32. components: {tabber, topbar},
  33. data() {
  34. return {}
  35. },
  36. methods: {
  37. applyClearanceService(){
  38. uni.navigateTo({
  39. url: `/pages_order/auth/customsClearApply`
  40. })
  41. },
  42. },
  43. }
  44. </script>
  45. <style scoped lang="scss">
  46. .page {
  47. .frame {
  48. .content {
  49. height: calc(100vh - 120rpx - 120rpx);
  50. background-color: #2d384c;
  51. width: 100vw;
  52. .bigImg {
  53. display: flex;
  54. justify-content: center;
  55. align-items: center;
  56. height: 90%;
  57. padding: 20rpx;
  58. }
  59. .smallImg {
  60. position: absolute;
  61. left: calc(50% - 80rpx);
  62. bottom: 350rpx;
  63. width: 160rpx;
  64. height: 160rpx;
  65. }
  66. .ljsq{
  67. display: flex;
  68. align-items: center;
  69. justify-content: center;
  70. width: 300rpx;
  71. height: 70rpx;
  72. border-radius: 40rpx;
  73. color: #FFF;
  74. font-size: 28rpx;
  75. margin: 20rpx 10rpx 0 0;
  76. background: #FFF;
  77. border-radius: 40rpx;
  78. position: absolute;
  79. left: calc(50% - 150rpx);
  80. bottom: 550rpx;
  81. .text{
  82. color: #000;
  83. font-size: 38rpx;
  84. }
  85. }
  86. }
  87. }
  88. }
  89. </style>