description.vue 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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%;height: 90vh;" 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(options) {
  24. if(options.description){
  25. this.concant = options.description
  26. }
  27. },
  28. methods: {
  29. toteach(){
  30. const eventChannel = this.getOpenerEventChannel();
  31. eventChannel.emit('todcp', this.concant);
  32. uni.navigateBack()
  33. }
  34. }
  35. }
  36. </script>
  37. <style lang="scss">
  38. .page {
  39. padding: 28rpx 32rpx 0;
  40. .title {
  41. font-size: 36rpx;
  42. font-family: PingFangSC-Medium, PingFang SC;
  43. font-weight: 500;
  44. color: #222222;
  45. line-height: 50rpx;
  46. }
  47. .concant{
  48. font-size: 32rpx;
  49. font-family: PingFangSC-Regular, PingFang SC;
  50. font-weight: 400;
  51. color: #888888
  52. }
  53. }
  54. .button {
  55. width: 686rpx;
  56. height: 88rpx !important;
  57. background: #0C66C2;
  58. border-radius: 12rpx;
  59. font-size: 32rpx;
  60. font-family: PingFangSC-Medium, PingFang SC;
  61. font-weight: 500;
  62. color: #FFFFFF;
  63. line-height: 88rpx;
  64. margin: 10rpx 0 0rpx 0;
  65. display: flex;
  66. justify-content: center;
  67. position: fixed;
  68. bottom: 60rpx;
  69. }
  70. .setExample::after {
  71. content: '\A 1. \A 2. \A 3.';
  72. line-height: 50rpx;
  73. }
  74. .txt_word {
  75. word-wrap: break-word;
  76. white-space: pre-line
  77. }
  78. ::v-deep .u-textarea {
  79. padding-left: 0 !important;
  80. }
  81. </style>