ts-glitter 14.8.1 → 14.8.2
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/lowcode/Entry.js
CHANGED
|
@@ -80,7 +80,7 @@ export class Entry {
|
|
|
80
80
|
}
|
|
81
81
|
window.renderClock = (_a = window.renderClock) !== null && _a !== void 0 ? _a : clockF();
|
|
82
82
|
console.log(`Entry-time:`, window.renderClock.stop());
|
|
83
|
-
glitter.share.editerVersion = 'V_14.8.
|
|
83
|
+
glitter.share.editerVersion = 'V_14.8.2';
|
|
84
84
|
glitter.share.start = new Date();
|
|
85
85
|
const vm = {
|
|
86
86
|
appConfig: [],
|
package/lowcode/Entry.ts
CHANGED
|
@@ -82,7 +82,7 @@ export class Entry {
|
|
|
82
82
|
|
|
83
83
|
(window as any).renderClock = (window as any).renderClock ?? clockF();
|
|
84
84
|
console.log(`Entry-time:`, (window as any).renderClock.stop());
|
|
85
|
-
glitter.share.editerVersion = 'V_14.8.
|
|
85
|
+
glitter.share.editerVersion = 'V_14.8.2';
|
|
86
86
|
glitter.share.start = new Date();
|
|
87
87
|
const vm: {
|
|
88
88
|
appConfig: any;
|
|
@@ -7,6 +7,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
7
7
|
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
8
8
|
});
|
|
9
9
|
};
|
|
10
|
+
import { OrderDetail } from './models.js';
|
|
10
11
|
import { ShareDialog } from '../../glitterBundle/dialog/ShareDialog.js';
|
|
11
12
|
import { ApiShop } from '../../glitter-base/route/shopping.js';
|
|
12
13
|
import { EditorElem } from '../../glitterBundle/plugins/editor-elem.js';
|
|
@@ -351,8 +352,8 @@ flex-shrink: 0;"
|
|
|
351
352
|
dialog.errorMessage({ text: '查無此會員' });
|
|
352
353
|
}
|
|
353
354
|
else {
|
|
354
|
-
|
|
355
|
-
gvc.notifyDataChange(
|
|
355
|
+
OrderDetail.singleInstance.user_info.email = user.response.userData.email;
|
|
356
|
+
gvc.notifyDataChange(['checkout-page']);
|
|
356
357
|
}
|
|
357
358
|
}));
|
|
358
359
|
})}"
|
|
@@ -379,8 +379,8 @@ flex-shrink: 0;"
|
|
|
379
379
|
if (!user.response || !user.response.account) {
|
|
380
380
|
dialog.errorMessage({text: '查無此會員'});
|
|
381
381
|
} else {
|
|
382
|
-
|
|
383
|
-
gvc.notifyDataChange(
|
|
382
|
+
OrderDetail.singleInstance.user_info.email = user.response.userData.email;
|
|
383
|
+
gvc.notifyDataChange(['checkout-page']);
|
|
384
384
|
}
|
|
385
385
|
})
|
|
386
386
|
})}"
|