|
|
|
@ -182,8 +182,8 @@ |
|
|
|
|
<el-table-column prop="contractMoney" label="合同金额" align="center"> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column label="操作" align="center"> |
|
|
|
|
<template> |
|
|
|
|
<el-button type="text">查看</el-button> |
|
|
|
|
<template slot-scope="scope"> |
|
|
|
|
<el-button type="text" @click="showContract(scope.row)">查看</el-button> |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
</el-table> |
|
|
|
@ -440,7 +440,6 @@ export default { |
|
|
|
|
}).then(res => { |
|
|
|
|
this.NoAdd = true |
|
|
|
|
}).catch(res => { |
|
|
|
|
this.$message.warning('该客户已存在') |
|
|
|
|
this.NoAdd = false |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
@ -528,6 +527,9 @@ export default { |
|
|
|
|
IPSure(){ |
|
|
|
|
this.ipVisible = false |
|
|
|
|
}, |
|
|
|
|
showContract(row){ |
|
|
|
|
window.open(`https://view.officeapps.live.com/op/view.aspx?src=${row.contractFile}`) |
|
|
|
|
}, |
|
|
|
|
goback(){ |
|
|
|
|
this.$router.go(-1) |
|
|
|
|
} |
|
|
|
|