@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jx3box/jx3box-common-ui",
3
- "version": "7.8.4",
3
+ "version": "7.8.5",
4
4
  "description": "JX3BOX UI",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -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", this.data);
289
+ this.$emit("update", {
290
+ show: false,
291
+ data: this.data,
292
+ });
287
293
  this.$message({
288
294
  message: "设置成功",
289
295
  type: "success",