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.

popup-official-car-issue-hint.vue 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <!-- 公务车发行 - 无结果弹窗 -->
  2. <template>
  3. <view class="main">
  4. <view class="hint">未检测到车辆订单信息,是否前往特质卡申请进行新增单位?</view>
  5. <view class="btns as-layout-horizontal">
  6. <view class="btn-grey" @click="emit('cancel')">取消</view>
  7. <view class="btn-green" @click="emit('confirm')">确定</view>
  8. </view>
  9. </view>
  10. </template>
  11. <script setup lang="ts">
  12. const emit = defineEmits(["cancel","confirm"])
  13. </script>
  14. <style lang="scss" scoped>
  15. .main{
  16. width: 530rpx;
  17. background-color: white;
  18. padding: 56rpx 45rpx 40rpx;
  19. border-radius: 20rpx;
  20. .hint{
  21. font-size: 32rpx;
  22. color: #333333;
  23. line-height: 50rpx;
  24. letter-spacing: 2rpx;
  25. }
  26. .btns{
  27. margin: 40rpx 20rpx 0rpx;
  28. justify-content: space-between;
  29. .btn-grey{
  30. border-radius: 40rpx;
  31. width: 188rpx;
  32. height: 80rpx;
  33. line-height: 80rpx;
  34. background-color: #F7F7F7;
  35. border: 1rpx solid #DCDCDC;
  36. font-size: 32rpx;
  37. color: #333333;
  38. text-align: center;
  39. }
  40. .btn-green{
  41. border-radius: 40rpx;
  42. width: 188rpx;
  43. height: 80rpx;
  44. line-height: 80rpx;
  45. background-color: #00B38B;
  46. font-size: 32rpx;
  47. color: #ffffff;
  48. text-align: center;
  49. }
  50. }
  51. }
  52. </style>