Commit 3bfd9679 authored by youjie's avatar youjie

no message

parent 254268e3
......@@ -84,6 +84,7 @@
<el-table ref="multipleTable" :data="DataList" tooltip-effect="dark" style="width: 100%">
<el-table-column prop="Name" label="供应商名称"></el-table-column>
<el-table-column prop="GroundingTypeStr" label="分类"></el-table-column>
<el-table-column prop="Address" label="供应商地址"></el-table-column>
<el-table-column prop="LinkMan" label="供应商联系人"></el-table-column>
<el-table-column prop="LinkTel" label="供应商电话"></el-table-column>
......@@ -91,7 +92,6 @@
<el-table-column prop="FinanceMan" label="财务联系人"></el-table-column>
<el-table-column prop="FinanceTel" label="财务电话"></el-table-column>
<el-table-column prop="FinanceDuties" label="财务职务"></el-table-column>
<el-table-column prop="GroundingTypeStr" label="分类"></el-table-column>
<el-table-column prop="" label="合同">
<template slot-scope="scope">
<div v-if="verificationFile(scope.row.ContractUrl,3)" class="img-box">
......@@ -140,6 +140,12 @@
</el-table-column>
<el-table-column prop="" label="操作">
<template slot-scope="scope">
<el-tooltip class="item" effect="dark" content="账户管理" placement="top">
<el-button @click="AccountManage(scope.row)"
class="button" type="primary"
icon="el-icon-s-finance" circle>
</el-button>
</el-tooltip>
<el-button @click="Edit(scope.row)"
class="button" type="primary"
icon="el-icon-edit" circle>
......@@ -324,6 +330,13 @@
this.GetSelectList()
},
methods: {
//账户管理
AccountManage(row) {
this.$router.push({
name: "empBankAccount",
query: { id: row.Id, type: 11 ,blank:'y',tab:'供应商账号管理' }
});
},
addShow(){
this.titleName = '新增'
this.showVisible = 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