@jx3box/jx3box-common-ui 7.8.4 → 7.8.5
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 +1 -1
- package/src/bread/Admin.vue +7 -1
package/package.json
CHANGED
package/src/bread/Admin.vue
CHANGED
|
@@ -253,6 +253,9 @@ export default {
|
|
|
253
253
|
// 关闭
|
|
254
254
|
close(done) {
|
|
255
255
|
this.dialog_visible = false;
|
|
256
|
+
this.$emit("update", {
|
|
257
|
+
show: false,
|
|
258
|
+
});
|
|
256
259
|
},
|
|
257
260
|
// 拉
|
|
258
261
|
pull: function () {
|
|
@@ -283,7 +286,10 @@ export default {
|
|
|
283
286
|
push: function () {
|
|
284
287
|
postSetting(this.data)
|
|
285
288
|
.then((res) => {
|
|
286
|
-
this.$emit("update",
|
|
289
|
+
this.$emit("update", {
|
|
290
|
+
show: false,
|
|
291
|
+
data: this.data,
|
|
292
|
+
});
|
|
287
293
|
this.$message({
|
|
288
294
|
message: "设置成功",
|
|
289
295
|
type: "success",
|