vue2-client 1.9.177 → 1.9.178
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": "vue2-client",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.178",
|
|
4
4
|
"private": false,
|
|
5
5
|
"scripts": {
|
|
6
6
|
"serve": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --no-eslint",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"@hufe921/canvas-editor": "^0.9.49",
|
|
25
25
|
"@vue/babel-preset-jsx": "^1.4.0",
|
|
26
26
|
"@afwenming123/vue-easy-tree": "^1.0.1",
|
|
27
|
-
"@afwenming123/vue-plugin-hiprint": "^0.0.
|
|
27
|
+
"@afwenming123/vue-plugin-hiprint": "^0.0.61",
|
|
28
28
|
"animate.css": "^4.1.1",
|
|
29
29
|
"ant-design-vue": "^1.7.8",
|
|
30
30
|
"axios": "^0.27.2",
|
|
@@ -507,7 +507,7 @@ export default {
|
|
|
507
507
|
buttonPermissions: res.buttonPermissions,
|
|
508
508
|
editButtonStateData: res.editButtonStateData,
|
|
509
509
|
printTemplate: res.printTemplate,
|
|
510
|
-
title: this.title,
|
|
510
|
+
title: this.title || res.title,
|
|
511
511
|
viewMode: this.viewMode,
|
|
512
512
|
localEditMode: localEditMode,
|
|
513
513
|
formSubmitTypeInLocalEditMode: res.formSubmitTypeInLocalEditMode,
|
|
@@ -638,7 +638,7 @@ export default {
|
|
|
638
638
|
const localEditMode = !this.localEditMode ? res.localEditMode : this.localEditMode
|
|
639
639
|
this.$refs.xAddForm.init({
|
|
640
640
|
businessType: '新增',
|
|
641
|
-
title: this.title,
|
|
641
|
+
title: this.title || res.title,
|
|
642
642
|
isShow: !res.buttonState || res.buttonState.add || res.buttonState.edit,
|
|
643
643
|
configName: this.queryParamsName,
|
|
644
644
|
configContent: this.queryParamsJson,
|
|
@@ -681,7 +681,7 @@ export default {
|
|
|
681
681
|
const localEditMode = !this.localEditMode ? res.localEditMode : this.localEditMode
|
|
682
682
|
this.$refs.xAddForm.init({
|
|
683
683
|
businessType: '修改',
|
|
684
|
-
title: this.title,
|
|
684
|
+
title: this.title || res.title,
|
|
685
685
|
isShow: !res.buttonState || res.buttonState.add || res.buttonState.edit,
|
|
686
686
|
configName: this.queryParamsName,
|
|
687
687
|
configContent: this.queryParamsJson,
|