导出格式相关V2

This commit is contained in:
liulujia
2020-04-26 15:05:32 +08:00
parent fa3edfb90f
commit 08b06cee4f
3 changed files with 4 additions and 4 deletions

View File

@@ -27,7 +27,7 @@ export const downloadFileMachine = `http://123.56.95.229:8010/submit/downloadFil
export const MESUploadFile = `http://123.56.95.229:8010/submit/MESUploadFile.ashx`
export const MESDownloadFile = `http://123.56.95.229:8010/submit/MESDownloadFile.ashx`
const service = axios.create({
baseURL: `http://123.56.95.229:8010/submit/MESCommonBase.ashx`,
baseURL: `http://123.56.95.229:58010/submit/MESCommonBase.ashx`,
timeout: 1500000 // 请求超时时间
})

View File

@@ -338,7 +338,7 @@
<el-table-column align="center" label="采购数量" width="100px">
<template slot-scope="scope">
{{ scope.row.采购数量 }}
{{ parseInt(scope.row.询价状态编号)===1&&scope.row.人员编号!=='' ? '—' : scope.row.数量 || '—' }}
<!--{{ parseInt(scope.row.询价状态编号)===1&&scope.row.人员编号!=='' ? '—' : scope.row.数量 || '—' }}-->
</template>
</el-table-column>
<el-table-column align="center" label="到货数量" width="100px">

View File

@@ -326,7 +326,7 @@ export default {
param[6] = ['机床号物料名称_check', check4]
param[7] = ['机床号物料名称', this.machinenum]
param[8] = ['合计', this.totalPrice]
param[9] = ['表名', '采购核算']
param[9] = ['表名', '领用核算']
var Data = this.CreateData('2001', '采购管理_领用核算_查询数据_导出', param)
this.exportExcel_NPOI(Data)
}