Sfoglia il codice sorgente

商机界面字段宽度调整

zhuth 7 anni fa
parent
commit
404aafc07e
1 ha cambiato i file con 6 aggiunte e 4 eliminazioni
  1. 6 4
      frontend/saas-web/app/view/sale/b2b/Business.js

+ 6 - 4
frontend/saas-web/app/view/sale/b2b/Business.js

@@ -100,22 +100,24 @@ Ext.define('saas.view.sale.b2b.Business', {
                 }, {
                     text: '物料名称',
                     dataIndex: 'prodName',
-                    width: 120
+                    width: 150
                 }, {
                     text: '物料型号',
                     dataIndex: 'prodOrispeccode',
-                    width: 120
+                    width: 200
                 }, {
                     text: '物料规格',
                     dataIndex: 'prodSpec',
-                    width: 120
+                    width: 200
                 }, {
                     text: '物料单位',
-                    dataIndex: 'prodUnit'
+                    dataIndex: 'prodUnit',
+                    width: 65
                 }, {
                     text: '采购数量',
                     xtype: 'numbercolumn',
                     dataIndex: 'needQty',
+                    width: 110,
                     renderer: function (v, m, r) {
                         return saas.util.BaseUtil.numberFormat(v, 0, false);
                     }