index.vue 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <template>
  2. <view class="app-container">
  3. <view class="title">兑换码</view>
  4. <input type="text" placeholder="请输入" class="input" placeholder-style="font-weight: 400; color: #999999" v-model="code" />
  5. <view class="button" @click="submitExchange()">立即兑换</view>
  6. <view class="text">注:您所兑换的兑换码,是您参与本平台的相关活动所获取的兑换码</view>
  7. <view class="link">
  8. <text @tap="toList()">历史兑换记录&gt;&gt;</text>
  9. </view>
  10. </view>
  11. </template>
  12. <script>
  13. export default {
  14. data() {
  15. return {
  16. code: '',
  17. }
  18. },
  19. methods: {
  20. submitExchange() {
  21. this.$axios({
  22. url: '/promotion/luck/draw/exchange',
  23. method: 'post',
  24. params: {
  25. code: this.code
  26. }
  27. }).then(res => {
  28. this.$successToast('兑换成功');
  29. setTimeout(() => {
  30. uni.navigateTo({
  31. url: '/pages/mine/exchange/detail?type=1&code=' + this.code
  32. })
  33. this.code = '';
  34. }, 1000)
  35. })
  36. },
  37. toList() {
  38. uni.navigateTo({
  39. url: '/pages/mine/exchange/list'
  40. })
  41. }
  42. }
  43. }
  44. </script>
  45. <style lang="scss">
  46. .app-container {
  47. display: flex;
  48. flex-direction: column;
  49. padding: 30rpx;
  50. box-sizing: border-box;
  51. .title {
  52. font-size: 32rpx;
  53. color: #999999;
  54. }
  55. .input {
  56. border: 1px solid #eaeaea;
  57. height: 80rpx;
  58. padding: 0 30rpx;
  59. text-align: center;
  60. font-size: 36rpx;
  61. margin-top: 12rpx;
  62. font-weight: 600;
  63. }
  64. .button {
  65. height: 69rpx;
  66. text-align: center;
  67. line-height: 69rpx;
  68. background: #fb5152;
  69. border-radius: 10rpx;
  70. font-size: 28rpx;
  71. color: #ffffff;
  72. margin-top: 60rpx;
  73. }
  74. .text {
  75. font-size: 24rpx;
  76. color: #666666;
  77. margin-top: 20rpx;
  78. }
  79. .link {
  80. text-align: right;
  81. margin-top: 10rpx;
  82. text {
  83. color: #fb5152;
  84. }
  85. }
  86. }
  87. </style>