@10yun/cv-pc-ui 0.3.66 → 0.3.68
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/lib/cv-ui.cjs +4 -4
- package/lib/cv-ui.css +1 -1
- package/lib/cv-ui.js +4 -4
- package/package.json +4 -4
- package/src/mixins/load-data.js +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@10yun/cv-pc-ui",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.68",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "cvjs-pc-ui组件",
|
|
6
6
|
"homepage": "http://cvjs.cn/cv-pc-ui",
|
|
@@ -73,10 +73,10 @@
|
|
|
73
73
|
"@vueuse/core": "^14.3.0",
|
|
74
74
|
"codemirror": "^6.0.2",
|
|
75
75
|
"cropper-next-vue": "^0.3.1",
|
|
76
|
-
"element-plus": "^2.14.
|
|
76
|
+
"element-plus": "^2.14.2",
|
|
77
77
|
"highlight.js": "^11.11.1",
|
|
78
78
|
"html-to-md": "^0.8.8",
|
|
79
|
-
"vue": "^3.5.
|
|
79
|
+
"vue": "^3.5.38",
|
|
80
80
|
"vue-router": "^5.1.0"
|
|
81
81
|
},
|
|
82
82
|
"devDependencies": {
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
"@vitejs/plugin-vue": "^6.0.7",
|
|
85
85
|
"rollup-plugin-visualizer": "^7.0.1",
|
|
86
86
|
"vite": "8.0.10",
|
|
87
|
-
"vue-tsc": "^3.3.
|
|
87
|
+
"vue-tsc": "^3.3.5"
|
|
88
88
|
},
|
|
89
89
|
"peerDependencies": {
|
|
90
90
|
"element-plus": "^2"
|
package/src/mixins/load-data.js
CHANGED
|
@@ -35,8 +35,8 @@ export default {
|
|
|
35
35
|
* 数据返回格式
|
|
36
36
|
*/
|
|
37
37
|
response: {
|
|
38
|
-
statusName: '
|
|
39
|
-
statusCode:
|
|
38
|
+
statusName: 'code', //数据状态字段名
|
|
39
|
+
statusCode: 0, //成功状态码
|
|
40
40
|
msgName: 'msg', //状态信息字段名称
|
|
41
41
|
countName: 'total', //数据总数字段名称
|
|
42
42
|
dataName: 'data' //数据列表字段名称
|