Просмотр исходного кода

Merge branch 'develop_yh13' of http://git.chelingzhu.com/jianguan-web/jg-ocs-html into develop_yh13

chenrui 2 лет назад
Родитель
Сommit
f46c52f338
2 измененных файлов с 2 добавлено и 2 удалено
  1. 1 1
      public/version.json
  2. 1 1
      src/views/reportData/salesOrderTotal/list.vue

+ 1 - 1
public/version.json

@@ -1,4 +1,4 @@
 {
-    "version": "2.2.7",
+    "version": "2.2.8",
     "message": "发现有新版本发布,确定更新系统?"
 }

+ 1 - 1
src/views/reportData/salesOrderTotal/list.vue

@@ -242,7 +242,7 @@ export default {
         arr.push({ title: '折扣金额', dataIndex: 'totalDiscountAmount', width: 70, align: 'right', customRender: function (text) { return ((text || text == 0) ? _this.toThousands(text) : '--') } })
         arr.push({ title: '折后金额', dataIndex: 'totalDiscountedAmount', width: 70, align: 'right', customRender: function (text) { return ((text || text == 0) ? _this.toThousands(text) : '--') } })
       }
-      arr.push({ title: '操作员', dataIndex: 'operatorName', align: 'center', customRender: function (text) { return text || '--' }, ellipsis: true })
+      arr.push({ title: '操作员', dataIndex: 'operatorName', width: 100, align: 'center', customRender: function (text) { return text || '--' }, ellipsis: true })
       return arr
     }
   },