agreePop.vue 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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="i18n.pleaseAmount"
  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')">
  15. {{ i18n.Cancel }}
  16. </button>
  17. <button class="btn-2" @click="$emit('refund', 1, value)">
  18. {{ i18n.enter }}
  19. </button>
  20. </view>
  21. </view>
  22. </u-popup>
  23. </view>
  24. </template>
  25. <script>
  26. export default {
  27. props: {
  28. show: {
  29. typeof: Boolean,
  30. default: false,
  31. },
  32. title: {
  33. typeof: String,
  34. default: "",
  35. },
  36. },
  37. computed: {
  38. i18n() {
  39. return this.$t("index");
  40. },
  41. },
  42. data() {
  43. return { value: "" };
  44. },
  45. };
  46. </script>
  47. <style lang="scss" scoped>
  48. .content {
  49. width: 494rpx;
  50. padding: 56rpx 0;
  51. text-align: center;
  52. .btn-list {
  53. display: flex;
  54. margin-top: 52rpx;
  55. justify-content: space-around;
  56. .btn-1 {
  57. margin: 0;
  58. padding: 0;
  59. font-size: 32rpx;
  60. color: #f83224;
  61. border-radius: 38rpx;
  62. border: 2rpx solid #f83224;
  63. background-color: #fff;
  64. padding: 0 60rpx;
  65. }
  66. .btn-2 {
  67. margin: 0;
  68. padding: 0;
  69. font-size: 32rpx;
  70. color: #fff;
  71. border-radius: 38rpx;
  72. border: 2rpx solid #f83224;
  73. background-color: #f83224;
  74. padding: 0 60rpx;
  75. }
  76. }
  77. }
  78. </style>