description.vue 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <template>
  2. <view class="page">
  3. <view class="title">
  4. 项目描述
  5. </view>
  6. <view class="" style="margin-top: 32rpx;">
  7. <textarea v-model="concant" style="width: 100%;" class="txt_word" placeholderClass='concant' placeholder="描述此项目,展示你的项目经验立刻打动招聘方~\n\n\n例如\n1.项目背景 \n2.项目目标 \n3.项目概述"></textarea>
  8. </view>
  9. <view class="button" @click="toteach">
  10. 保存
  11. </view>
  12. </view>
  13. </template>
  14. <script>
  15. import {
  16. } from "@/units/inquire.js"
  17. export default {
  18. data() {
  19. return {
  20. concant: '',
  21. }
  22. },
  23. onLoad() {
  24. },
  25. methods: {
  26. toteach(){
  27. uni.navigateBack()
  28. }
  29. }
  30. }
  31. </script>
  32. <style lang="scss">
  33. .page {
  34. padding: 28rpx 32rpx 0;
  35. .title {
  36. font-size: 36rpx;
  37. font-family: PingFangSC-Medium, PingFang SC;
  38. font-weight: 500;
  39. color: #222222;
  40. line-height: 50rpx;
  41. }
  42. .concant{
  43. font-size: 32rpx;
  44. font-family: PingFangSC-Regular, PingFang SC;
  45. font-weight: 400;
  46. color: #888888
  47. }
  48. }
  49. .button {
  50. width: 686rpx;
  51. height: 88rpx !important;
  52. background: #0C66C2;
  53. border-radius: 12rpx;
  54. font-size: 32rpx;
  55. font-family: PingFangSC-Medium, PingFang SC;
  56. font-weight: 500;
  57. color: #FFFFFF;
  58. line-height: 88rpx;
  59. margin: 10rpx 0 0rpx 0;
  60. display: flex;
  61. justify-content: center;
  62. position: fixed;
  63. bottom: 60rpx;
  64. }
  65. .setExample::after {
  66. content: '\A 1. \A 2. \A 3.';
  67. line-height: 50rpx;
  68. }
  69. .txt_word {
  70. word-wrap: break-word;
  71. white-space: pre-line
  72. }
  73. ::v-deep .u-textarea {
  74. padding-left: 0 !important;
  75. }
  76. </style>