猫妈狗爸伴宠师小程序前端代码
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.

30 lines
662 B

3 months ago
3 months ago
3 months ago
  1. <template>
  2. <!-- <div>不接单日期</div> -->
  3. <view class="box box-size">
  4. <view class="top box-size level">
  5. <view>
  6. <view class="text">
  7. 添加不接单日期
  8. </view>
  9. 您不会再接收到选择日期内的订单
  10. </view>
  11. <view @click="toDetail" class="buttom level" :style="{borderRadius:'31rpx'}">
  12. 添加不接单日期
  13. </view>
  14. </view>
  15. <view class="buttom_ level" :style="{borderRadius:'41rpx'}">
  16. 保存
  17. </view>
  18. </view>
  19. </template>
  20. <script setup>
  21. const toDetail = () => {
  22. uni.navigateTo({
  23. url: '/otherPages/myOrdersManage/date/detail'
  24. });
  25. }
  26. </script>
  27. <style scoped lang="scss">
  28. @import "index";
  29. </style>