worktion.vue 1.7 KB

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