|
@@ -30,7 +30,7 @@
|
|
</a-col>
|
|
</a-col>
|
|
<a-col :md="4" :sm="24">
|
|
<a-col :md="4" :sm="24">
|
|
<a-form-model-item label="原厂编码">
|
|
<a-form-model-item label="原厂编码">
|
|
- <a-input id="vinAnaly-VIN" v-model.trim="queryParam.origCode" allowClear placeholder="请输入VIN"/>
|
|
|
|
|
|
+ <a-input id="vinAnaly-VIN" v-model.trim="queryParam.origCode" allowClear placeholder="请输入原厂编码"/>
|
|
</a-form-model-item>
|
|
</a-form-model-item>
|
|
</a-col>
|
|
</a-col>
|
|
<template v-if="advanced">
|
|
<template v-if="advanced">
|
|
@@ -45,7 +45,7 @@
|
|
</a-form-item>
|
|
</a-form-item>
|
|
</a-col>
|
|
</a-col>
|
|
<a-col :md="6" :sm="24">
|
|
<a-col :md="6" :sm="24">
|
|
- <a-form-model-item label="最近VIN扫描时间">
|
|
|
|
|
|
+ <a-form-model-item label="VIN扫描时间">
|
|
<rangeDate ref="scanDate" v-model="time" @change="dateChange" />
|
|
<rangeDate ref="scanDate" v-model="time" @change="dateChange" />
|
|
</a-form-model-item>
|
|
</a-form-model-item>
|
|
</a-col>
|
|
</a-col>
|
|
@@ -116,7 +116,7 @@ export default {
|
|
spinning: false,
|
|
spinning: false,
|
|
labelCol: { span: 8 },
|
|
labelCol: { span: 8 },
|
|
wrapperCol: { span: 16 },
|
|
wrapperCol: { span: 16 },
|
|
- advanced: false, // 高级搜索 展开/关闭
|
|
|
|
|
|
+ advanced: true, // 高级搜索 展开/关闭
|
|
tableHeight: 0,
|
|
tableHeight: 0,
|
|
productType: [],
|
|
productType: [],
|
|
queryParam: { // 查询条件
|
|
queryParam: { // 查询条件
|
|
@@ -173,8 +173,8 @@ export default {
|
|
{ title: '产品品牌', dataIndex: 'brandName', width: '10%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
{ title: '产品品牌', dataIndex: 'brandName', width: '10%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
{ title: '产品分类', slots: { title: 'type' }, scopedSlots: { customRender: 'type' }, width: '10%', align: 'center' },
|
|
{ title: '产品分类', slots: { title: 'type' }, scopedSlots: { customRender: 'type' }, width: '10%', align: 'center' },
|
|
{ title: '适配有货次数', dataIndex: 'isStockCount', width: '10%', align: 'center', customRender: function (text) { return text || '--' }, sorter: true },
|
|
{ title: '适配有货次数', dataIndex: 'isStockCount', width: '10%', align: 'center', customRender: function (text) { return text || '--' }, sorter: true },
|
|
- { title: '适配缺货次数', dataIndex: 'notStockCount', width: '10%', align: 'center', customRender: function (text) { return text || '--' }, sorter: true },
|
|
|
|
- { title: '最近VIN扫描时间', dataIndex: 'scanVinDate', width: '7%', align: 'center', customRender: function (text) { return text || '--' }, sorter: true }
|
|
|
|
|
|
+ { title: '适配缺货次数', dataIndex: 'notStockCount', width: '10%', align: 'center', customRender: function (text) { return text || '--' }, sorter: true }
|
|
|
|
+ // { title: '最近VIN扫描时间', dataIndex: 'scanVinDate', width: '7%', align: 'center', customRender: function (text) { return text || '--' }, sorter: true }
|
|
]
|
|
]
|
|
return arr
|
|
return arr
|
|
}
|
|
}
|