@bsgoal/common 2.15.9 → 2.15.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bsgoal/common",
3
- "version": "2.15.9",
3
+ "version": "2.15.10",
4
4
  "private": false,
5
5
  "files": [
6
6
  "dist",
@@ -2,7 +2,7 @@
2
2
  * @Author: canlong.shen
3
3
  * @Date: 2023-04-10 11:29:04
4
4
  * @LastEditors: canlong.shen
5
- * @LastEditTime: 2023-06-30 09:56:18
5
+ * @LastEditTime: 2023-06-30 10:33:45
6
6
  * @FilePath: \common\src\components\bsgoal-base-table\index.vue
7
7
  * @Description:
8
8
  *
@@ -298,10 +298,7 @@ const summaryMethod = (columns = '') => {
298
298
  })
299
299
  calcResultList[index] = sum
300
300
  })
301
-
302
- console.log('calcResultList',calcResultList);
303
-
304
- return ['合计', ...calcResultList.slice(1)]
301
+ return ['合计', ...calcResultList]
305
302
  }
306
303
 
307
304
  // ---> E 表格绑定的方法 <---