青蛙卖大米小程序2024-11-24
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.

70 lines
1.2 KiB

5 months ago
  1. <template>
  2. <view class="page">
  3. <navbar title="公司介绍" leftClick @leftClick="$utils.navigateBack" />
  4. <view class="box">
  5. <view class="box-imgs">
  6. <view>
  7. <view class="box-img">
  8. <view>公司介绍</view>
  9. </view>
  10. </view>
  11. <view>
  12. <view class="box-img">
  13. <view>公司介绍</view>
  14. </view>
  15. </view>
  16. <view>
  17. <view class="box-img">
  18. <view>公司介绍</view>
  19. </view>
  20. </view>
  21. </view>
  22. </view>
  23. </view>
  24. </template>
  25. <script>
  26. export default {
  27. data() {
  28. return {
  29. }
  30. },
  31. computed: {},
  32. methods: {}
  33. }
  34. </script>
  35. <style scoped lang="scss">
  36. .page {
  37. height: 100Vh;
  38. background-color: #F3F3F3;
  39. .box {
  40. margin: 20rpx;
  41. .box-imgs {
  42. display: flex;
  43. justify-content: space-between;
  44. .box-img{
  45. display: flex;
  46. width: 220rpx;
  47. height: 400rpx;
  48. background-size: 100% 100%;
  49. background-image: url(../../static/image/home/9.png);
  50. justify-content: center;
  51. align-items: center;
  52. border-radius: 20rpx;
  53. overflow: hidden;
  54. view{
  55. color: #fff;
  56. margin-top: 200rpx;
  57. padding: 10rpx 20rpx;
  58. background-color: #A3D250;
  59. border-radius: 30rpx;
  60. }
  61. }
  62. }
  63. }
  64. }
  65. </style>