@feedmepos/mf-transaction 0.0.23 → 0.0.24
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/README.md +7 -28
- package/dist/{App-mYNB5Fxn.js → App-C1awdYK1.js} +1 -1
- package/dist/{Receipt-C5y6QkRz.js → Receipt-CxICe2eu.js} +18875 -18710
- package/dist/{app-k9bCbSNc.js → app-Catx3bTf.js} +6 -4
- package/dist/app.js +1 -1
- package/dist/apps/mf-transaction/src/api/bill/index.d.ts +2 -0
- package/dist/apps/mf-transaction/src/app.d.ts +2 -0
- package/dist/apps/mf-transaction/src/views/receipt/detail/transaction/ReceiptTransaction.vue.d.ts +14 -0
- package/dist/apps/mf-transaction/tsconfig.app.tsbuildinfo +1 -1
- package/dist/{index-DkCUBXQb.js → index-qeW9RLv9.js} +1206 -1206
- package/dist/{index.es-Bgillj3g.js → index.es-C0Yw3dPD.js} +4 -4
- package/dist/packages/shared/src/components/form/DynamicSheet.vue.d.ts +19 -0
- package/dist/packages/shared/src/components/layout/ListLayout.vue.d.ts +2 -0
- package/dist/packages/shared/src/composable/prompt.d.ts +9 -0
- package/dist/packages/shared/src/composable/sheet.d.ts +17 -0
- package/dist/packages/shared/src/helpers/string.d.ts +12 -0
- package/package.json +1 -1
|
@@ -94,7 +94,8 @@ const N = /* @__PURE__ */ m({
|
|
|
94
94
|
tabs: {
|
|
95
95
|
receipt: "Receipt",
|
|
96
96
|
activity: "Activity",
|
|
97
|
-
orderRecords: "Order records"
|
|
97
|
+
orderRecords: "Order records",
|
|
98
|
+
transaction: "Transactions"
|
|
98
99
|
},
|
|
99
100
|
footer: {
|
|
100
101
|
creditInfo: "Credit Info",
|
|
@@ -151,7 +152,8 @@ const N = /* @__PURE__ */ m({
|
|
|
151
152
|
tabs: {
|
|
152
153
|
receipt: "收据",
|
|
153
154
|
activity: "活动",
|
|
154
|
-
orderRecords: "订单记录"
|
|
155
|
+
orderRecords: "订单记录",
|
|
156
|
+
transaction: "交易记录"
|
|
155
157
|
},
|
|
156
158
|
footer: {
|
|
157
159
|
creditInfo: "积分信息",
|
|
@@ -181,12 +183,12 @@ const N = /* @__PURE__ */ m({
|
|
|
181
183
|
{
|
|
182
184
|
path: "/receipt",
|
|
183
185
|
name: p,
|
|
184
|
-
component: f(() => import("./Receipt-
|
|
186
|
+
component: f(() => import("./Receipt-CxICe2eu.js").then((e) => e.R))
|
|
185
187
|
}
|
|
186
188
|
], L = {
|
|
187
189
|
"en-US": T,
|
|
188
190
|
"zh-CN": A
|
|
189
|
-
}, O = f(() => import("./App-
|
|
191
|
+
}, O = f(() => import("./App-C1awdYK1.js"));
|
|
190
192
|
export {
|
|
191
193
|
O as F,
|
|
192
194
|
N as _,
|
package/dist/app.js
CHANGED
|
@@ -38,6 +38,7 @@ export declare const i18nMessages: {
|
|
|
38
38
|
receipt: string;
|
|
39
39
|
activity: string;
|
|
40
40
|
orderRecords: string;
|
|
41
|
+
transaction: string;
|
|
41
42
|
};
|
|
42
43
|
footer: {
|
|
43
44
|
creditInfo: string;
|
|
@@ -96,6 +97,7 @@ export declare const i18nMessages: {
|
|
|
96
97
|
receipt: string;
|
|
97
98
|
activity: string;
|
|
98
99
|
orderRecords: string;
|
|
100
|
+
transaction: string;
|
|
99
101
|
};
|
|
100
102
|
footer: {
|
|
101
103
|
creditInfo: string;
|
package/dist/apps/mf-transaction/src/views/receipt/detail/transaction/ReceiptTransaction.vue.d.ts
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { type PropType } from "vue";
|
|
2
|
+
import type { Receipt } from "@/views/receipt/receipt";
|
|
3
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
|
+
receipt: {
|
|
5
|
+
type: PropType<Receipt>;
|
|
6
|
+
required: true;
|
|
7
|
+
};
|
|
8
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
9
|
+
receipt: {
|
|
10
|
+
type: PropType<Receipt>;
|
|
11
|
+
required: true;
|
|
12
|
+
};
|
|
13
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
14
|
+
export default _default;
|