Browse Source

修改bug

chenrui 8 months ago
parent
commit
0297541089
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/views/productManagement/productInfo/chooseImportModal.vue

+ 3 - 3
src/views/productManagement/productInfo/chooseImportModal.vue

@@ -119,9 +119,9 @@ export default {
         { title: '产品一级分类', dataIndex: 'productTypeName1', width: '13%', align: 'center', customRender: function (text) { return text || '--' } },
         { title: '产品二级分类', dataIndex: 'productTypeName2', width: '13%', align: 'center', customRender: function (text) { return text || '--' } },
         { title: '产品三级分类', dataIndex: 'productTypeName3', width: '13%', align: 'center', customRender: function (text) { return text || '--' } },
-        { title: '经销商批发价', dataIndex: 'specialPrice', width: '13%', align: 'right', customRender: function (text) { return ((text || text == 0) ? _this.toThousands(text) : '--') } },
-        { title: '终端价', dataIndex: 'terminalPrice', width: '11%', align: 'right', customRender: function (text) { return ((text || text == 0) ? _this.toThousands(text) : '--') } },
-        { title: '车主价', dataIndex: 'carOwnersPrice', width: '11%', align: 'right', customRender: function (text) { return ((text || text == 0) ? _this.toThousands(text) : '--') } },
+        { title: '经销商批发价', dataIndex: 'specialPrice', width: '13%', align: 'right', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
+        { title: '终端价', dataIndex: 'terminalPrice', width: '11%', align: 'right', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
+        { title: '车主价', dataIndex: 'carOwnersPrice', width: '11%', align: 'right', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
         { title: '备注', width: '20%', align: 'center', scopedSlots: { customRender: 'errorMsg' } }
       ],
       loadData: [],