12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <template>
- <view class="page">
- <view class="title">
- 我的优势
- </view>
- <view class="" style="margin-top: 32rpx;">
- <textarea v-model="concant" style="width: 100%;height: 80vh;" class="txt_word" placeholderClass='concant' placeholder="写下你最擅长的事情,展示你的特别之处,分享你再工作中取得的成绩"></textarea>
- </view>
- <view class="button" @click="toteach">
- 保存
- </view>
- </view>
- </template>
- <script>
- import {
- resumeDetail
- } from "@/units/inquire.js"
- export default {
- data() {
- return {
- concant: '',
- }
- },
- onLoad() {
- this.resumeDetail()
- },
- methods: {
- toteach(){
- const eventChannel = this.getOpenerEventChannel();
- eventChannel.emit('todcp', this.concant);
- uni.navigateBack()
- },
- resumeDetail() {
- resumeDetail().then(res => {
- this.concant = res.data.personal_advantage
- })
- },
- }
- }
- </script>
- <style lang="scss">
- .page {
- padding: 28rpx 32rpx 0;
- .title {
- font-size: 36rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #222222;
- line-height: 50rpx;
- }
- .concant{
- font-size: 32rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #888888
- }
- }
- .button {
- width: 686rpx;
- height: 88rpx !important;
- background: #0C66C2;
- border-radius: 12rpx;
- font-size: 32rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #FFFFFF;
- line-height: 88rpx;
- margin: 10rpx 0 0rpx 0;
- display: flex;
- justify-content: center;
- position: fixed;
- bottom: 60rpx;
- }
- .setExample::after {
- content: '\A 1. \A 2. \A 3.';
- line-height: 50rpx;
- }
- .txt_word {
- word-wrap: break-word;
- white-space: pre-line
- }
- ::v-deep .u-textarea {
- padding-left: 0 !important;
- }
- </style>
|