|
|
@@ -136,6 +136,27 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
+ <!-- 物流附件 -->
|
|
|
+ <el-divider content-position="left">物流附件</el-divider>
|
|
|
+ <el-table :data="logisticsFileList" border style="width: 100%">
|
|
|
+ <el-table-column label="文件名称" align="center" prop="pfiFileName" show-overflow-tooltip />
|
|
|
+ <el-table-column label="操作" align="center" class-name="small-padding fixed-width" width='300' fixed="right" >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-button
|
|
|
+ size="mini"
|
|
|
+ type="text"
|
|
|
+ icon="el-icon-view"
|
|
|
+ @click="handleDownload(scope.row)"
|
|
|
+ >下载</el-button>
|
|
|
+ <el-button
|
|
|
+ size="mini"
|
|
|
+ type="text"
|
|
|
+ icon="el-icon-view"
|
|
|
+ @click="handlePreview(scope.row)"
|
|
|
+ >预览</el-button>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
<!-- 其他附件 -->
|
|
|
<el-divider content-position="left">其他附件</el-divider>
|
|
|
<el-table :data="otherFileList" border style="width: 100%">
|
|
|
@@ -238,6 +259,8 @@ export default {
|
|
|
contractFileList:[],
|
|
|
//发票附件
|
|
|
invoiceFileList:[],
|
|
|
+ //物流附件
|
|
|
+ logisticsFileList:[],
|
|
|
//其他文件
|
|
|
otherFileList:[],
|
|
|
//盖章文件
|
|
|
@@ -324,6 +347,8 @@ export default {
|
|
|
this.contractFileList = response.data.contractFileList;
|
|
|
//获取其他文件
|
|
|
this.otherFileList = response.data.otherFileList;
|
|
|
+ //获取物流附件
|
|
|
+ this.logisticsFileList = response.data.logisticsFileList;
|
|
|
}
|
|
|
});
|
|
|
},
|