|
|
@ -51,10 +51,10 @@ |
|
|
|
<el-table-column fixed width="50" type="selection" align="center" /> |
|
|
|
<el-table-column fixed width="60" label="序号" type="index" :index="indexMethod" align="center" /> |
|
|
|
|
|
|
|
<el-table-column label="供应商编号" align="center" width="110"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-table-column label="供应商编号" prop="codeUnified" align="center" width="110"> |
|
|
|
<!-- <template slot-scope="scope"> |
|
|
|
<span class="bluezi" @click="toInfo(scope.row)">{{ scope.row.codeUnified }}</span> |
|
|
|
</template> |
|
|
|
</template>--> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column prop="name" label="供应商名称" align="center" /> |
|
|
|
<el-table-column prop="contacts" label="联系人" align="center" width="100" /> |
|
|
@ -271,6 +271,10 @@ |
|
|
|
}, |
|
|
|
filing() {}, |
|
|
|
toRelevancyInfo(row) { |
|
|
|
|
|
|
|
let sids = [] |
|
|
|
sids.push(row.sid) |
|
|
|
|
|
|
|
const tip = '请确认是否删除所选记录?' |
|
|
|
this.$confirm(tip, '提示', { |
|
|
|
confirmButtonText: '确定', |
|
|
@ -283,7 +287,10 @@ |
|
|
|
spinner: 'el-icon-loading', |
|
|
|
background: 'rgba(0, 0, 0, 0.7)' |
|
|
|
}) |
|
|
|
req.delBySids(row.sid).then((resp) => { |
|
|
|
|
|
|
|
console.log("sids",sids) |
|
|
|
|
|
|
|
req.delBySids(sids).then((resp) => { |
|
|
|
loading.close() |
|
|
|
if (resp.success) { |
|
|
|
this.$message({ |
|
|
|