agreePop.vue 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <template>
  2. <view>
  3. <u-popup :show="show" @close="$emit('close')" mode="center" round="10">
  4. <view class="content">
  5. <text>{{ title }}</text>
  6. <u--input
  7. v-if="title == '是否确认退款'"
  8. placeholder="请输入退款金额"
  9. border="surround"
  10. type="number"
  11. v-model="value"
  12. ></u--input>
  13. <view class="btn-list">
  14. <button class="btn-1" @click="$emit('close')">取消</button>
  15. <button class="btn-2" @click="$emit('refund', 1, value)">确认</button>
  16. </view>
  17. </view>
  18. </u-popup>
  19. </view>
  20. </template>
  21. <script>
  22. export default {
  23. props: {
  24. show: {
  25. typeof: Boolean,
  26. default: false,
  27. },
  28. title: {
  29. typeof: String,
  30. default: "",
  31. },
  32. },
  33. data() {
  34. return { value: "" };
  35. },
  36. };
  37. </script>
  38. <style lang="scss" scoped>
  39. .content {
  40. width: 494rpx;
  41. padding: 56rpx 0;
  42. text-align: center;
  43. .btn-list {
  44. display: flex;
  45. margin-top: 52rpx;
  46. justify-content: space-around;
  47. .btn-1 {
  48. margin: 0;
  49. padding: 0;
  50. font-size: 32rpx;
  51. color: #f83224;
  52. border-radius: 38rpx;
  53. border: 2rpx solid #f83224;
  54. background-color: #fff;
  55. padding: 0 60rpx;
  56. }
  57. .btn-2 {
  58. margin: 0;
  59. padding: 0;
  60. font-size: 32rpx;
  61. color: #fff;
  62. border-radius: 38rpx;
  63. border: 2rpx solid #f83224;
  64. background-color: #f83224;
  65. padding: 0 60rpx;
  66. }
  67. }
  68. }
  69. </style>