doway-coms 2.2.20 → 2.2.21

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.
Files changed (82) hide show
  1. package/.browserslistrc +2 -2
  2. package/README.md +28 -28
  3. package/package.json +53 -53
  4. package/packages/AuditsList/index.js +7 -7
  5. package/packages/AuditsList/src/index.vue +262 -262
  6. package/packages/BaseButton/index.js +7 -7
  7. package/packages/BaseButton/src/index.vue +241 -241
  8. package/packages/BaseCheckbox/index.js +7 -7
  9. package/packages/BaseCheckbox/src/index.vue +134 -134
  10. package/packages/BaseDate/index.js +7 -7
  11. package/packages/BaseDate/src/index.vue +197 -197
  12. package/packages/BaseDateWeek/index.js +7 -7
  13. package/packages/BaseDateWeek/src/index.vue +163 -163
  14. package/packages/BaseDatetime/index.js +7 -7
  15. package/packages/BaseDatetime/src/index.vue +196 -196
  16. package/packages/BaseForm/index.js +7 -7
  17. package/packages/BaseForm/src/index.vue +728 -728
  18. package/packages/BaseGantt/index.js +9 -9
  19. package/packages/BaseGantt/src/index.vue +608 -608
  20. package/packages/BaseGrid/index.js +9 -9
  21. package/packages/BaseGrid/src/SeqSetting.vue +278 -278
  22. package/packages/BaseGrid/src/index.vue +3580 -3580
  23. package/packages/BaseGridAdjust/index.js +9 -9
  24. package/packages/BaseGridAdjust/src/index.vue +482 -482
  25. package/packages/BaseInput/index.js +7 -7
  26. package/packages/BaseInput/src/index.vue +164 -164
  27. package/packages/BaseIntervalInput/index.js +7 -7
  28. package/packages/BaseIntervalInput/src/index.vue +310 -310
  29. package/packages/BaseKanbanEmpty/index.js +7 -7
  30. package/packages/BaseKanbanEmpty/src/index.vue +176 -176
  31. package/packages/BaseNumberInput/index.js +7 -7
  32. package/packages/BaseNumberInput/src/index.vue +293 -293
  33. package/packages/BasePagination/index.js +7 -7
  34. package/packages/BasePagination/src/index.vue +91 -91
  35. package/packages/BasePictureCard/index.js +7 -7
  36. package/packages/BasePictureCard/src/index.vue +580 -580
  37. package/packages/BasePrintPreview/index.js +7 -7
  38. package/packages/BasePrintPreview/src/index.vue +129 -129
  39. package/packages/BasePulldown/index.js +7 -7
  40. package/packages/BasePulldown/src/index.vue +1265 -1265
  41. package/packages/BaseSearch/index.js +7 -7
  42. package/packages/BaseSearch/src/index.vue +935 -935
  43. package/packages/BaseSelect/index.js +7 -7
  44. package/packages/BaseSelect/src/index.vue +155 -155
  45. package/packages/BaseSelectMulti/index.js +7 -7
  46. package/packages/BaseSelectMulti/src/index.vue +148 -148
  47. package/packages/BaseTextArea/index.js +7 -7
  48. package/packages/BaseTextArea/src/index.vue +178 -178
  49. package/packages/BaseTime/index.js +7 -7
  50. package/packages/BaseTime/src/index.vue +166 -166
  51. package/packages/BaseTool/index.js +7 -7
  52. package/packages/BaseTool/src/index.vue +349 -349
  53. package/packages/BaseToolStatus/index.js +7 -7
  54. package/packages/BaseToolStatus/src/index.vue +388 -388
  55. package/packages/BaseTreeSelect/index.js +8 -8
  56. package/packages/BaseTreeSelect/src/index.vue +437 -437
  57. package/packages/LeaveAMessage/index.js +7 -7
  58. package/packages/LeaveAMessage/src/index.vue +597 -597
  59. package/packages/index.js +191 -191
  60. package/packages/styles/default.css +78 -78
  61. package/packages/styles/default.less +84 -84
  62. package/packages/utils/api.js +107 -107
  63. package/packages/utils/auth.js +38 -38
  64. package/packages/utils/common.js +610 -610
  65. package/packages/utils/dom.js +181 -181
  66. package/packages/utils/enum.js +86 -86
  67. package/packages/utils/filters.js +472 -472
  68. package/packages/utils/gridFormat.js +66 -66
  69. package/packages/utils/msg.js +84 -84
  70. package/packages/utils/patchFiles.js +44 -44
  71. package/packages/utils/request.js +178 -178
  72. package/packages/utils/store.js +305 -303
  73. package/vue.config.js +59 -59
  74. package/dist/css/chunk-vendors.7f83d8f9.css +0 -8
  75. package/dist/css/index.7946d50b.css +0 -1
  76. package/dist/favicon.ico +0 -0
  77. package/dist/js/chunk-vendors.28fda91d.js +0 -340
  78. package/dist/js/index.49bc6add.js +0 -2
  79. package/lib/doway-coms.common.js +0 -120397
  80. package/lib/doway-coms.css +0 -1
  81. package/lib/doway-coms.umd.js +0 -120407
  82. package/lib/doway-coms.umd.min.js +0 -328
@@ -1,67 +1,67 @@
1
- import VXETable from 'vxe-table'
2
- import XEUtils from 'xe-utils'
3
- VXETable.formats.mixin({
4
- // 格式化性别
5
- formatSex({ cellValue }) {
6
- return cellValue ? (cellValue === '1' ? '男' : '女') : ''
7
- },
8
- formatCheckbox({ cellValue }) {
9
- return cellValue === true ? '是' : '否'
10
- },
11
- // 格式化下拉选项
12
- formatSelect(scope) {
13
- let dataSource = scope.column.params.dataSource
14
- if (!dataSource) {
15
- // console.error(scope.cellValue + ' 字典缺失')
16
- return scope.cellValue
17
- }
18
- const item = dataSource.find(item => item.value === scope.cellValue)
19
- return item ? item.caption : scope.cellValue
20
- },
21
- // 格式化日期,默认 yyyy-MM-dd HH:mm:ss
22
- formatDateTime({ cellValue }, format) {
23
- if (cellValue && cellValue.indexOf('.') > 0) {
24
- cellValue = cellValue.substr(0, cellValue.indexOf('.'))
25
- }
26
- return XEUtils.toDateString(cellValue, format || 'yyyy-MM-dd HH:mm:ss')
27
- },
28
- formatDate({ cellValue }, format) {
29
- return XEUtils.toDateString(cellValue, format || 'yyyy-MM-dd')
30
- },
31
- // 四舍五入金额,每隔3位逗号分隔,默认2位数
32
- formatAmount({ cellValue }, digits = 2) {
33
- return '¥' + XEUtils.commafy(XEUtils.toNumber(cellValue), { digits })
34
- },
35
- // 四舍五入金额,每隔3位逗号分隔,默认2位数,美元金额符号
36
- formatAmountUSD({ cellValue }, digits = 2) {
37
- return '$'+ XEUtils.commafy(XEUtils.toNumber(cellValue), { digits })
38
- },
39
- // 四舍五入金额,每隔3位逗号分隔,默认2位数,人民币金额符号
40
- formatAmountRMB({ cellValue }, digits = 2) {
41
- return '¥' + XEUtils.commafy(XEUtils.toNumber(cellValue), { digits })
42
- },
43
- // 格式化银行卡,默认每4位空格隔开
44
- formatBankcard({ cellValue }) {
45
- return XEUtils.commafy(XEUtils.toValueString(cellValue), {
46
- spaceNumber: 4,
47
- separator: ' '
48
- })
49
- },
50
- // 四舍五入,默认两位数
51
- formatFixedNumber({ cellValue }, digits = 2) {
52
- return XEUtils.toFixed(XEUtils.round(cellValue, digits), digits)
53
- },
54
- // 向下舍入,默认两位数
55
- formatCutNumber({ cellValue }, digits = 2) {
56
- return XEUtils.toFixed(XEUtils.floor(cellValue, digits), digits)
57
- },
58
- formatPercent({ cellValue }) {
59
- return cellValue + '%'
60
- },
61
- formatPercentAndFixedNumber({ cellValue }) {
62
- return XEUtils.toFixed(XEUtils.round(cellValue, digits), digits) +'%'
63
- },
64
- formatPercentValue({ cellValue },digits=2) {
65
- return XEUtils.round(cellValue*100,digits) + '%'
66
- }
1
+ import VXETable from 'vxe-table'
2
+ import XEUtils from 'xe-utils'
3
+ VXETable.formats.mixin({
4
+ // 格式化性别
5
+ formatSex({ cellValue }) {
6
+ return cellValue ? (cellValue === '1' ? '男' : '女') : ''
7
+ },
8
+ formatCheckbox({ cellValue }) {
9
+ return cellValue === true ? '是' : '否'
10
+ },
11
+ // 格式化下拉选项
12
+ formatSelect(scope) {
13
+ let dataSource = scope.column.params.dataSource
14
+ if (!dataSource) {
15
+ // console.error(scope.cellValue + ' 字典缺失')
16
+ return scope.cellValue
17
+ }
18
+ const item = dataSource.find(item => item.value === scope.cellValue)
19
+ return item ? item.caption : scope.cellValue
20
+ },
21
+ // 格式化日期,默认 yyyy-MM-dd HH:mm:ss
22
+ formatDateTime({ cellValue }, format) {
23
+ if (cellValue && cellValue.indexOf('.') > 0) {
24
+ cellValue = cellValue.substr(0, cellValue.indexOf('.'))
25
+ }
26
+ return XEUtils.toDateString(cellValue, format || 'yyyy-MM-dd HH:mm:ss')
27
+ },
28
+ formatDate({ cellValue }, format) {
29
+ return XEUtils.toDateString(cellValue, format || 'yyyy-MM-dd')
30
+ },
31
+ // 四舍五入金额,每隔3位逗号分隔,默认2位数
32
+ formatAmount({ cellValue }, digits = 2) {
33
+ return '¥' + XEUtils.commafy(XEUtils.toNumber(cellValue), { digits })
34
+ },
35
+ // 四舍五入金额,每隔3位逗号分隔,默认2位数,美元金额符号
36
+ formatAmountUSD({ cellValue }, digits = 2) {
37
+ return '$'+ XEUtils.commafy(XEUtils.toNumber(cellValue), { digits })
38
+ },
39
+ // 四舍五入金额,每隔3位逗号分隔,默认2位数,人民币金额符号
40
+ formatAmountRMB({ cellValue }, digits = 2) {
41
+ return '¥' + XEUtils.commafy(XEUtils.toNumber(cellValue), { digits })
42
+ },
43
+ // 格式化银行卡,默认每4位空格隔开
44
+ formatBankcard({ cellValue }) {
45
+ return XEUtils.commafy(XEUtils.toValueString(cellValue), {
46
+ spaceNumber: 4,
47
+ separator: ' '
48
+ })
49
+ },
50
+ // 四舍五入,默认两位数
51
+ formatFixedNumber({ cellValue }, digits = 2) {
52
+ return XEUtils.toFixed(XEUtils.round(cellValue, digits), digits)
53
+ },
54
+ // 向下舍入,默认两位数
55
+ formatCutNumber({ cellValue }, digits = 2) {
56
+ return XEUtils.toFixed(XEUtils.floor(cellValue, digits), digits)
57
+ },
58
+ formatPercent({ cellValue }) {
59
+ return cellValue + '%'
60
+ },
61
+ formatPercentAndFixedNumber({ cellValue }) {
62
+ return XEUtils.toFixed(XEUtils.round(cellValue, digits), digits) +'%'
63
+ },
64
+ formatPercentValue({ cellValue },digits=2) {
65
+ return XEUtils.round(cellValue*100,digits) + '%'
66
+ }
67
67
  })
@@ -1,85 +1,85 @@
1
- import {notification,Modal } from 'ant-design-vue'
2
- export function successMsg(msg, desc){
3
- notification['success']({ message: msg, description: desc, top: '100px' })
4
- }
5
- export function warningMsg(msg, desc){
6
- notification['warning'](
7
- {
8
- message: h => {
9
- return h("div", null, [
10
- h("div", {
11
- domProps: { innerHTML: msg },
12
- style: {
13
- 'white-space': 'pre-wrap', /* 保持空白符格式,允许正常的换行 */
14
- 'overflow-wrap': 'break-word', /* 允许单词在边界内断开 */
15
- 'word-wrap': 'break-word', /* 旧版浏览器的兼容性写法 */
16
- 'overflow-y': 'auto',
17
- 'max-width': '260px', /* 你想要的任何最大宽度 */
18
- 'max-height': '500px',
19
- }
20
- }, null),
21
- ])
22
- },
23
- description: h => {
24
- return h("div", null, [
25
- h("div", {
26
- domProps: { innerHTML: desc },
27
- style: {
28
- 'white-space': 'pre-wrap',
29
- 'overflow-wrap': 'break-word',
30
- 'word-wrap': 'break-word',
31
- 'overflow-y': 'auto',
32
- 'max-width': '260px',
33
- 'max-height': '500px',
34
- }
35
- }, null),
36
- ])
37
- },
38
- top: '100px'
39
- }
40
- )
41
- }
42
- export function errorMsg(msg, desc){
43
- notification['error'](
44
- {
45
- message: h => {
46
- return h("div", null, [
47
- h("div", {
48
- domProps: { innerHTML: msg },
49
- style: {
50
- 'white-space': 'pre-wrap', /* 保持空白符格式,允许正常的换行 */
51
- 'overflow-wrap': 'break-word', /* 允许单词在边界内断开 */
52
- 'word-wrap': 'break-word', /* 旧版浏览器的兼容性写法 */
53
- 'overflow-y': 'auto',
54
- 'max-width': '260px', /* 你想要的任何最大宽度 */
55
- 'max-height': '500px',
56
- }
57
- }, null),
58
- ])
59
- },
60
- description: h => {
61
- return h("div", null, [
62
- h("div", {
63
- domProps: { innerHTML: desc },
64
- style: {
65
- 'white-space': 'pre-wrap',
66
- 'overflow-wrap': 'break-word',
67
- 'word-wrap': 'break-word',
68
- 'overflow-y': 'auto',
69
- 'max-width': '260px',
70
- 'max-height': '500px',
71
- }
72
- }, null),
73
- ])
74
- },
75
- top: '100px'
76
- }
77
- )
78
- }
79
- export function infoMsg(dataInfo){
80
- notification['info'](dataInfo)
81
- }
82
- export function closeMsg(key){
83
- notification.close(key)
84
- }
1
+ import {notification,Modal } from 'ant-design-vue'
2
+ export function successMsg(msg, desc){
3
+ notification['success']({ message: msg, description: desc, top: '100px' })
4
+ }
5
+ export function warningMsg(msg, desc){
6
+ notification['warning'](
7
+ {
8
+ message: h => {
9
+ return h("div", null, [
10
+ h("div", {
11
+ domProps: { innerHTML: msg },
12
+ style: {
13
+ 'white-space': 'pre-wrap', /* 保持空白符格式,允许正常的换行 */
14
+ 'overflow-wrap': 'break-word', /* 允许单词在边界内断开 */
15
+ 'word-wrap': 'break-word', /* 旧版浏览器的兼容性写法 */
16
+ 'overflow-y': 'auto',
17
+ 'max-width': '260px', /* 你想要的任何最大宽度 */
18
+ 'max-height': '500px',
19
+ }
20
+ }, null),
21
+ ])
22
+ },
23
+ description: h => {
24
+ return h("div", null, [
25
+ h("div", {
26
+ domProps: { innerHTML: desc },
27
+ style: {
28
+ 'white-space': 'pre-wrap',
29
+ 'overflow-wrap': 'break-word',
30
+ 'word-wrap': 'break-word',
31
+ 'overflow-y': 'auto',
32
+ 'max-width': '260px',
33
+ 'max-height': '500px',
34
+ }
35
+ }, null),
36
+ ])
37
+ },
38
+ top: '100px'
39
+ }
40
+ )
41
+ }
42
+ export function errorMsg(msg, desc){
43
+ notification['error'](
44
+ {
45
+ message: h => {
46
+ return h("div", null, [
47
+ h("div", {
48
+ domProps: { innerHTML: msg },
49
+ style: {
50
+ 'white-space': 'pre-wrap', /* 保持空白符格式,允许正常的换行 */
51
+ 'overflow-wrap': 'break-word', /* 允许单词在边界内断开 */
52
+ 'word-wrap': 'break-word', /* 旧版浏览器的兼容性写法 */
53
+ 'overflow-y': 'auto',
54
+ 'max-width': '260px', /* 你想要的任何最大宽度 */
55
+ 'max-height': '500px',
56
+ }
57
+ }, null),
58
+ ])
59
+ },
60
+ description: h => {
61
+ return h("div", null, [
62
+ h("div", {
63
+ domProps: { innerHTML: desc },
64
+ style: {
65
+ 'white-space': 'pre-wrap',
66
+ 'overflow-wrap': 'break-word',
67
+ 'word-wrap': 'break-word',
68
+ 'overflow-y': 'auto',
69
+ 'max-width': '260px',
70
+ 'max-height': '500px',
71
+ }
72
+ }, null),
73
+ ])
74
+ },
75
+ top: '100px'
76
+ }
77
+ )
78
+ }
79
+ export function infoMsg(dataInfo){
80
+ notification['info'](dataInfo)
81
+ }
82
+ export function closeMsg(key){
83
+ notification.close(key)
84
+ }
85
85
  export const confirmMsg = Modal.confirm
@@ -1,45 +1,45 @@
1
- const fs = require('fs')
2
-
3
- const path = require('path')
4
- const chalk = require('chalk')
5
-
6
- // 解决 node_modules 修改源码,导致重新装包而要手动替换源码的重复操作。
7
- // 将 new_node_modules 内的文件 覆盖 真正的 node_modules
8
-
9
- const REAL_NODE_MODULES = path.resolve('./node_modules') // 旧node_modules
10
-
11
- const MY_NODE_MODULES = path.resolve('new_node_modules') // 新node_modules
12
-
13
- copy(MY_NODE_MODULES, REAL_NODE_MODULES)
14
-
15
- /**
16
-
17
- *复制目录中的所有文件包括子目录
18
- *@param{string}需要复制的目录、文件
19
- *@param{string}复制到指定的目录、文件
20
- *@param{function}每次复制前,都会经过一次filterFn,若返回true,则复制。
21
-
22
- */
23
-
24
- function copy(origin, target, filterFn = () => true) {
25
- if (fs.statSync(origin).isDirectory()) {
26
- // 来源是个文件夹,那目标也整一个文件夹
27
-
28
- if (!fs.existsSync(target)) {
29
- fs.mkdirSync(target)
30
- }
31
-
32
- fs.readdirSync(origin).forEach(originName => {
33
- const originFilePath = path.resolve(origin, originName)
34
-
35
- const targetFilePath = path.resolve(target, originName)
36
-
37
- copy(originFilePath, targetFilePath, filterFn)
38
- })
39
- } else if (filterFn(origin, target)) {
40
- console.info(chalk.blue('已被覆盖的文件:', target))
41
- fs.copyFileSync(origin, target)
42
- }
43
- }
44
-
1
+ const fs = require('fs')
2
+
3
+ const path = require('path')
4
+ const chalk = require('chalk')
5
+
6
+ // 解决 node_modules 修改源码,导致重新装包而要手动替换源码的重复操作。
7
+ // 将 new_node_modules 内的文件 覆盖 真正的 node_modules
8
+
9
+ const REAL_NODE_MODULES = path.resolve('./node_modules') // 旧node_modules
10
+
11
+ const MY_NODE_MODULES = path.resolve('new_node_modules') // 新node_modules
12
+
13
+ copy(MY_NODE_MODULES, REAL_NODE_MODULES)
14
+
15
+ /**
16
+
17
+ *复制目录中的所有文件包括子目录
18
+ *@param{string}需要复制的目录、文件
19
+ *@param{string}复制到指定的目录、文件
20
+ *@param{function}每次复制前,都会经过一次filterFn,若返回true,则复制。
21
+
22
+ */
23
+
24
+ function copy(origin, target, filterFn = () => true) {
25
+ if (fs.statSync(origin).isDirectory()) {
26
+ // 来源是个文件夹,那目标也整一个文件夹
27
+
28
+ if (!fs.existsSync(target)) {
29
+ fs.mkdirSync(target)
30
+ }
31
+
32
+ fs.readdirSync(origin).forEach(originName => {
33
+ const originFilePath = path.resolve(origin, originName)
34
+
35
+ const targetFilePath = path.resolve(target, originName)
36
+
37
+ copy(originFilePath, targetFilePath, filterFn)
38
+ })
39
+ } else if (filterFn(origin, target)) {
40
+ console.info(chalk.blue('已被覆盖的文件:', target))
41
+ fs.copyFileSync(origin, target)
42
+ }
43
+ }
44
+
45
45
  console.info(chalk.bold.yellow('💡💡💡 以上的文件已被rewrite_node_modules中的文件替换,升级版本后请注意检查!!!'))