Commit 260f64f1 authored by 张伯涛's avatar 张伯涛

修改

parent 769d7e2f
......@@ -1256,7 +1256,7 @@
<div id="bond" class="step-header">
<div class="step-label">担保信息</div>
<div class="step-header--right">
<el-button v-if="form.TZXX.ISSFYBZJ === '1'&& $route.query.type !== 'checkDetails'" type="primary" @click="addBZJXX()">新增担保信息</el-button>
<el-button v-if="form.TZXX.ISSFYBZJ === '1' && $route.query.type !== 'checkDetails'" type="primary" @click="addBZJXX()">新增担保信息</el-button>
</div>
</div>
<div>
......@@ -1318,7 +1318,7 @@
<div id="guarantee" class="step-header">
<div class="step-label">担保信息</div>
<div class="step-header--right">
<el-button type="primary" @click="addDBXX()">新增担保信息</el-button>
<el-button v-if="$route.query.type !== 'checkDetails'" type="primary" @click="addDBXX()">新增担保信息</el-button>
</div>
</div>
<div />
......
......@@ -104,7 +104,11 @@
<el-table :row-style="tableRowStyle" :data="deptData" border>
<el-table-column label="序号" type="index" width="55" />
<el-table-column label="原合同ID" prop="FROMID" :show-overflow-tooltip="true" />
<el-table-column label="合同中文名称" prop="CONNAMECN" :show-overflow-tooltip="true" />
<el-table-column label="合同中文名称" prop="CONNAMECN" :show-overflow-tooltip="true">
<template slot-scope="{ row }">
<el-link type="primary" @click.stop="checkDetail(row)">{{ row.CONNAMECN }}</el-link>
</template>
</el-table-column>
<el-table-column label="合同编码" prop="CONCODE" :show-overflow-tooltip="true" />
<el-table-column label="项目编码" prop="PROJNUMBER" :show-overflow-tooltip="true" />
<el-table-column label="项目名称" prop="PROJNAME" :show-overflow-tooltip="true" />
......@@ -154,7 +158,11 @@
<el-table :row-style="tableRowStyle" :data="allData" border>
<el-table-column label="序号" type="index" width="55" />
<el-table-column label="原合同ID" prop="FROMID" :show-overflow-tooltip="true" />
<el-table-column label="合同中文名称" prop="CONNAMECN" :show-overflow-tooltip="true" />
<el-table-column label="合同中文名称" prop="CONNAMECN" :show-overflow-tooltip="true">
<template slot-scope="{ row }">
<el-link type="primary" @click.stop="checkDetail(row)">{{ row.CONNAMECN }}</el-link>
</template>
</el-table-column>
<el-table-column label="合同编码" prop="CONCODE" :show-overflow-tooltip="true" />
<el-table-column label="项目编码" prop="PROJNUMBER" :show-overflow-tooltip="true" />
<el-table-column label="项目名称" prop="PROJNAME" :show-overflow-tooltip="true" />
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment