advantage.vue 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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: 80vh;" class="txt_word" placeholderClass='concant' placeholder="写下你最擅长的事情,展示你的特别之处,分享你再工作中取得的成绩"></textarea>
  8. </view>
  9. <view class="button" @click="toteach">
  10. 保存
  11. </view>
  12. </view>
  13. </template>
  14. <script>
  15. import {
  16. resumeDetail
  17. } from "@/units/inquire.js"
  18. export default {
  19. data() {
  20. return {
  21. concant: '',
  22. }
  23. },
  24. onLoad() {
  25. this.resumeDetail()
  26. },
  27. methods: {
  28. toteach(){
  29. const eventChannel = this.getOpenerEventChannel();
  30. eventChannel.emit('todcp', this.concant);
  31. uni.navigateBack()
  32. },
  33. resumeDetail() {
  34. resumeDetail().then(res => {
  35. this.concant = res.data.personal_advantage
  36. })
  37. },
  38. }
  39. }
  40. </script>
  41. <style lang="scss">
  42. .page {
  43. padding: 28rpx 32rpx 0;
  44. .title {
  45. font-size: 36rpx;
  46. font-family: PingFangSC-Medium, PingFang SC;
  47. font-weight: 500;
  48. color: #222222;
  49. line-height: 50rpx;
  50. }
  51. .concant{
  52. font-size: 32rpx;
  53. font-family: PingFangSC-Regular, PingFang SC;
  54. font-weight: 400;
  55. color: #888888
  56. }
  57. }
  58. .button {
  59. width: 686rpx;
  60. height: 88rpx !important;
  61. background: #0C66C2;
  62. border-radius: 12rpx;
  63. font-size: 32rpx;
  64. font-family: PingFangSC-Medium, PingFang SC;
  65. font-weight: 500;
  66. color: #FFFFFF;
  67. line-height: 88rpx;
  68. margin: 10rpx 0 0rpx 0;
  69. display: flex;
  70. justify-content: center;
  71. position: fixed;
  72. bottom: 60rpx;
  73. }
  74. .setExample::after {
  75. content: '\A 1. \A 2. \A 3.';
  76. line-height: 50rpx;
  77. }
  78. .txt_word {
  79. word-wrap: break-word;
  80. white-space: pre-line
  81. }
  82. ::v-deep .u-textarea {
  83. padding-left: 0 !important;
  84. }
  85. </style>