reasonPopup.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <template>
  2. <view class="">
  3. <u-popup
  4. :show="show"
  5. @close="$emit('close')"
  6. round="16rpx"
  7. @open="open"
  8. closeable
  9. closeOnClickOverlay
  10. >
  11. <view class="title"> {{ i18n.reasonApplication }} </view>
  12. <view class="radio-list">
  13. <u-radio-group
  14. v-model="value"
  15. @change="handleChange"
  16. iconPlacement="right"
  17. placement="column"
  18. >
  19. <view class="radio">
  20. <u-radio
  21. activeColor="red"
  22. :name="i18n.wrongShot"
  23. :label="i18n.wrongShot"
  24. ></u-radio>
  25. </view>
  26. <view class="radio">
  27. <u-radio
  28. activeColor="red"
  29. :name="i18n.pageDescription"
  30. :label="i18n.pageDescription"
  31. ></u-radio>
  32. </view>
  33. <view class="radio">
  34. <u-radio
  35. activeColor="red"
  36. :name="i18n.productDamage"
  37. :label="i18n.productDamage"
  38. ></u-radio>
  39. </view>
  40. <view class="radio">
  41. <u-radio
  42. activeColor="red"
  43. :name="i18n.incorrectly"
  44. :label="i18n.incorrectly"
  45. ></u-radio>
  46. </view>
  47. <view class="radio">
  48. <u-radio
  49. activeColor="red"
  50. :name="i18n.wrongItem"
  51. :label="i18n.wrongItem"
  52. ></u-radio>
  53. </view>
  54. <view class="radio">
  55. <u-radio
  56. activeColor="red"
  57. :name="i18n.otherReasons"
  58. :label="i18n.otherReasons"
  59. ></u-radio>
  60. </view>
  61. </u-radio-group>
  62. </view>
  63. </u-popup>
  64. </view>
  65. </template>
  66. <script>
  67. export default {
  68. props: {
  69. show: {
  70. typeof: Boolean,
  71. default: false,
  72. },
  73. },
  74. computed: {
  75. i18n() {
  76. return this.$t("index");
  77. },
  78. },
  79. data() {
  80. return {
  81. value: "",
  82. };
  83. },
  84. methods: {
  85. open() {},
  86. handleChange(name) {
  87. this.$emit("close", name);
  88. },
  89. },
  90. };
  91. </script>
  92. <style lang="scss" scoped>
  93. .title {
  94. text-align: center;
  95. font-size: 36rpx;
  96. color: #222;
  97. font-weight: 500;
  98. margin-top: 20rpx;
  99. }
  100. .radio-list {
  101. padding: 0 28rpx;
  102. margin-top: 40rpx;
  103. }
  104. .radio {
  105. margin-bottom: 48rpx;
  106. }
  107. </style>