123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- <template>
- <div class="fixedText" :class="{VarTextV2: headerTitleType === 'Head2'}">
- <div class="content">
- <div class="title" :class="{fontWeight: pageDate && pageDate.status > 20}">
- {{ name }}:
- </div>
- <div class="value">
- <el-input
- v-if="pageDate.status < 20"
- v-model="textValue"
- type="textarea"
- :placeholder="headerTitleType === 'Head2' ? `请针对${headerTitle}进行分析` : '请输入'"
- show-word-limit
- />
- <span
- v-if="pageDate.status > 10 && textValue"
- style="display: inline-block;line-height: 1.65; background-color: #f7f7f7; padding: 10px; border-radius: 5px;"
- v-html="textValue.replace(/\n/g, '<br />')"
- />
- </div>
- </div>
- </div>
- </template>
- <script>
- import { mapState } from 'vuex'
- import _ from 'lodash'
- export default {
- name: 'VarText',
- props: {
- title: {
- type: String,
- required: false,
- default: () => ''
- },
- headerTitle: {
- type: String,
- required: false,
- default: () => ''
- },
- headerTitleType: {
- type: String,
- required: false,
- default: () => ''
- },
- name: {
- type: String,
- required: false,
- default: () => ''
- },
- value: {
- type: String,
- required: false,
- default: () => ''
- }
- },
- data() {
- this.upData = _.debounce(this.upData, 800)
- return {
- textValue: ''
- }
- },
- computed: {
- ...mapState('monthlyReportEdit', ['pageType', 'pageDate'])
- // pageType() {
- // return this.$store.state.monthlyReportEditV2.pageType
- // },
- // pageDate() {
- // return this.$store.state.monthlyReportEditV2.pageDate
- // }
- },
- watch: {
- value(val) {
- this.textValue = val
- },
- textValue(val) {
- this.upData()
- }
- },
- mounted() {
- this.textValue = this.value
- },
- methods: {
- upData() {
- this.$emit('input', this.textValue)
- }
- }
- }
- </script>
- <style scoped lang="less">
- .fixedText {
- //margin-top: 10px;
- padding-top: 10px;
- .top-title {
- width: 100%;
- display: flex;
- &-content {
- flex: 1;
- padding: 10px 0;
- }
- .handle-box {
- flex: none;
- width: 50px;
- text-align: right;
- }
- }
- .content {
- width: 100%;
- display: flex;
- .title {
- //padding: 9px 0;
- flex: none;
- //font-weight: 600;
- color: #333;
- width: 50px;
- }
- .value {
- flex: 1;
- }
- }
- }
- .VarTextV2 {
- padding-top: 10px;
- margin-top: 5px;
- margin-bottom: 15px;
- //.content{
- // .title{
- // font-weight: 400;
- // }
- //}
- }
- .fontWeight {
- font-weight: 600;
- }
- </style>
|