|
...
|
...
|
@@ -2,8 +2,24 @@ |
|
|
|
<a-card :bordered="false">
|
|
|
|
<!-- 查询区域 -->
|
|
|
|
<div class="table-page-search-wrapper">
|
|
|
|
<a-form layout="inline" @keyup.enter.native="searchQuery">
|
|
|
|
<a-form layout="inline" @keyup.enter.native="searchQuery">
|
|
|
|
<a-row :gutter="24">
|
|
|
|
<a-col :xl="6" :lg="7" :md="8" :sm="24">
|
|
|
|
<a-form-item label="招标号">
|
|
|
|
<j-input placeholder="请输入招标号" v-model="queryParam.tenderNumber"></j-input>
|
|
|
|
</a-form-item>
|
|
|
|
</a-col>
|
|
|
|
<a-col :span="12" :xl="6" :lg="7" :md="8" :sm="24">
|
|
|
|
<a-form-item label="客户料号">
|
|
|
|
<j-input placeholder="请输入客户料号" v-model="queryParam.partNumber"></j-input>
|
|
|
|
</a-form-item>
|
|
|
|
</a-col>
|
|
|
|
<a-col :xl="6" :lg="7" :md="8" :sm="24">
|
|
|
|
<span style="float: right; overflow: hidden" class="table-page-search-submitButtons">
|
|
|
|
<a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
|
|
|
|
<a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button>
|
|
|
|
</span>
|
|
|
|
</a-col>
|
|
|
|
</a-row>
|
|
|
|
</a-form>
|
|
|
|
</div>
|
|
...
|
...
|
@@ -126,8 +142,8 @@ |
|
|
|
title:'招标号',
|
|
|
|
align:"center",
|
|
|
|
dataIndex: 'tenderNumber',
|
|
|
|
width:100,
|
|
|
|
fixed:"left",
|
|
|
|
width:60,
|
|
|
|
fixed:"left"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title:'客户',
|
|
...
|
...
|
@@ -223,7 +239,7 @@ |
|
|
|
dataIndex: 'huoqiTime'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title:'对接人员',
|
|
|
|
title:'对接人',
|
|
|
|
align:"center",
|
|
|
|
dataIndex: 'contactPerson'
|
|
|
|
},
|
|
...
|
...
|
@@ -401,8 +417,8 @@ |
|
|
|
title:'毛利润',
|
|
|
|
align:"center",
|
|
|
|
dataIndex: 'profit',
|
|
|
|
fixed:'right',
|
|
|
|
width:60
|
|
|
|
width:60,
|
|
|
|
fixed:"right"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: '操作',
|
|
...
|
...
|
@@ -457,7 +473,7 @@ |
|
|
|
fieldList.push({type:'number',value:'price',text:'价格'})
|
|
|
|
fieldList.push({type:'number',value:'taxIncluded',text:'含税运'})
|
|
|
|
fieldList.push({type:'string',value:'huoqiTime',text:'货期'})
|
|
|
|
fieldList.push({type:'string',value:'contactPerson',text:'对接人员'})
|
|
|
|
fieldList.push({type:'string',value:'contactPerson',text:'对接人'})
|
|
|
|
fieldList.push({type:'string',value:'inquirer',text:'询价人'})
|
|
|
|
fieldList.push({type:'number',value:'bidPrice',text:'投标价格(不含税)'})
|
|
|
|
fieldList.push({type:'number',value:'zhongPrice',text:'中标单价'})
|
...
|
...
|
|