xyvcard-paper-buyer 0.0.52 → 0.0.53
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 +51 -51
- package/dist/{applyEdit-xjYBzFbb.mjs → applyEdit-CVBHWTtq.mjs} +14 -14
- package/dist/{confirm-BK-aSN_z.mjs → confirm-Be02OkOA.mjs} +16 -16
- package/dist/{edit-DFyOnrzr.mjs → edit-1PaZ9XLl.mjs} +12 -12
- package/dist/{edit-Omp_CxC3.mjs → edit-B3vIbXsy.mjs} +1 -1
- package/dist/{index-D043eLPj.mjs → index-BuhpHQLA.mjs} +1 -1
- package/dist/{index-CNxs6SEe.mjs → index-jeaiOykS.mjs} +13 -13
- package/dist/index.mjs +2 -2
- package/dist/info-nXaW5Goc.mjs +185 -0
- package/dist/{invoice-AqP1572z.mjs → invoice-Dfe-E7as.mjs} +2 -2
- package/dist/{invoiceEdit-BkCY1bqD.mjs → invoiceEdit-DEBzo40D.mjs} +2 -2
- package/dist/{invoiceView-B80V7jLe.mjs → invoiceView-CbwAZO70.mjs} +2 -2
- package/dist/{list-B4yYlD1K.mjs → list-no3QEI5P.mjs} +1 -1
- package/dist/{onlineBanking-CdDAY0YQ.mjs → onlineBanking-e57OBfmj.mjs} +1 -1
- package/dist/{orderAddress-BBFS2Jys.mjs → orderAddress-CqIRyskd.mjs} +2 -2
- package/dist/orderInfo-DxGqjCbr.mjs +309 -0
- package/dist/{orderPaper-DUCuNxKR.mjs → orderPaper-af69zWms.mjs} +1 -1
- package/dist/{payment-C1UwHZy4.mjs → payment-BWhe3mhK.mjs} +7 -7
- package/dist/{prompt-DQX4apPU.mjs → prompt-CF5J3V95.mjs} +1 -1
- package/dist/{sendDialog-BVaPpA-9.mjs → sendDialog-yCtEkv8S.mjs} +4 -4
- package/dist/style.css +1 -1
- package/dist/{userInvoice-DPxbKmv9.mjs → userInvoice-CDsynyWz.mjs} +1 -1
- package/dist/{userInvoice.vue_vue_type_script_setup_true_lang-3eHl8CCv.mjs → userInvoice.vue_vue_type_script_setup_true_lang-Bzqz4vIJ.mjs} +48 -48
- package/package.json +60 -60
- package/dist/info-BmV7cZbD.mjs +0 -185
- package/dist/orderInfo-BSPKYn7H.mjs +0 -309
- package/dts/utils/momentPlugin.d.ts +0 -5
- package/dts/views/buyer/order-newspaper/payment copy.vue.d.ts +0 -2
package/README.md
CHANGED
|
@@ -1,51 +1,51 @@
|
|
|
1
|
-
# pnpm publish --no-git-checks
|
|
2
|
-
npm config set registry https://registry.npmjs.org/
|
|
3
|
-
|
|
4
|
-
# pnpm install
|
|
5
|
-
npm config set registry https://registry.npmmirror.com/
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
This template should help get you started developing with Vue 3 in Vite.
|
|
9
|
-
|
|
10
|
-
## Recommended IDE Setup
|
|
11
|
-
|
|
12
|
-
[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin).
|
|
13
|
-
|
|
14
|
-
## Type Support for `.vue` Imports in TS
|
|
15
|
-
|
|
16
|
-
TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types.
|
|
17
|
-
|
|
18
|
-
If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps:
|
|
19
|
-
|
|
20
|
-
1. Disable the built-in TypeScript Extension
|
|
21
|
-
1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette
|
|
22
|
-
2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)`
|
|
23
|
-
2. Reload the VSCode window by running `Developer: Reload Window` from the command palette.
|
|
24
|
-
|
|
25
|
-
## Customize configuration
|
|
26
|
-
|
|
27
|
-
See [Vite Configuration Reference](https://vitejs.dev/config/).
|
|
28
|
-
|
|
29
|
-
## Project Setup
|
|
30
|
-
|
|
31
|
-
```sh
|
|
32
|
-
pnpm install
|
|
33
|
-
```
|
|
34
|
-
|
|
35
|
-
### Compile and Hot-Reload for Development
|
|
36
|
-
|
|
37
|
-
```sh
|
|
38
|
-
pnpm dev
|
|
39
|
-
```
|
|
40
|
-
|
|
41
|
-
### Type-Check, Compile and Minify for Production
|
|
42
|
-
|
|
43
|
-
```sh
|
|
44
|
-
pnpm build
|
|
45
|
-
```
|
|
46
|
-
|
|
47
|
-
### Lint with [ESLint](https://eslint.org/)
|
|
48
|
-
|
|
49
|
-
```sh
|
|
50
|
-
pnpm lint
|
|
51
|
-
```
|
|
1
|
+
# pnpm publish --no-git-checks
|
|
2
|
+
npm config set registry https://registry.npmjs.org/
|
|
3
|
+
|
|
4
|
+
# pnpm install
|
|
5
|
+
npm config set registry https://registry.npmmirror.com/
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
This template should help get you started developing with Vue 3 in Vite.
|
|
9
|
+
|
|
10
|
+
## Recommended IDE Setup
|
|
11
|
+
|
|
12
|
+
[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin).
|
|
13
|
+
|
|
14
|
+
## Type Support for `.vue` Imports in TS
|
|
15
|
+
|
|
16
|
+
TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types.
|
|
17
|
+
|
|
18
|
+
If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps:
|
|
19
|
+
|
|
20
|
+
1. Disable the built-in TypeScript Extension
|
|
21
|
+
1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette
|
|
22
|
+
2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)`
|
|
23
|
+
2. Reload the VSCode window by running `Developer: Reload Window` from the command palette.
|
|
24
|
+
|
|
25
|
+
## Customize configuration
|
|
26
|
+
|
|
27
|
+
See [Vite Configuration Reference](https://vitejs.dev/config/).
|
|
28
|
+
|
|
29
|
+
## Project Setup
|
|
30
|
+
|
|
31
|
+
```sh
|
|
32
|
+
pnpm install
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
### Compile and Hot-Reload for Development
|
|
36
|
+
|
|
37
|
+
```sh
|
|
38
|
+
pnpm dev
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
### Type-Check, Compile and Minify for Production
|
|
42
|
+
|
|
43
|
+
```sh
|
|
44
|
+
pnpm build
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
### Lint with [ESLint](https://eslint.org/)
|
|
48
|
+
|
|
49
|
+
```sh
|
|
50
|
+
pnpm lint
|
|
51
|
+
```
|
|
@@ -4,17 +4,17 @@ import "element-plus";
|
|
|
4
4
|
import { routerUtil as D } from "jmash-core";
|
|
5
5
|
import { useRouter as Q, useRoute as W } from "vue-router";
|
|
6
6
|
import { D as U } from "./index-Knr6dYOL.mjs";
|
|
7
|
-
import { _ as X, u as Y } from "./userInvoice.vue_vue_type_script_setup_true_lang-
|
|
7
|
+
import { _ as X, u as Y } from "./userInvoice.vue_vue_type_script_setup_true_lang-Bzqz4vIJ.mjs";
|
|
8
8
|
import { o as Z } from "./index-BCt6P3MY.mjs";
|
|
9
9
|
import { E as x } from "./el-message-VSzNakoG.mjs";
|
|
10
10
|
import { _ as ee } from "./_plugin-vue_export-helper-CHgC5LLL.mjs";
|
|
11
11
|
const le = { class: "app-container" }, oe = { class: "search-container" }, te = { class: "form-footer" }, ae = /* @__PURE__ */ J({
|
|
12
12
|
__name: "applyEdit",
|
|
13
13
|
setup(ne) {
|
|
14
|
-
const I = Q(), _ = W(), { t: u } = O(), b = v(""),
|
|
14
|
+
const I = Q(), _ = W(), { t: u } = O(), b = v(""), f = v([]);
|
|
15
15
|
function F() {
|
|
16
16
|
Y.findMyUserInvoiceList({}).then((e) => {
|
|
17
|
-
|
|
17
|
+
f.value = e.data.results;
|
|
18
18
|
});
|
|
19
19
|
}
|
|
20
20
|
F();
|
|
@@ -29,14 +29,14 @@ const le = { class: "app-container" }, oe = { class: "search-container" }, te =
|
|
|
29
29
|
fppz: [{ required: !0, message: u("lqfpFps.fplxRead"), trigger: "blur" }],
|
|
30
30
|
infoId: [{ required: !0, message: u("lqfpFps.dwmcRead"), trigger: "blur" }]
|
|
31
31
|
}), N = (e) => {
|
|
32
|
-
const l =
|
|
32
|
+
const l = f.value.find(
|
|
33
33
|
(d) => d.infoId === n.infoId
|
|
34
34
|
);
|
|
35
35
|
return !l || l.gmfType !== "person" ? !1 : e.dictCode !== "02";
|
|
36
36
|
};
|
|
37
37
|
function T(e) {
|
|
38
38
|
if (e) {
|
|
39
|
-
const l =
|
|
39
|
+
const l = f.value.find((d) => d.infoId === e);
|
|
40
40
|
l && (b.value = l.nsrsbh || "", n.email = l.sendEmail || "", l.gmfType === "person" && (n.fppz = "02"));
|
|
41
41
|
} else
|
|
42
42
|
b.value = "", n.email = "", n.fppz = "";
|
|
@@ -66,7 +66,7 @@ const le = { class: "app-container" }, oe = { class: "search-container" }, te =
|
|
|
66
66
|
D.closeTagView(_.fullPath, I, !1);
|
|
67
67
|
}
|
|
68
68
|
return (e, l) => {
|
|
69
|
-
const d = r("el-radio"), P = r("el-radio-group"),
|
|
69
|
+
const d = r("el-radio"), P = r("el-radio-group"), m = r("el-form-item"), c = r("el-col"), S = r("el-option"), j = r("el-select"), V = r("el-button"), w = r("el-input"), G = r("el-row"), H = r("el-form");
|
|
70
70
|
return i(), q("div", le, [
|
|
71
71
|
C("div", oe, [
|
|
72
72
|
t(H, {
|
|
@@ -82,7 +82,7 @@ const le = { class: "app-container" }, oe = { class: "search-container" }, te =
|
|
|
82
82
|
default: a(() => [
|
|
83
83
|
t(c, { span: 24 }, {
|
|
84
84
|
default: a(() => [
|
|
85
|
-
t(
|
|
85
|
+
t(m, {
|
|
86
86
|
label: e.$t("lqfpFps.fplx"),
|
|
87
87
|
class: "center-align",
|
|
88
88
|
prop: "fppz"
|
|
@@ -115,7 +115,7 @@ const le = { class: "app-container" }, oe = { class: "search-container" }, te =
|
|
|
115
115
|
}),
|
|
116
116
|
t(c, { span: 24 }, {
|
|
117
117
|
default: a(() => [
|
|
118
|
-
t(
|
|
118
|
+
t(m, {
|
|
119
119
|
label: e.$t("lqfpFps.dwmc"),
|
|
120
120
|
prop: "infoId"
|
|
121
121
|
}, {
|
|
@@ -124,14 +124,14 @@ const le = { class: "app-container" }, oe = { class: "search-container" }, te =
|
|
|
124
124
|
modelValue: s(n).infoId,
|
|
125
125
|
"onUpdate:modelValue": l[1] || (l[1] = (o) => s(n).infoId = o),
|
|
126
126
|
placeholder: e.$t("lqfpFps.dwmcRead"),
|
|
127
|
-
data:
|
|
127
|
+
data: f.value,
|
|
128
128
|
clearable: "",
|
|
129
129
|
filterable: "",
|
|
130
130
|
onChange: T,
|
|
131
131
|
style: { width: "calc(100% - 100px)", "margin-right": "38px" }
|
|
132
132
|
}, {
|
|
133
133
|
default: a(() => [
|
|
134
|
-
(i(!0), q(R, null, z(
|
|
134
|
+
(i(!0), q(R, null, z(f.value, (o) => (i(), y(S, {
|
|
135
135
|
key: o.infoId,
|
|
136
136
|
label: o.gmfmc,
|
|
137
137
|
value: o.infoId
|
|
@@ -157,7 +157,7 @@ const le = { class: "app-container" }, oe = { class: "search-container" }, te =
|
|
|
157
157
|
}),
|
|
158
158
|
t(c, { span: 24 }, {
|
|
159
159
|
default: a(() => [
|
|
160
|
-
t(
|
|
160
|
+
t(m, {
|
|
161
161
|
label: e.$t("lqfpFps.nsrsbh"),
|
|
162
162
|
prop: "nsrsbh"
|
|
163
163
|
}, {
|
|
@@ -177,7 +177,7 @@ const le = { class: "app-container" }, oe = { class: "search-container" }, te =
|
|
|
177
177
|
}),
|
|
178
178
|
t(c, { span: 24 }, {
|
|
179
179
|
default: a(() => [
|
|
180
|
-
t(
|
|
180
|
+
t(m, {
|
|
181
181
|
label: e.$t("lqfpFps.email"),
|
|
182
182
|
prop: "email"
|
|
183
183
|
}, {
|
|
@@ -197,7 +197,7 @@ const le = { class: "app-container" }, oe = { class: "search-container" }, te =
|
|
|
197
197
|
}),
|
|
198
198
|
t(c, { span: 24 }, {
|
|
199
199
|
default: a(() => [
|
|
200
|
-
t(
|
|
200
|
+
t(m, {
|
|
201
201
|
label: e.$t("lqfpFps.remakr"),
|
|
202
202
|
prop: "remark"
|
|
203
203
|
}, {
|
|
@@ -251,7 +251,7 @@ const le = { class: "app-container" }, oe = { class: "search-container" }, te =
|
|
|
251
251
|
]);
|
|
252
252
|
};
|
|
253
253
|
}
|
|
254
|
-
}), be = /* @__PURE__ */ ee(ae, [["__scopeId", "data-v-
|
|
254
|
+
}), be = /* @__PURE__ */ ee(ae, [["__scopeId", "data-v-f42a1c82"]]);
|
|
255
255
|
export {
|
|
256
256
|
be as default
|
|
257
257
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent as Y, mergeModels as h, useModel as U, ref as E, reactive as y, resolveComponent as n, createBlock as H, openBlock as B, withCtx as o, createVNode as e, unref as
|
|
1
|
+
import { defineComponent as Y, mergeModels as h, useModel as U, ref as E, reactive as y, resolveComponent as n, createBlock as H, openBlock as B, withCtx as o, createVNode as e, unref as r, createElementVNode as F, createTextVNode as V, toDisplayString as g } from "vue";
|
|
2
2
|
import { useI18n as K } from "vue-i18n";
|
|
3
3
|
import { useRouter as j, useRoute as O } from "vue-router";
|
|
4
4
|
import { ElMessage as k } from "element-plus";
|
|
@@ -26,7 +26,7 @@ const J = { class: "footer" }, L = /* @__PURE__ */ Y({
|
|
|
26
26
|
}),
|
|
27
27
|
emits: /* @__PURE__ */ h(["close"], ["update:modelValue"]),
|
|
28
28
|
setup(i, { emit: v }) {
|
|
29
|
-
const _ = i, u = U(i, "modelValue"), R = v, { t: c } = K(), P = j(), D = O(), w = E(),
|
|
29
|
+
const _ = i, u = U(i, "modelValue"), R = v, { t: c } = K(), P = j(), D = O(), w = E(), a = y({
|
|
30
30
|
requestId: Math.random() * 10 + ""
|
|
31
31
|
}), q = y({
|
|
32
32
|
opponentAccountNo: [
|
|
@@ -49,7 +49,7 @@ const J = { class: "footer" }, L = /* @__PURE__ */ Y({
|
|
|
49
49
|
if (t)
|
|
50
50
|
try {
|
|
51
51
|
(await z.completedTransfer({
|
|
52
|
-
...
|
|
52
|
+
...a,
|
|
53
53
|
shopPayInfoId: _.confirmKey.shopPayInfoId,
|
|
54
54
|
orderCode: _.confirmKey.orderCode
|
|
55
55
|
})).data === "success" && (k.success(c("common.submitSuccess")), f(), P.push({
|
|
@@ -97,9 +97,9 @@ const J = { class: "footer" }, L = /* @__PURE__ */ Y({
|
|
|
97
97
|
e(T, {
|
|
98
98
|
ref_key: "confirmFormRef",
|
|
99
99
|
ref: w,
|
|
100
|
-
model: a
|
|
100
|
+
model: r(a),
|
|
101
101
|
"label-width": "120px",
|
|
102
|
-
rules:
|
|
102
|
+
rules: r(q),
|
|
103
103
|
style: { "margin-top": "20px" }
|
|
104
104
|
}, {
|
|
105
105
|
default: o(() => [
|
|
@@ -113,8 +113,8 @@ const J = { class: "footer" }, L = /* @__PURE__ */ Y({
|
|
|
113
113
|
}, {
|
|
114
114
|
default: o(() => [
|
|
115
115
|
e(p, {
|
|
116
|
-
modelValue: a
|
|
117
|
-
"onUpdate:modelValue": t[0] || (t[0] = (d) => a
|
|
116
|
+
modelValue: r(a).opponentAccountNo,
|
|
117
|
+
"onUpdate:modelValue": t[0] || (t[0] = (d) => r(a).opponentAccountNo = d),
|
|
118
118
|
placeholder: l.$t("newsPapepr.opponentAccountNoRequired"),
|
|
119
119
|
"show-word-limit": "",
|
|
120
120
|
clearable: ""
|
|
@@ -133,8 +133,8 @@ const J = { class: "footer" }, L = /* @__PURE__ */ Y({
|
|
|
133
133
|
}, {
|
|
134
134
|
default: o(() => [
|
|
135
135
|
e(C, {
|
|
136
|
-
modelValue: a
|
|
137
|
-
"onUpdate:modelValue": t[1] || (t[1] = (d) => a
|
|
136
|
+
modelValue: r(a).tradeDateTime,
|
|
137
|
+
"onUpdate:modelValue": t[1] || (t[1] = (d) => r(a).tradeDateTime = d),
|
|
138
138
|
type: "datetime",
|
|
139
139
|
placeholder: l.$t("newsPapepr.tradeDateTimeRequired"),
|
|
140
140
|
format: "YYYY-MM-DD HH:mm:ss",
|
|
@@ -155,8 +155,8 @@ const J = { class: "footer" }, L = /* @__PURE__ */ Y({
|
|
|
155
155
|
}, {
|
|
156
156
|
default: o(() => [
|
|
157
157
|
e(p, {
|
|
158
|
-
modelValue: a
|
|
159
|
-
"onUpdate:modelValue": t[2] || (t[2] = (d) => a
|
|
158
|
+
modelValue: r(a).bankSerialNo,
|
|
159
|
+
"onUpdate:modelValue": t[2] || (t[2] = (d) => r(a).bankSerialNo = d),
|
|
160
160
|
placeholder: l.$t("newsPapepr.bankSerialNoRequired"),
|
|
161
161
|
"show-word-limit": "",
|
|
162
162
|
clearable: ""
|
|
@@ -175,8 +175,8 @@ const J = { class: "footer" }, L = /* @__PURE__ */ Y({
|
|
|
175
175
|
}, {
|
|
176
176
|
default: o(() => [
|
|
177
177
|
e(p, {
|
|
178
|
-
modelValue: a
|
|
179
|
-
"onUpdate:modelValue": t[3] || (t[3] = (d) => a
|
|
178
|
+
modelValue: r(a).handleRemark,
|
|
179
|
+
"onUpdate:modelValue": t[3] || (t[3] = (d) => r(a).handleRemark = d),
|
|
180
180
|
placeholder: l.$t("newsPapepr.handleRemarkRequired"),
|
|
181
181
|
"show-word-limit": "",
|
|
182
182
|
clearable: ""
|
|
@@ -195,8 +195,8 @@ const J = { class: "footer" }, L = /* @__PURE__ */ Y({
|
|
|
195
195
|
}, {
|
|
196
196
|
default: o(() => [
|
|
197
197
|
e(M, {
|
|
198
|
-
src:
|
|
199
|
-
"preview-src-list": [
|
|
198
|
+
src: r(N),
|
|
199
|
+
"preview-src-list": [r(N)],
|
|
200
200
|
"preview-teleported": "",
|
|
201
201
|
"hide-on-click-modal": "",
|
|
202
202
|
fit: "contain",
|
|
@@ -219,7 +219,7 @@ const J = { class: "footer" }, L = /* @__PURE__ */ Y({
|
|
|
219
219
|
}, 8, ["modelValue", "title", "width"]);
|
|
220
220
|
};
|
|
221
221
|
}
|
|
222
|
-
}), le = /* @__PURE__ */ G(L, [["__scopeId", "data-v-
|
|
222
|
+
}), le = /* @__PURE__ */ G(L, [["__scopeId", "data-v-9dc31f82"]]);
|
|
223
223
|
export {
|
|
224
224
|
le as default
|
|
225
225
|
};
|
|
@@ -70,23 +70,23 @@ const W = { class: "dialog-footer" }, X = /* @__PURE__ */ S({
|
|
|
70
70
|
t.cityName = e;
|
|
71
71
|
});
|
|
72
72
|
}
|
|
73
|
-
const
|
|
73
|
+
const c = f(/* @__PURE__ */ new Map());
|
|
74
74
|
async function B(e) {
|
|
75
75
|
if (!e)
|
|
76
76
|
return "";
|
|
77
|
-
if (
|
|
78
|
-
return
|
|
77
|
+
if (c.value.has(e))
|
|
78
|
+
return c.value.get(e) || e;
|
|
79
79
|
try {
|
|
80
80
|
const r = await C.findByCode({
|
|
81
81
|
regionCode: e
|
|
82
82
|
});
|
|
83
83
|
if (r.data) {
|
|
84
84
|
const o = F(r.data);
|
|
85
|
-
return
|
|
85
|
+
return c.value.set(e, o), o;
|
|
86
86
|
}
|
|
87
87
|
return e;
|
|
88
88
|
} catch {
|
|
89
|
-
return
|
|
89
|
+
return c.value.set(e, e), e;
|
|
90
90
|
}
|
|
91
91
|
}
|
|
92
92
|
function F(e) {
|
|
@@ -116,7 +116,7 @@ const W = { class: "dialog-footer" }, X = /* @__PURE__ */ S({
|
|
|
116
116
|
u.value && (u.value = !1);
|
|
117
117
|
}
|
|
118
118
|
return (e, r) => {
|
|
119
|
-
const o = m("el-input"), s = m("el-form-item"),
|
|
119
|
+
const o = m("el-input"), s = m("el-form-item"), p = m("el-col"), E = m("el-row"), O = m("el-form"), U = m("el-button"), K = m("el-dialog");
|
|
120
120
|
return J(), D(K, {
|
|
121
121
|
modelValue: u.value,
|
|
122
122
|
"onUpdate:modelValue": r[5] || (r[5] = (n) => u.value = n),
|
|
@@ -152,7 +152,7 @@ const W = { class: "dialog-footer" }, X = /* @__PURE__ */ S({
|
|
|
152
152
|
default: a(() => [
|
|
153
153
|
l(E, { gutter: 20 }, {
|
|
154
154
|
default: a(() => [
|
|
155
|
-
l(
|
|
155
|
+
l(p, { span: 24 }, {
|
|
156
156
|
default: a(() => [
|
|
157
157
|
l(s, {
|
|
158
158
|
label: e.$t("orderUserAddress.note"),
|
|
@@ -172,7 +172,7 @@ const W = { class: "dialog-footer" }, X = /* @__PURE__ */ S({
|
|
|
172
172
|
]),
|
|
173
173
|
_: 1
|
|
174
174
|
}),
|
|
175
|
-
l(
|
|
175
|
+
l(p, { span: 24 }, {
|
|
176
176
|
default: a(() => [
|
|
177
177
|
l(s, {
|
|
178
178
|
label: e.$t("orderUserAddress.userName"),
|
|
@@ -192,7 +192,7 @@ const W = { class: "dialog-footer" }, X = /* @__PURE__ */ S({
|
|
|
192
192
|
]),
|
|
193
193
|
_: 1
|
|
194
194
|
}),
|
|
195
|
-
l(
|
|
195
|
+
l(p, { span: 24 }, {
|
|
196
196
|
default: a(() => [
|
|
197
197
|
l(s, {
|
|
198
198
|
label: e.$t("orderUserAddress.mobilePhone"),
|
|
@@ -212,7 +212,7 @@ const W = { class: "dialog-footer" }, X = /* @__PURE__ */ S({
|
|
|
212
212
|
]),
|
|
213
213
|
_: 1
|
|
214
214
|
}),
|
|
215
|
-
l(
|
|
215
|
+
l(p, { span: 24 }, {
|
|
216
216
|
default: a(() => [
|
|
217
217
|
l(s, {
|
|
218
218
|
prop: "provinceName",
|
|
@@ -233,7 +233,7 @@ const W = { class: "dialog-footer" }, X = /* @__PURE__ */ S({
|
|
|
233
233
|
]),
|
|
234
234
|
_: 1
|
|
235
235
|
}),
|
|
236
|
-
l(
|
|
236
|
+
l(p, { span: 24 }, {
|
|
237
237
|
default: a(() => [
|
|
238
238
|
l(s, { prop: "detailInfo" }, {
|
|
239
239
|
default: a(() => [
|
|
@@ -262,7 +262,7 @@ const W = { class: "dialog-footer" }, X = /* @__PURE__ */ S({
|
|
|
262
262
|
}, 8, ["modelValue"]);
|
|
263
263
|
};
|
|
264
264
|
}
|
|
265
|
-
}), te = /* @__PURE__ */ Q(X, [["__scopeId", "data-v-
|
|
265
|
+
}), te = /* @__PURE__ */ Q(X, [["__scopeId", "data-v-3de299e3"]]);
|
|
266
266
|
export {
|
|
267
267
|
te as default
|
|
268
268
|
};
|
|
@@ -254,7 +254,7 @@ const G = { class: "dialog-footer" }, H = /* @__PURE__ */ B({
|
|
|
254
254
|
}, 8, ["modelValue"]);
|
|
255
255
|
};
|
|
256
256
|
}
|
|
257
|
-
}), re = /* @__PURE__ */ C(H, [["__scopeId", "data-v-
|
|
257
|
+
}), re = /* @__PURE__ */ C(H, [["__scopeId", "data-v-f431d268"]]);
|
|
258
258
|
export {
|
|
259
259
|
re as default
|
|
260
260
|
};
|
|
@@ -2,7 +2,7 @@ import { defineComponent as te, ref as C, reactive as T, onActivated as le, reso
|
|
|
2
2
|
import { useTableHooks as re } from "jmash-core";
|
|
3
3
|
import { useI18n as ae } from "vue-i18n";
|
|
4
4
|
import { o as se } from "./index-BP8zUjOw.mjs";
|
|
5
|
-
import de from "./edit-
|
|
5
|
+
import de from "./edit-1PaZ9XLl.mjs";
|
|
6
6
|
const ie = { class: "app-container" }, me = { class: "search-container" }, ue = ["onClick"], pe = ["onClick"], ke = /* @__PURE__ */ te({
|
|
7
7
|
__name: "index",
|
|
8
8
|
setup(ce) {
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { defineComponent as q, ref as x, onMounted as R, onActivated as F, resolveComponent as
|
|
1
|
+
import { defineComponent as q, ref as x, onMounted as R, onActivated as F, resolveComponent as a, createElementBlock as _, openBlock as d, createElementVNode as i, createVNode as o, createBlock as I, createCommentVNode as L, withModifiers as A, withCtx as s, withKeys as B, unref as r, createTextVNode as y, toDisplayString as c, Fragment as M, renderList as Q, isRef as j } from "vue";
|
|
2
2
|
import { useTableHooks as E, fileApi as H } from "jmash-core";
|
|
3
3
|
import { useI18n as K } from "vue-i18n";
|
|
4
4
|
import { useRouter as T } from "vue-router";
|
|
5
5
|
import { o as Y } from "./index-B90ZLkZ9.mjs";
|
|
6
6
|
import { _ as G } from "./_plugin-vue_export-helper-CHgC5LLL.mjs";
|
|
7
|
-
const J = { class: "app-container" }, O = { class: "search-container" }, W = { class: "subscription-container" }, X = ["onClick"], Z = { class: "newspaper-image" }, ee = { class: "dummy-text" }, te = { class: "subscription-info" }, oe = { class: "subscription-title" }, ne = { class: "subscription-price" },
|
|
7
|
+
const J = { class: "app-container" }, O = { class: "search-container" }, W = { class: "subscription-container" }, X = ["onClick"], Z = { class: "newspaper-image" }, ee = { class: "dummy-text" }, te = { class: "subscription-info" }, oe = { class: "subscription-title" }, ne = { class: "subscription-price" }, ae = /* @__PURE__ */ q({
|
|
8
8
|
__name: "index",
|
|
9
|
-
setup(
|
|
9
|
+
setup(se) {
|
|
10
10
|
const k = T(), { t: b } = K(), m = /* @__PURE__ */ new Date(), S = m.getFullYear(), w = String(m.getMonth() + 1).padStart(2, "0"), $ = String(m.getDate()).padStart(2, "0"), n = x({
|
|
11
11
|
curPage: 1,
|
|
12
12
|
pageSize: 10,
|
|
@@ -27,7 +27,7 @@ const J = { class: "app-container" }, O = { class: "search-container" }, W = { c
|
|
|
27
27
|
}), F(() => {
|
|
28
28
|
l.getList();
|
|
29
29
|
}), (p, e) => {
|
|
30
|
-
const C =
|
|
30
|
+
const C = a("el-input"), f = a("el-form-item"), g = a("el-col"), v = a("el-button"), V = a("el-row"), z = a("el-form"), D = a("el-image"), U = a("jmash-pagination");
|
|
31
31
|
return d(), _("div", J, [
|
|
32
32
|
i("div", O, [
|
|
33
33
|
o(z, {
|
|
@@ -38,16 +38,16 @@ const J = { class: "app-container" }, O = { class: "search-container" }, W = { c
|
|
|
38
38
|
onSubmit: e[4] || (e[4] = A(() => {
|
|
39
39
|
}, ["prevent"]))
|
|
40
40
|
}, {
|
|
41
|
-
default:
|
|
41
|
+
default: s(() => [
|
|
42
42
|
o(V, null, {
|
|
43
|
-
default:
|
|
43
|
+
default: s(() => [
|
|
44
44
|
o(g, { span: 6 }, {
|
|
45
|
-
default:
|
|
45
|
+
default: s(() => [
|
|
46
46
|
o(f, {
|
|
47
47
|
label: p.$t("newsPapepr.likeSpuName"),
|
|
48
48
|
prop: "likeSpuName"
|
|
49
49
|
}, {
|
|
50
|
-
default:
|
|
50
|
+
default: s(() => [
|
|
51
51
|
o(C, {
|
|
52
52
|
modelValue: n.value.likeSpuName,
|
|
53
53
|
"onUpdate:modelValue": e[0] || (e[0] = (t) => n.value.likeSpuName = t),
|
|
@@ -62,14 +62,14 @@ const J = { class: "app-container" }, O = { class: "search-container" }, W = { c
|
|
|
62
62
|
_: 1
|
|
63
63
|
}),
|
|
64
64
|
o(g, { span: 18 }, {
|
|
65
|
-
default:
|
|
65
|
+
default: s(() => [
|
|
66
66
|
o(f, { class: "search-btn" }, {
|
|
67
|
-
default:
|
|
67
|
+
default: s(() => [
|
|
68
68
|
o(v, {
|
|
69
69
|
type: "primary",
|
|
70
70
|
onClick: e[2] || (e[2] = (t) => r(l).handleQuery())
|
|
71
71
|
}, {
|
|
72
|
-
default:
|
|
72
|
+
default: s(() => [
|
|
73
73
|
y(c(p.$t("common.search")), 1)
|
|
74
74
|
]),
|
|
75
75
|
_: 1
|
|
@@ -77,7 +77,7 @@ const J = { class: "app-container" }, O = { class: "search-container" }, W = { c
|
|
|
77
77
|
o(v, {
|
|
78
78
|
onClick: e[3] || (e[3] = (t) => r(l).resetQuery())
|
|
79
79
|
}, {
|
|
80
|
-
default:
|
|
80
|
+
default: s(() => [
|
|
81
81
|
y(c(p.$t("common.reset")), 1)
|
|
82
82
|
]),
|
|
83
83
|
_: 1
|
|
@@ -130,7 +130,7 @@ const J = { class: "app-container" }, O = { class: "search-container" }, W = { c
|
|
|
130
130
|
]);
|
|
131
131
|
};
|
|
132
132
|
}
|
|
133
|
-
}), me = /* @__PURE__ */ G(
|
|
133
|
+
}), me = /* @__PURE__ */ G(ae, [["__scopeId", "data-v-4d6a17f3"]]);
|
|
134
134
|
export {
|
|
135
135
|
me as default
|
|
136
136
|
};
|
package/dist/index.mjs
CHANGED
|
@@ -378,7 +378,7 @@ function g(e) {
|
|
|
378
378
|
let i = e.global.getLocaleMessage("en");
|
|
379
379
|
i = d(i, b), e.global.setLocaleMessage("zh-cn", o), e.global.setLocaleMessage("en", i);
|
|
380
380
|
}
|
|
381
|
-
const R = () => import("./index-
|
|
381
|
+
const R = () => import("./index-jeaiOykS.mjs"), w = () => import("./orderPaper-af69zWms.mjs"), P = () => import("./orderAddress-CqIRyskd.mjs"), q = () => import("./orderInfo-DxGqjCbr.mjs"), D = () => import("./payment-BWhe3mhK.mjs"), N = () => import("./invoice-Dfe-E7as.mjs"), z = () => import("./invoiceView-CbwAZO70.mjs"), x = () => import("./applyEdit-CVBHWTtq.mjs"), C = () => import("./invoiceEdit-DEBzo40D.mjs"), k = () => import("./info-nXaW5Goc.mjs"), t = [
|
|
382
382
|
{
|
|
383
383
|
path: "/buyer",
|
|
384
384
|
component: r,
|
|
@@ -544,7 +544,7 @@ const R = () => import("./index-CNxs6SEe.mjs"), w = () => import("./orderPaper-D
|
|
|
544
544
|
scrollBehavior: () => ({ left: 0, top: 0 })
|
|
545
545
|
});
|
|
546
546
|
c.value = T;
|
|
547
|
-
const A = /* @__PURE__ */ Object.assign({ "./views/buyer/order-info/applyEdit.vue": () => import("./applyEdit-
|
|
547
|
+
const A = /* @__PURE__ */ Object.assign({ "./views/buyer/order-info/applyEdit.vue": () => import("./applyEdit-CVBHWTtq.mjs"), "./views/buyer/order-info/index.vue": () => import("./index-CFbuS8W8.mjs"), "./views/buyer/order-info/info.vue": () => import("./info-nXaW5Goc.mjs"), "./views/buyer/order-info/invoice.vue": () => import("./invoice-Dfe-E7as.mjs"), "./views/buyer/order-info/invoiceEdit.vue": () => import("./invoiceEdit-DEBzo40D.mjs"), "./views/buyer/order-info/invoiceView.vue": () => import("./invoiceView-CbwAZO70.mjs"), "./views/buyer/order-info/list.vue": () => import("./list-no3QEI5P.mjs"), "./views/buyer/order-info/sendDialog.vue": () => import("./sendDialog-yCtEkv8S.mjs"), "./views/buyer/order-info/userInvoice.vue": () => import("./userInvoice-CDsynyWz.mjs"), "./views/buyer/order-newspaper/confirm.vue": () => import("./confirm-Be02OkOA.mjs"), "./views/buyer/order-newspaper/edit.vue": () => import("./edit-B3vIbXsy.mjs"), "./views/buyer/order-newspaper/index.vue": () => import("./index-jeaiOykS.mjs"), "./views/buyer/order-newspaper/onlineBanking.vue": () => import("./onlineBanking-e57OBfmj.mjs"), "./views/buyer/order-newspaper/orderAddress.vue": () => import("./orderAddress-CqIRyskd.mjs"), "./views/buyer/order-newspaper/orderInfo.vue": () => import("./orderInfo-DxGqjCbr.mjs"), "./views/buyer/order-newspaper/orderPaper.vue": () => import("./orderPaper-af69zWms.mjs"), "./views/buyer/order-newspaper/payment.vue": () => import("./payment-BWhe3mhK.mjs"), "./views/buyer/order-newspaper/prompt.vue": () => import("./prompt-CF5J3V95.mjs"), "./views/buyer/order-user-address/edit.vue": () => import("./edit-1PaZ9XLl.mjs"), "./views/buyer/order-user-address/index.vue": () => import("./index-BuhpHQLA.mjs") }), M = {
|
|
548
548
|
install(e) {
|
|
549
549
|
l(A, 7), f(t), g(h);
|
|
550
550
|
}
|