worktion.vue 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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: 70vh;" class="txt_word" placeholderClass='concant'
  8. placeholder="简述工作背景、曾负责的工作内容、客服过的内容、取得的工作成果.~\n\n\n具体工作为\n1.负责*** \n2.参与*** \n3.完成***"></textarea>
  9. </view>
  10. <view class="button" @click="toteach">
  11. 保存
  12. </view>
  13. </view>
  14. </template>
  15. <script>
  16. import {
  17. } from "@/units/inquire.js"
  18. export default {
  19. data() {
  20. return {
  21. concant: '',
  22. }
  23. },
  24. onLoad(options) {
  25. console.log(options);
  26. if (options.concent) {
  27. this.concant = options.concent
  28. }
  29. },
  30. methods: {
  31. toteach(){
  32. const eventChannel = this.getOpenerEventChannel();
  33. eventChannel.emit('todcp', this.concant);
  34. uni.navigateBack()
  35. }
  36. }
  37. }
  38. </script>
  39. <style lang="scss">
  40. .page {
  41. padding: 28rpx 32rpx 0;
  42. .title {
  43. font-size: 36rpx;
  44. font-family: PingFangSC-Medium, PingFang SC;
  45. font-weight: 500;
  46. color: #222222;
  47. line-height: 50rpx;
  48. }
  49. .concant {
  50. font-size: 32rpx;
  51. font-family: PingFangSC-Regular, PingFang SC;
  52. font-weight: 400;
  53. color: #888888
  54. }
  55. }
  56. .button {
  57. width: 686rpx;
  58. height: 88rpx !important;
  59. background: #0C66C2;
  60. border-radius: 12rpx;
  61. font-size: 32rpx;
  62. font-family: PingFangSC-Medium, PingFang SC;
  63. font-weight: 500;
  64. color: #FFFFFF;
  65. line-height: 88rpx;
  66. margin: 10rpx 0 0rpx 0;
  67. display: flex;
  68. justify-content: center;
  69. position: fixed;
  70. bottom: 60rpx;
  71. }
  72. .setExample::after {
  73. content: '\A 1. \A 2. \A 3.';
  74. line-height: 50rpx;
  75. }
  76. .txt_word {
  77. word-wrap: break-word;
  78. white-space: pre-line
  79. }
  80. ::v-deep .u-textarea {
  81. padding-left: 0 !important;
  82. }
  83. </style>