瀏覽代碼

fix

master
王露 2 年之前
父節點
當前提交
83de10aa80
共有 1 個檔案被更改,包括 6 行新增6 行删除
  1. 6
    6
      digital-park-web/digital-park/src/views/park-enterprises/components/OtherInfo.vue

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

@@ -8,8 +8,9 @@
<tr>
<td class="table_title">企业优势:</td>
<td class="content">
<span v-if="!companyInfo.enterpriseAdvantage && !isEditing">--</span>
<el-input
v-if="companyInfo.enterpriseAdvantage"
v-else
:disabled="!isEditing"
:resize="isEditing ? 'vertical' : ' none'"
type="textarea"
@@ -17,14 +18,14 @@
rows="4"
v-model="companyInfo.enterpriseAdvantage"
></el-input>
<span v-else>--</span>
</td>
</tr>
<tr>
<td class="table_title">企业文化:</td>
<td class="content">
<span v-if="!companyInfo.enterpriseCulture && !isEditing">--</span>
<el-input
v-if="companyInfo.enterpriseCulture"
v-else
:disabled="!isEditing"
:resize="isEditing ? 'vertical' : ' none'"
type="textarea"
@@ -32,7 +33,6 @@
rows="4"
v-model="companyInfo.enterpriseCulture"
></el-input>
<span v-else>--</span>
</td>
</tr>
<tr>
@@ -80,8 +80,9 @@
<td class="table_title">其他信息:</td>
<td class="content">
<div>
<span v-if="!companyInfo.otherInfo && !isEditing">--</span>
<el-input
v-if="companyInfo.otherInfo"
v-else
:disabled="!isEditing"
:resize="isEditing ? 'vertical' : ' none'"
type="textarea"
@@ -89,7 +90,6 @@
maxlength="200"
rows="4"
></el-input>
<span v-else>--</span>
</div>
</td>
</tr>

Loading…
取消
儲存