浏览代码

fix

master
王露 3 年前
父节点
当前提交
18950e2ace
共有 1 个文件被更改,包括 4 次插入1 次删除
  1. 4
    1
      digital-park-web/digital-park/src/views/park-enterprises/components/OtherInfo.vue

+ 4
- 1
digital-park-web/digital-park/src/views/park-enterprises/components/OtherInfo.vue 查看文件

@@ -14,6 +14,7 @@
:resize="isEditing ? 'vertical' : ' none'"
type="textarea"
maxlength="200"
rows="4"
v-model="companyInfo.enterpriseAdvantage"
></el-input>
<span v-else>--</span>
@@ -28,6 +29,7 @@
:resize="isEditing ? 'vertical' : ' none'"
type="textarea"
maxlength="200"
rows="4"
v-model="companyInfo.enterpriseCulture"
></el-input>
<span v-else>--</span>
@@ -85,6 +87,7 @@
type="textarea"
v-model="companyInfo.otherInfo"
maxlength="200"
rows="4"
></el-input>
<span v-else>--</span>
</div>
@@ -153,7 +156,7 @@ export default {
//生命周期 - 创建完成(可以访问当前this实例)
created() {
this.uploadFileList = this.companyInfo.enterpriseFeatures
? JSON.parse(this.companyInfo.enterpriseFeatures)
? this.companyInfo.enterpriseFeatures
: [];
if (this.companyInfo.enterpriseFeatures) {
this.uploadFileList.forEach(item => {

正在加载...
取消
保存