@jx3box/jx3box-common-ui 8.6.7 → 8.6.9
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
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
</el-select>
|
|
47
47
|
</div>
|
|
48
48
|
<div class="m-community-tag__content">
|
|
49
|
-
<template v-if="finalTags.length">
|
|
49
|
+
<template v-if="finalTags && finalTags.length">
|
|
50
50
|
<div class="m-community-tag__list" v-for="item in finalTags" :key="item.uuid">
|
|
51
51
|
<el-input v-model="item.label"></el-input>
|
|
52
52
|
<el-color-picker v-model="item.color"
|
|
@@ -261,7 +261,7 @@ export default {
|
|
|
261
261
|
message: "操作成功!",
|
|
262
262
|
});
|
|
263
263
|
this.$emit("update:modelValue", false);
|
|
264
|
-
|
|
264
|
+
location.reload();
|
|
265
265
|
});
|
|
266
266
|
},
|
|
267
267
|
getCommunityTags() {
|
package/src/bread/DesignTask.vue
CHANGED
|
@@ -78,7 +78,8 @@ export default {
|
|
|
78
78
|
remark: "",
|
|
79
79
|
star: 0,
|
|
80
80
|
subtype: "",
|
|
81
|
-
version: "std"
|
|
81
|
+
version: "std",
|
|
82
|
+
type: ""
|
|
82
83
|
},
|
|
83
84
|
colors: ['#99A9BF', '#F7BA2A', '#FF9900'],
|
|
84
85
|
|
|
@@ -133,6 +134,7 @@ export default {
|
|
|
133
134
|
star: 0,
|
|
134
135
|
subtype: "",
|
|
135
136
|
version: "std",
|
|
137
|
+
type: ""
|
|
136
138
|
}
|
|
137
139
|
|
|
138
140
|
this.$refs?.form?.clearValidate();
|