|
@@ -45,11 +45,15 @@
|
|
<span>{{ scope.row.createdAt }}</span>
|
|
<span>{{ scope.row.createdAt }}</span>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
|
+ <!-- 合同附件 -->
|
|
<el-table-column align="center" label="合同附件" width="800" prop="attachments">
|
|
<el-table-column align="center" label="合同附件" width="800" prop="attachments">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<img width="100" height="100" v-for="item in scope.row.attachments" :key="item.id" :src="item" />
|
|
<img width="100" height="100" v-for="item in scope.row.attachments" :key="item.id" :src="item" />
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
|
+ <!-- 发票附件 -->
|
|
|
|
+ <!-- 贸易附件 -->
|
|
|
|
+
|
|
<el-table-column align="center" prop="created_at" label="操作" width="250">
|
|
<el-table-column align="center" prop="created_at" label="操作" width="250">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<el-tag type="primary" style="cursor: pointer; margin-right: 15px" @click="todetail(scope.row.id)">查看详情</el-tag>
|
|
<el-tag type="primary" style="cursor: pointer; margin-right: 15px" @click="todetail(scope.row.id)">查看详情</el-tag>
|
|
@@ -162,7 +166,6 @@
|
|
const {
|
|
const {
|
|
data
|
|
data
|
|
} = res;
|
|
} = res;
|
|
- console.log(data);
|
|
|
|
this.temporaryList = data.result;
|
|
this.temporaryList = data.result;
|
|
this.srcList = data.result;
|
|
this.srcList = data.result;
|
|
this.total = res.data.total;
|
|
this.total = res.data.total;
|