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

74 lines
1.4 KiB

7 months ago
  1. <template>
  2. <view>
  3. <navbar
  4. title="快捷下单"
  5. leftClick
  6. @leftClick="$utils.navigateBack"
  7. />
  8. <view class="select-order">
  9. <view class="picture-order">
  10. <view class="picture-button" @click="$utils.redirectTo('/pages_order/order/pictureOrder')">
  11. <uv-icon name="camera-fill" size="45rpx" color="#ffffff"></uv-icon>
  12. <text>拍照下单</text>
  13. </view>
  14. </view>
  15. <view class="ovice-order">
  16. <view class="ovice-button" @click="$utils.redirectTo('/pages_order/order/voiceOrder')">
  17. <uv-icon name="mic" size="45rpx" color="#ffffff"></uv-icon>
  18. <text>语音下单</text>
  19. </view>
  20. </view>
  21. </view>
  22. <kefu/>
  23. </view>
  24. </template>
  25. <script>
  26. export default {
  27. data() {
  28. return {
  29. };
  30. }
  31. }
  32. </script>
  33. <style scoped lang="scss">
  34. .select-order{
  35. margin-top: 400rpx;
  36. width: 100%;
  37. height: 400rpx;
  38. .picture-order{
  39. height: 50%;
  40. display: flex;
  41. align-items: center;
  42. .picture-button{
  43. background-color: #DC2828;
  44. color: #ffffff;
  45. width: 85%;
  46. height: 130rpx;
  47. margin: auto;
  48. display: flex;
  49. align-items: center;
  50. justify-content: center;
  51. border-radius: 100rpx;
  52. }
  53. }
  54. .ovice-order{
  55. height: 50%;
  56. .ovice-button{
  57. color: #ffffff;
  58. background-color: #DC2828;
  59. width: 85%;
  60. height: 130rpx;
  61. margin: auto;
  62. display: flex;
  63. align-items: center;
  64. justify-content: center;
  65. border-radius: 100rpx;
  66. }
  67. }
  68. }
  69. </style>