@cmstops/pro-compo 0.1.60 → 0.1.61
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.
|
@@ -11,6 +11,10 @@ const _sfc_main = defineComponent({
|
|
|
11
11
|
__name: "component",
|
|
12
12
|
props: {
|
|
13
13
|
BASE_API: {},
|
|
14
|
+
title: { default: "\u5C01\u9762" },
|
|
15
|
+
titleValid: { type: Boolean, default: false },
|
|
16
|
+
topImageTitle: { default: "\u5C01\u9762\u5934\u56FE" },
|
|
17
|
+
topImageTitleValid: { type: Boolean, default: false },
|
|
14
18
|
visible: { type: Boolean },
|
|
15
19
|
hashId: {}
|
|
16
20
|
},
|
|
@@ -80,9 +84,13 @@ const _sfc_main = defineComponent({
|
|
|
80
84
|
ref_key: "metaInfoFormRef",
|
|
81
85
|
ref: metaInfoFormRef,
|
|
82
86
|
BASE_API: unref(BASE_API),
|
|
87
|
+
title: _ctx.title,
|
|
88
|
+
"top-image-title": _ctx.topImageTitle,
|
|
89
|
+
"title-valid": _ctx.titleValid,
|
|
90
|
+
"top-image-title-valid": _ctx.topImageTitleValid,
|
|
83
91
|
"init-data": editorDataPubInfo.value,
|
|
84
92
|
onUpload: _cache[0] || (_cache[0] = (e) => _ctx.$emit("upload", e))
|
|
85
|
-
}, null, 8, ["BASE_API", "init-data"])
|
|
93
|
+
}, null, 8, ["BASE_API", "title", "top-image-title", "title-valid", "top-image-title-valid", "init-data"])
|
|
86
94
|
])
|
|
87
95
|
]),
|
|
88
96
|
_: 1
|
|
@@ -23,6 +23,10 @@ const _sfc_main = defineComponent({
|
|
|
23
23
|
__name: "metaInfoForm",
|
|
24
24
|
props: {
|
|
25
25
|
initData: {},
|
|
26
|
+
title: {},
|
|
27
|
+
topImageTitle: {},
|
|
28
|
+
titleValid: { type: Boolean },
|
|
29
|
+
topImageTitleValid: { type: Boolean },
|
|
26
30
|
BASE_API: {},
|
|
27
31
|
sourceStore: {}
|
|
28
32
|
},
|
|
@@ -295,10 +299,14 @@ const _sfc_main = defineComponent({
|
|
|
295
299
|
"onUpdate:dataValue": _cache[2] || (_cache[2] = ($event) => form.value.style = $event),
|
|
296
300
|
"media-use-type": 1,
|
|
297
301
|
series: series.value,
|
|
302
|
+
title: _ctx.title,
|
|
303
|
+
topImageTitle: _ctx.topImageTitle,
|
|
304
|
+
titleValid: _ctx.titleValid,
|
|
305
|
+
topImageTitleValid: _ctx.topImageTitleValid,
|
|
298
306
|
class: "select-thumb-wrap",
|
|
299
307
|
mode: "doc",
|
|
300
308
|
onUpload: _cache[3] || (_cache[3] = (e) => _ctx.$emit("upload", e))
|
|
301
|
-
}, null, 8, ["dataValue", "series"])
|
|
309
|
+
}, null, 8, ["dataValue", "series", "title", "topImageTitle", "titleValid", "topImageTitleValid"])
|
|
302
310
|
]),
|
|
303
311
|
_: 1
|
|
304
312
|
}),
|
|
@@ -12,6 +12,10 @@ const _sfc_main = vue.defineComponent({
|
|
|
12
12
|
__name: "component",
|
|
13
13
|
props: {
|
|
14
14
|
BASE_API: {},
|
|
15
|
+
title: { default: "\u5C01\u9762" },
|
|
16
|
+
titleValid: { type: Boolean, default: false },
|
|
17
|
+
topImageTitle: { default: "\u5C01\u9762\u5934\u56FE" },
|
|
18
|
+
topImageTitleValid: { type: Boolean, default: false },
|
|
15
19
|
visible: { type: Boolean },
|
|
16
20
|
hashId: {}
|
|
17
21
|
},
|
|
@@ -81,9 +85,13 @@ const _sfc_main = vue.defineComponent({
|
|
|
81
85
|
ref_key: "metaInfoFormRef",
|
|
82
86
|
ref: metaInfoFormRef,
|
|
83
87
|
BASE_API: vue.unref(BASE_API),
|
|
88
|
+
title: _ctx.title,
|
|
89
|
+
"top-image-title": _ctx.topImageTitle,
|
|
90
|
+
"title-valid": _ctx.titleValid,
|
|
91
|
+
"top-image-title-valid": _ctx.topImageTitleValid,
|
|
84
92
|
"init-data": editorDataPubInfo.value,
|
|
85
93
|
onUpload: _cache[0] || (_cache[0] = (e) => _ctx.$emit("upload", e))
|
|
86
|
-
}, null, 8, ["BASE_API", "init-data"])
|
|
94
|
+
}, null, 8, ["BASE_API", "title", "top-image-title", "title-valid", "top-image-title-valid", "init-data"])
|
|
87
95
|
])
|
|
88
96
|
]),
|
|
89
97
|
_: 1
|
|
@@ -24,6 +24,10 @@ const _sfc_main = vue.defineComponent({
|
|
|
24
24
|
__name: "metaInfoForm",
|
|
25
25
|
props: {
|
|
26
26
|
initData: {},
|
|
27
|
+
title: {},
|
|
28
|
+
topImageTitle: {},
|
|
29
|
+
titleValid: { type: Boolean },
|
|
30
|
+
topImageTitleValid: { type: Boolean },
|
|
27
31
|
BASE_API: {},
|
|
28
32
|
sourceStore: {}
|
|
29
33
|
},
|
|
@@ -296,10 +300,14 @@ const _sfc_main = vue.defineComponent({
|
|
|
296
300
|
"onUpdate:dataValue": _cache[2] || (_cache[2] = ($event) => form.value.style = $event),
|
|
297
301
|
"media-use-type": 1,
|
|
298
302
|
series: series.value,
|
|
303
|
+
title: _ctx.title,
|
|
304
|
+
topImageTitle: _ctx.topImageTitle,
|
|
305
|
+
titleValid: _ctx.titleValid,
|
|
306
|
+
topImageTitleValid: _ctx.topImageTitleValid,
|
|
299
307
|
class: "select-thumb-wrap",
|
|
300
308
|
mode: "doc",
|
|
301
309
|
onUpload: _cache[3] || (_cache[3] = (e) => _ctx.$emit("upload", e))
|
|
302
|
-
}, null, 8, ["dataValue", "series"])
|
|
310
|
+
}, null, 8, ["dataValue", "series", "title", "topImageTitle", "titleValid", "topImageTitleValid"])
|
|
303
311
|
]),
|
|
304
312
|
_: 1
|
|
305
313
|
}),
|