建材商城系统20241014
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.

96 lines
1.9 KiB

  1. <template>
  2. <view class="hand-top">
  3. <navbar
  4. title="快捷下单"
  5. leftClick
  6. @leftClick="$utils.navigateBack"
  7. />
  8. <view class="picture-top">
  9. <view class="left-icon"></view>
  10. <text>拍照下单</text>
  11. </view>
  12. <view class="picture-upload">
  13. <view class="upload-content">
  14. <uv-icon name="camera-fill" color="#D03F25" size="200"></uv-icon>
  15. </view>
  16. <view class="text-upload">
  17. <text>(拍照上传你所需要识别的产品图片)</text>
  18. </view>
  19. </view>
  20. <view class="fast-order">
  21. <view class="picture-button" @click="$utils.redirectTo('/pages_order/order/firmOrder')">
  22. <text>快捷下单</text>
  23. </view>
  24. </view>
  25. </view>
  26. </template>
  27. <script>
  28. export default {
  29. data() {
  30. return {
  31. };
  32. }
  33. }
  34. </script>
  35. <style lang="scss">
  36. .hand-top{
  37. background-color: #ffffff;
  38. .picture-top{
  39. color: #333333;
  40. height: 100rpx;
  41. display: flex;
  42. align-items: center;
  43. background-color: #ffffff;
  44. .left-icon{
  45. background-color: #D03F25;
  46. display: inline-block;
  47. width: 10rpx;
  48. height: 30rpx;
  49. border-radius: 100rpx;
  50. margin-left: 50rpx;
  51. margin-right: 20rpx;
  52. padding-bottom: 5rpx;
  53. }
  54. }
  55. .picture-upload{
  56. background-color: #ffffff;
  57. height: 550rpx;
  58. .upload-content{
  59. width: 680rpx;
  60. height: 400rpx;
  61. background-color: #ffffff;
  62. background-color: #F4F4F4;
  63. margin: auto;
  64. margin-top: 50rpx;
  65. border-radius: 20rpx;
  66. display: flex;
  67. align-items: center;
  68. justify-content: center;
  69. margin-top: 60rpx;
  70. }
  71. .text-upload{
  72. height: 100rpx;
  73. text-align: center;
  74. line-height: 100rpx;
  75. color: #666666;
  76. }
  77. }
  78. .fast-order{
  79. .picture-button{
  80. color: #ffffff;
  81. background-color: #DC2828;
  82. width: 85%;
  83. height: 100rpx;
  84. margin: auto;
  85. display: flex;
  86. align-items: center;
  87. justify-content: center;
  88. border-radius: 100rpx;
  89. }
  90. }
  91. }
  92. </style>