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

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