|
@@ -210,8 +210,8 @@ export default {
|
|
|
productTypeList: [], // 产品类别下拉数据
|
|
|
productType: [],
|
|
|
columns: [
|
|
|
- { title: '序号', dataIndex: 'no', width: 50, align: 'center' },
|
|
|
- { title: '产品编码', dataIndex: 'productCode', width: 120, align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
+ { title: '序号', dataIndex: 'no', width: 50, align: 'center', fixed: 'left' },
|
|
|
+ { title: '产品编码', dataIndex: 'productCode', width: 120, align: 'center', customRender: function (text) { return text || '--' }, fixed: 'left' },
|
|
|
{ title: '产品名称', dataIndex: 'productName', align: 'left', customRender: function (text) { return text || '--' }, ellipsis: true },
|
|
|
{ title: '原厂编码', dataIndex: 'productOrigCode', width: 120, align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
{ title: '产品品牌', dataIndex: 'brandName', width: 120, align: 'center', customRender: function (text) { return text || '--' } },
|
|
@@ -395,7 +395,7 @@ export default {
|
|
|
},
|
|
|
setTableH () {
|
|
|
const tableSearchH = this.$refs.tableSearch.offsetHeight
|
|
|
- this.tableHeight = window.innerHeight - tableSearchH - 190
|
|
|
+ this.tableHeight = window.innerHeight - tableSearchH - 180
|
|
|
}
|
|
|
},
|
|
|
watch: {
|