特易招,招聘小程序
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.

90 lines
1.6 KiB

  1. <template>
  2. <!-- 技工问题 -->
  3. <view class="page">
  4. <navbar title="意见反馈" leftClick @leftClick="$utils.navigateBack" />
  5. <view class="page-two">
  6. <view class="headline">反馈内容</view>
  7. <view class="text-field">
  8. <uv-textarea v-model="feedback" placeholder="请简要描述您的问题和意见,以使我们提供更好的帮助" height="400rpx" maxlength="600"
  9. count="true" />
  10. </view>
  11. <view class="relation">
  12. <view>如有疑问请联系客服</view>
  13. <view style="color: #4280FD;">4008-678-918</view>
  14. </view>
  15. <view class="bottom">
  16. <view class="submit">
  17. 提交
  18. </view>
  19. </view>
  20. </view>
  21. </view>
  22. </template>
  23. <script>
  24. export default {
  25. data() {
  26. return {
  27. feedback: ""
  28. }
  29. },
  30. onShow() {},
  31. methods: {
  32. }
  33. }
  34. </script>
  35. <style scoped lang="less">
  36. .page {
  37. background-color: #fff;
  38. height: 100vh;
  39. .page-two {
  40. width: 90%;
  41. margin-left: 5%;
  42. }
  43. .headline {
  44. padding: 40rpx 0;
  45. font-size: 36rpx;
  46. font-weight: 600;
  47. color: #333;
  48. }
  49. .text-field {
  50. /deep/ .uv-textarea {
  51. background-color: #F6F6F6;
  52. }
  53. }
  54. .relation {
  55. display: flex;
  56. justify-content: center;
  57. margin-top: 40rpx;
  58. padding: 30rpx 0;
  59. font-size: 24rpx;
  60. background-color: #F6F6F6;
  61. border-radius: 8rpx;
  62. }
  63. .bottom {
  64. position: fixed;
  65. width: 90%;
  66. bottom: 40rpx;
  67. display: flex;
  68. justify-content: center;
  69. text-align: center;
  70. .submit {
  71. width: 90%;
  72. color: #fff;
  73. border-radius: 45rpx;
  74. font-size: 28rpx;
  75. background-color: #3796F8;
  76. padding: 25rpx 0;
  77. }
  78. }
  79. }
  80. </style>