refusePopup.vue 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <template>
  2. <view class="popup">
  3. <u-popup
  4. :show="show"
  5. @close="$emit('close')"
  6. :safeAreaInsetBottom="false"
  7. mode="center"
  8. round="10"
  9. >
  10. <view class="popup-content">
  11. <view class="title"> {{ i18n.reasonForRefusal }} </view>
  12. <view class="_textarea">
  13. <u--textarea
  14. v-model="value2"
  15. height="108"
  16. maxlength="200"
  17. :placeholder="i18n.pleaseEnterReason"
  18. count
  19. ></u--textarea>
  20. </view>
  21. <button class="btn-1" @click="$emit('refund', 2, value2)">
  22. {{ i18n.submitTo }}
  23. </button>
  24. <view class="cancel" @click="$emit('close')"> {{ i18n.Cancel }} </view>
  25. </view>
  26. </u-popup>
  27. </view>
  28. </template>
  29. <script>
  30. export default {
  31. props: {
  32. show: {
  33. typeof: Boolean,
  34. default: false,
  35. },
  36. },
  37. watch: {
  38. show(newVal) {
  39. if (!newVal) {
  40. this.value2 = "";
  41. }
  42. },
  43. },
  44. computed: {
  45. i18n() {
  46. return this.$t("index");
  47. },
  48. },
  49. data() {
  50. return {
  51. value2: "",
  52. };
  53. },
  54. methods: {
  55. close() {},
  56. },
  57. };
  58. </script>
  59. <style scoped lang="scss">
  60. .popup-content {
  61. padding: 36rpx 28rpx;
  62. .title {
  63. font-size: 32rpx;
  64. color: #333;
  65. font-weight: 600;
  66. text-align: center;
  67. margin-bottom: 28rpx;
  68. }
  69. ._textarea {
  70. width: 534rpx;
  71. height: 216rpx;
  72. }
  73. .btn-1 {
  74. background-color: #f83224;
  75. color: #fff;
  76. margin-top: 40rpx;
  77. border-radius: 38rpx;
  78. }
  79. .cancel {
  80. text-align: center;
  81. margin-top: 28rpx;
  82. font-size: 28rpx;
  83. color: rgba(51, 51, 51, 0.6);
  84. }
  85. }
  86. </style>