This commit is contained in:
liushuai
2019-01-29 15:06:31 +08:00
3 changed files with 12 additions and 5 deletions

View File

@@ -15,7 +15,6 @@ export const upload3 = `192.168.1.231:8411/submit/upload3.ashx` // performancebo
export const uploadInvoiceScan = `192.168.1.231:8411/submit/uploadInvoiceScan.ashx` // invoice
export const download = `192.168.1.231:8411/submit/downloadFile.ashx` // ContractInformationManagement
const service = axios.create({
// baseURL: `http://192.168.1.149:8411/submit/MESCommonBase.ashx`,
// baseURL: `http://192.168.1.149:8411/submit/MESCommonBase.ashx`,
// baseURL: `http://localhost:8411/submit/MESCommonBase.ashx`,

View File

@@ -883,7 +883,7 @@ export default {
this.$message.success('添加成功')
this.peopleid = ''
this.title = ''
this.getTable(searchTable1, [this.PageCurrent, this.PageSize, '', ''], ['tableData1', 'total', 'listLoading'])
this.fetchTableData1()
} else {
this.$message.error('添加失败')
}
@@ -928,7 +928,7 @@ export default {
this.form.remark = row.合同信息备注
this.CustomerCode = row.客户流水号
this.form.付款方式 = parseInt(row.付款方式代码)
this.biddingNumber = parseInt(row.招标保证金流水号)
this.biddingNumber = row.招标保证金流水号
this.form.bidding = row.招标企业
this.disabled = true
this.temp = 2

View File

@@ -77,12 +77,17 @@
<el-card>
<div style="display: inline-block;margin-bottom: 20px">供应商列表</div>
<el-table :data="List" highlight-current-row border style="width: 100%;max-height: 400px;" height="400" size="mini" @row-click="rowClick">
<el-table-column label="供应商名称" align="center" min-width="250">
<el-table :data="List" highlight-current-row border style="width: 100%;max-height: 600px;" height="600" size="mini" @row-click="rowClick">
<el-table-column label="供应商名称" align="center" min-width="350">
<template slot-scope="scope">
{{ scope.row.供应商名称 }}
</template>
</el-table-column>
<el-table-column label="主要产品" align="center" min-width="350">
<template slot-scope="scope">
{{ scope.row.主要产品 }}
</template>
</el-table-column>
<el-table-column label="开户行" align="center" width="250">
<template slot-scope="scope">
{{ scope.row.开户行 }}
@@ -425,6 +430,9 @@ export default {
}
}
},
mounted() {
this.fetchData()
},
methods: {
fetchData() {
this.List1 = []