特易招,招聘小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

87 lines
1.3 KiB

6 months ago
4 months ago
6 months ago
4 months ago
6 months ago
4 months ago
6 months ago
4 months ago
6 months ago
  1. <template>
  2. <view class="page">
  3. <navbar
  4. title="兑换码"
  5. leftClick
  6. @leftClick="$utils.navigateBack"
  7. />
  8. <view class="input">
  9. <input type="text" v-model="form.title"
  10. placeholder="请输入兑换码"/>
  11. <view class="btn">
  12. 兑换
  13. </view>
  14. </view>
  15. <view class="list">
  16. <view class="item"
  17. v-for="(item, index) in 10"
  18. :key="index">
  19. <view class="title">
  20. 1.用户是否能通过兑换码
  21. </view>
  22. <view class="info">
  23. 兑换码仅能够
  24. </view>
  25. </view>
  26. </view>
  27. </view>
  28. </template>
  29. <script>
  30. export default {
  31. data() {
  32. return {
  33. form : {
  34. code : '',
  35. },
  36. }
  37. },
  38. methods: {
  39. },
  40. }
  41. </script>
  42. <style scoped lang="scss">
  43. .page{
  44. .input{
  45. display: flex;
  46. width: 690rpx;
  47. margin: 30rpx;
  48. margin-top: 80rpx;
  49. input{
  50. height: 50rpx;
  51. padding: 10rpx 20rpx;
  52. flex: 1;
  53. border: 1px solid $uni-color;
  54. border-radius: 15rpx;
  55. margin-right: 20rpx;
  56. background-color: #fff;
  57. }
  58. .btn{
  59. width: 100rpx;
  60. height: 70rpx;
  61. text-align: center;
  62. line-height: 70rpx;
  63. background-color: $uni-color;
  64. color: #fff;
  65. border-radius: 15rpx;
  66. }
  67. }
  68. .list{
  69. margin: 30rpx;
  70. .item{
  71. margin: 30rpx 0;
  72. .title{
  73. margin-bottom: 10rpx;
  74. }
  75. .info{
  76. color: #f40;
  77. }
  78. }
  79. }
  80. }
  81. </style>