xyvcard-paper-buyer 0.0.29 → 0.0.31
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/dist/{applyEdit-BBkGmNz4.mjs → applyEdit-DYinV0av.mjs} +22 -22
- package/dist/assets/3a1c0fd6fbc19dd2.png +0 -0
- package/dist/confirm-BBtbi4mX.mjs +227 -0
- package/dist/{edit-CEqukYUY.mjs → edit-BgQo-uqd.mjs} +24 -24
- package/dist/{edit-CCUAR44E.mjs → edit-DHXk9uMQ.mjs} +84 -84
- package/dist/el-message-VSzNakoG.mjs +1381 -0
- package/dist/{index-CT0KG-ax.mjs → index-1iQKY0yJ.mjs} +512 -494
- package/dist/{index-izvLgG-Q.mjs → index-BCSYWkW7.mjs} +159 -163
- package/dist/{index-oEQVLdND.mjs → index-DISDK9IB.mjs} +1 -1
- package/dist/index-Dph_ktOL.mjs +9456 -0
- package/dist/{index-3POeZkeU.mjs → index-ky8hEDAn.mjs} +35 -35
- package/dist/index-sU6sAHrn.mjs +35 -0
- package/dist/index.mjs +56 -30
- package/dist/info-B4ow2tzV.mjs +194 -0
- package/dist/{invoiceEdit-CezFMQuV.mjs → invoiceEdit-CILq1n3W.mjs} +18 -18
- package/dist/{invoiceView-CQ8xpAcH.mjs → invoiceView-ClfMLUV3.mjs} +37 -37
- package/dist/onlineBanking-oV-IPpiL.mjs +206 -0
- package/dist/{orderAddress-BkCadi1G.mjs → orderAddress-CKllpjjU.mjs} +79 -76
- package/dist/orderInfo-BVT4H9ew.mjs +309 -0
- package/dist/{orderPaper-DfDpfRek.mjs → orderPaper-DpSTDYX4.mjs} +35 -37
- package/dist/{payment-CaWj9re7.mjs → payment-BkxF9Q0m.mjs} +14 -14
- package/dist/prompt-CsoFkmiu.mjs +76 -0
- package/dist/style.css +1 -1
- package/dts/api/buyer/order-newspaper/index.d.ts +8 -1
- package/dts/api/buyer/order-newspaper/types.d.ts +32 -0
- package/dts/lang/order/zh-cn.d.ts +17 -0
- package/dts/router/index.d.ts +2 -1
- package/dts/utils/index.d.ts +1 -0
- package/dts/utils/signature.d.ts +7 -0
- package/dts/views/buyer/order-newspaper/confirm.vue.d.ts +39 -0
- package/dts/views/buyer/order-newspaper/onlineBanking.vue.d.ts +43 -0
- package/dts/views/buyer/order-newspaper/orderInfo.vue.d.ts +2 -0
- package/dts/views/buyer/order-newspaper/prompt.vue.d.ts +45 -0
- package/package.json +2 -2
- package/dist/el-message-D5NtBelf.mjs +0 -1229
- package/dist/index-C8xOGCSg.mjs +0 -73
- package/dist/index-DOOUDqve.mjs +0 -110
- package/dist/info-BpCTqM6V.mjs +0 -189
- package/dist/payment copy-CyZWiAyq.mjs +0 -69
package/dist/index-C8xOGCSg.mjs
DELETED
|
@@ -1,73 +0,0 @@
|
|
|
1
|
-
import { useUserStore as t, clearEmpty as n, request as o } from "jmash-core";
|
|
2
|
-
class s {
|
|
3
|
-
getKey(e) {
|
|
4
|
-
return {};
|
|
5
|
-
}
|
|
6
|
-
// 查询翻页信息用户地址
|
|
7
|
-
findPage(e) {
|
|
8
|
-
e.curPage || (e.curPage = 1);
|
|
9
|
-
const r = t().user.tenant;
|
|
10
|
-
return n(e), o({
|
|
11
|
-
url: "/v1/front/goods/goods_page/" + r,
|
|
12
|
-
method: "get",
|
|
13
|
-
params: e
|
|
14
|
-
});
|
|
15
|
-
}
|
|
16
|
-
/**
|
|
17
|
-
* 根据商品SPU的ID进行查询
|
|
18
|
-
* @param query 商品SPU的查询键,包含需要查询的SPU ID
|
|
19
|
-
* @returns 返回一个AxiosPromise对象,解析为商品SPU模型
|
|
20
|
-
*/
|
|
21
|
-
findById(e) {
|
|
22
|
-
const r = t().user.tenant;
|
|
23
|
-
return n(e), o({
|
|
24
|
-
url: "/v1/goods/goods_spu/id/" + r + "/" + e.spuId,
|
|
25
|
-
method: "get"
|
|
26
|
-
});
|
|
27
|
-
}
|
|
28
|
-
// 创建报刊订单
|
|
29
|
-
create(e) {
|
|
30
|
-
return e.tenant = t().user.tenant, n(e), o({
|
|
31
|
-
url: "/v1/front/order/order_info",
|
|
32
|
-
method: "post",
|
|
33
|
-
data: e
|
|
34
|
-
});
|
|
35
|
-
}
|
|
36
|
-
// 订单支付结果查询
|
|
37
|
-
queryPayResult(e) {
|
|
38
|
-
const r = t().user.tenant;
|
|
39
|
-
return n(e), o({
|
|
40
|
-
url: "/v1/front/order/pay_query/" + r,
|
|
41
|
-
method: "get",
|
|
42
|
-
params: e
|
|
43
|
-
});
|
|
44
|
-
}
|
|
45
|
-
// 查询订单管理
|
|
46
|
-
findOrderInfoById(e) {
|
|
47
|
-
return e.tenant = t().user.tenant, n(e), o({
|
|
48
|
-
url: "/v1/front/order/order_info/id/" + e.tenant + "/" + e.orderId,
|
|
49
|
-
method: "GET"
|
|
50
|
-
});
|
|
51
|
-
}
|
|
52
|
-
// 创建实体订单收货地址
|
|
53
|
-
createOrderAddress(e) {
|
|
54
|
-
return e.tenant = t().user.tenant, n(e), o({
|
|
55
|
-
url: "/v1/order/order_address",
|
|
56
|
-
method: "post",
|
|
57
|
-
data: e
|
|
58
|
-
});
|
|
59
|
-
}
|
|
60
|
-
// 查工会名称
|
|
61
|
-
findUnionName(e) {
|
|
62
|
-
const r = t().user.tenant;
|
|
63
|
-
return n(e), o({
|
|
64
|
-
url: "/v1/union/union_org/user/" + r,
|
|
65
|
-
method: "get",
|
|
66
|
-
params: e
|
|
67
|
-
});
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
const a = new s();
|
|
71
|
-
export {
|
|
72
|
-
a as o
|
|
73
|
-
};
|
package/dist/index-DOOUDqve.mjs
DELETED
|
@@ -1,110 +0,0 @@
|
|
|
1
|
-
import { defineComponent as e, createElementBlock as a, openBlock as l, createElementVNode as _ } from "vue";
|
|
2
|
-
/*! Element Plus Icons Vue v2.3.1 */
|
|
3
|
-
var c = /* @__PURE__ */ e({
|
|
4
|
-
name: "CircleCloseFilled",
|
|
5
|
-
__name: "circle-close-filled",
|
|
6
|
-
setup(t) {
|
|
7
|
-
return (r, s) => (l(), a("svg", {
|
|
8
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
-
viewBox: "0 0 1024 1024"
|
|
10
|
-
}, [
|
|
11
|
-
_("path", {
|
|
12
|
-
fill: "currentColor",
|
|
13
|
-
d: "M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m0 393.664L407.936 353.6a38.4 38.4 0 1 0-54.336 54.336L457.664 512 353.6 616.064a38.4 38.4 0 1 0 54.336 54.336L512 566.336 616.064 670.4a38.4 38.4 0 1 0 54.336-54.336L566.336 512 670.4 407.936a38.4 38.4 0 1 0-54.336-54.336z"
|
|
14
|
-
})
|
|
15
|
-
]));
|
|
16
|
-
}
|
|
17
|
-
}), f = c, n = /* @__PURE__ */ e({
|
|
18
|
-
name: "Close",
|
|
19
|
-
__name: "close",
|
|
20
|
-
setup(t) {
|
|
21
|
-
return (r, s) => (l(), a("svg", {
|
|
22
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
23
|
-
viewBox: "0 0 1024 1024"
|
|
24
|
-
}, [
|
|
25
|
-
_("path", {
|
|
26
|
-
fill: "currentColor",
|
|
27
|
-
d: "M764.288 214.592 512 466.88 259.712 214.592a31.936 31.936 0 0 0-45.12 45.12L466.752 512 214.528 764.224a31.936 31.936 0 1 0 45.12 45.184L512 557.184l252.288 252.288a31.936 31.936 0 0 0 45.12-45.12L557.12 512.064l252.288-252.352a31.936 31.936 0 1 0-45.12-45.184z"
|
|
28
|
-
})
|
|
29
|
-
]));
|
|
30
|
-
}
|
|
31
|
-
}), w = n, o = /* @__PURE__ */ e({
|
|
32
|
-
name: "InfoFilled",
|
|
33
|
-
__name: "info-filled",
|
|
34
|
-
setup(t) {
|
|
35
|
-
return (r, s) => (l(), a("svg", {
|
|
36
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
37
|
-
viewBox: "0 0 1024 1024"
|
|
38
|
-
}, [
|
|
39
|
-
_("path", {
|
|
40
|
-
fill: "currentColor",
|
|
41
|
-
d: "M512 64a448 448 0 1 1 0 896.064A448 448 0 0 1 512 64m67.2 275.072c33.28 0 60.288-23.104 60.288-57.344s-27.072-57.344-60.288-57.344c-33.28 0-60.16 23.104-60.16 57.344s26.88 57.344 60.16 57.344M590.912 699.2c0-6.848 2.368-24.64 1.024-34.752l-52.608 60.544c-10.88 11.456-24.512 19.392-30.912 17.28a12.992 12.992 0 0 1-8.256-14.72l87.68-276.992c7.168-35.136-12.544-67.2-54.336-71.296-44.096 0-108.992 44.736-148.48 101.504 0 6.784-1.28 23.68.064 33.792l52.544-60.608c10.88-11.328 23.552-19.328 29.952-17.152a12.8 12.8 0 0 1 7.808 16.128L388.48 728.576c-10.048 32.256 8.96 63.872 55.04 71.04 67.84 0 107.904-43.648 147.456-100.416z"
|
|
42
|
-
})
|
|
43
|
-
]));
|
|
44
|
-
}
|
|
45
|
-
}), m = o, u = /* @__PURE__ */ e({
|
|
46
|
-
name: "Loading",
|
|
47
|
-
__name: "loading",
|
|
48
|
-
setup(t) {
|
|
49
|
-
return (r, s) => (l(), a("svg", {
|
|
50
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
51
|
-
viewBox: "0 0 1024 1024"
|
|
52
|
-
}, [
|
|
53
|
-
_("path", {
|
|
54
|
-
fill: "currentColor",
|
|
55
|
-
d: "M512 64a32 32 0 0 1 32 32v192a32 32 0 0 1-64 0V96a32 32 0 0 1 32-32m0 640a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V736a32 32 0 0 1 32-32m448-192a32 32 0 0 1-32 32H736a32 32 0 1 1 0-64h192a32 32 0 0 1 32 32m-640 0a32 32 0 0 1-32 32H96a32 32 0 0 1 0-64h192a32 32 0 0 1 32 32M195.2 195.2a32 32 0 0 1 45.248 0L376.32 331.008a32 32 0 0 1-45.248 45.248L195.2 240.448a32 32 0 0 1 0-45.248zm452.544 452.544a32 32 0 0 1 45.248 0L828.8 783.552a32 32 0 0 1-45.248 45.248L647.744 692.992a32 32 0 0 1 0-45.248zM828.8 195.264a32 32 0 0 1 0 45.184L692.992 376.32a32 32 0 0 1-45.248-45.248l135.808-135.808a32 32 0 0 1 45.248 0m-452.544 452.48a32 32 0 0 1 0 45.248L240.448 828.8a32 32 0 0 1-45.248-45.248l135.808-135.808a32 32 0 0 1 45.248 0z"
|
|
56
|
-
})
|
|
57
|
-
]));
|
|
58
|
-
}
|
|
59
|
-
}), g = u, p = /* @__PURE__ */ e({
|
|
60
|
-
name: "Position",
|
|
61
|
-
__name: "position",
|
|
62
|
-
setup(t) {
|
|
63
|
-
return (r, s) => (l(), a("svg", {
|
|
64
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
65
|
-
viewBox: "0 0 1024 1024"
|
|
66
|
-
}, [
|
|
67
|
-
_("path", {
|
|
68
|
-
fill: "currentColor",
|
|
69
|
-
d: "m249.6 417.088 319.744 43.072 39.168 310.272L845.12 178.88 249.6 417.088zm-129.024 47.168a32 32 0 0 1-7.68-61.44l777.792-311.04a32 32 0 0 1 41.6 41.6l-310.336 775.68a32 32 0 0 1-61.44-7.808L512 516.992l-391.424-52.736z"
|
|
70
|
-
})
|
|
71
|
-
]));
|
|
72
|
-
}
|
|
73
|
-
}), h = p, i = /* @__PURE__ */ e({
|
|
74
|
-
name: "SuccessFilled",
|
|
75
|
-
__name: "success-filled",
|
|
76
|
-
setup(t) {
|
|
77
|
-
return (r, s) => (l(), a("svg", {
|
|
78
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
79
|
-
viewBox: "0 0 1024 1024"
|
|
80
|
-
}, [
|
|
81
|
-
_("path", {
|
|
82
|
-
fill: "currentColor",
|
|
83
|
-
d: "M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m-55.808 536.384-99.52-99.584a38.4 38.4 0 1 0-54.336 54.336l126.72 126.72a38.272 38.272 0 0 0 54.336 0l262.4-262.464a38.4 38.4 0 1 0-54.272-54.336z"
|
|
84
|
-
})
|
|
85
|
-
]));
|
|
86
|
-
}
|
|
87
|
-
}), x = i, v = /* @__PURE__ */ e({
|
|
88
|
-
name: "WarningFilled",
|
|
89
|
-
__name: "warning-filled",
|
|
90
|
-
setup(t) {
|
|
91
|
-
return (r, s) => (l(), a("svg", {
|
|
92
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
93
|
-
viewBox: "0 0 1024 1024"
|
|
94
|
-
}, [
|
|
95
|
-
_("path", {
|
|
96
|
-
fill: "currentColor",
|
|
97
|
-
d: "M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m0 192a58.432 58.432 0 0 0-58.24 63.744l23.36 256.384a35.072 35.072 0 0 0 69.76 0l23.296-256.384A58.432 58.432 0 0 0 512 256m0 512a51.2 51.2 0 1 0 0-102.4 51.2 51.2 0 0 0 0 102.4"
|
|
98
|
-
})
|
|
99
|
-
]));
|
|
100
|
-
}
|
|
101
|
-
}), L = v;
|
|
102
|
-
export {
|
|
103
|
-
w as a,
|
|
104
|
-
f as c,
|
|
105
|
-
m as i,
|
|
106
|
-
g as l,
|
|
107
|
-
h as p,
|
|
108
|
-
x as s,
|
|
109
|
-
L as w
|
|
110
|
-
};
|
package/dist/info-BpCTqM6V.mjs
DELETED
|
@@ -1,189 +0,0 @@
|
|
|
1
|
-
import { defineComponent as Y, ref as P, onMounted as Z, resolveComponent as a, createElementBlock as x, openBlock as M, createVNode as s, withCtx as l, createElementVNode as e, unref as m, toDisplayString as r, createTextVNode as p, createBlock as ee, createCommentVNode as oe } from "vue";
|
|
2
|
-
import { D as y } from "./index-BGqp7CRm.mjs";
|
|
3
|
-
import { o as F } from "./index-CT0KG-ax.mjs";
|
|
4
|
-
import { fileApi as G, routerUtil as te } from "jmash-core";
|
|
5
|
-
import { useRouter as se, useRoute as le } from "vue-router";
|
|
6
|
-
import { goodsSpuApi as ne } from "xyvcard-paper-goods";
|
|
7
|
-
import { _ as re } from "./_plugin-vue_export-helper-CHgC5LLL.mjs";
|
|
8
|
-
const ie = { class: "app-container" }, ae = { class: "subscription-container" }, de = { class: "newspaper-image" }, ce = { class: "shanxi-worker-paper" }, ue = { class: "subscription-info" }, me = { class: "magazine-title" }, pe = { class: "info-item" }, _e = { class: "info-label" }, fe = { class: "info-item" }, be = { class: "info-label" }, ve = { class: "price" }, he = { class: "price-value" }, Ie = { class: "subscription-containers" }, ge = { class: "cell-item" }, ye = { class: "cell-item" }, Ee = { class: "cell-item" }, Pe = { class: "dialog-footer" }, ke = /* @__PURE__ */ Y({
|
|
9
|
-
__name: "info",
|
|
10
|
-
setup(Le) {
|
|
11
|
-
const H = se(), E = le(), k = P([]);
|
|
12
|
-
y.goodsCategoryListBizLayDict.useValues();
|
|
13
|
-
function J(o) {
|
|
14
|
-
o.mobileEncrypt = !o.mobileEncrypt;
|
|
15
|
-
}
|
|
16
|
-
function K() {
|
|
17
|
-
te.closeTagView(E.fullPath, H, !1);
|
|
18
|
-
}
|
|
19
|
-
const t = P(), L = P([]);
|
|
20
|
-
function Q() {
|
|
21
|
-
F.findById({ orderId: E.query.orderId }).then(({ data: o }) => {
|
|
22
|
-
var n, _, d, f, i, b, v, h, I, c;
|
|
23
|
-
t.value = [o], console.log((i = (f = (d = (_ = (n = t.value) == null ? void 0 : n[0]) == null ? void 0 : _.orderItemList) == null ? void 0 : d.results) == null ? void 0 : f[0]) == null ? void 0 : i.spuId), ne.findById({
|
|
24
|
-
spuId: (c = (I = (h = (v = (b = t.value) == null ? void 0 : b[0]) == null ? void 0 : v.orderItemList) == null ? void 0 : h.results) == null ? void 0 : I[0]) == null ? void 0 : c.spuId
|
|
25
|
-
}).then(({ data: u }) => {
|
|
26
|
-
L.value = u.categoryIds, console.log(u.categoryIds);
|
|
27
|
-
});
|
|
28
|
-
});
|
|
29
|
-
}
|
|
30
|
-
function X() {
|
|
31
|
-
F.findOrderAddressList({ orderId: E.query.orderId }).then(({ data: o }) => {
|
|
32
|
-
k.value = o.results;
|
|
33
|
-
});
|
|
34
|
-
}
|
|
35
|
-
return Z(() => {
|
|
36
|
-
Q(), X();
|
|
37
|
-
}), (o, n) => {
|
|
38
|
-
const _ = a("el-image"), d = a("el-descriptions-item"), f = a("el-descriptions"), i = a("el-table-column"), b = a("jmash-mobileIns-component"), v = a("el-table"), h = a("el-button"), I = a("el-card");
|
|
39
|
-
return M(), x("div", ie, [
|
|
40
|
-
s(I, { shadow: "never" }, {
|
|
41
|
-
footer: l(() => [
|
|
42
|
-
e("div", Pe, [
|
|
43
|
-
s(h, {
|
|
44
|
-
type: "primary",
|
|
45
|
-
onClick: K
|
|
46
|
-
}, {
|
|
47
|
-
default: l(() => [
|
|
48
|
-
p(r(o.$t("common.back")), 1)
|
|
49
|
-
]),
|
|
50
|
-
_: 1
|
|
51
|
-
})
|
|
52
|
-
])
|
|
53
|
-
]),
|
|
54
|
-
default: l(() => {
|
|
55
|
-
var c, u, N, $, w, V, B, C, D, A, S, U, z, T, j, O, W, q, R;
|
|
56
|
-
return [
|
|
57
|
-
n[1] || (n[1] = e("div", { class: "title-content" }, "订单详情", -1)),
|
|
58
|
-
e("div", ae, [
|
|
59
|
-
e("div", de, [
|
|
60
|
-
e("div", ce, [
|
|
61
|
-
s(_, {
|
|
62
|
-
src: m(G).imageUrl(
|
|
63
|
-
(w = ($ = (N = (u = (c = t.value) == null ? void 0 : c[0]) == null ? void 0 : u.orderItemList) == null ? void 0 : N.results) == null ? void 0 : $[0]) == null ? void 0 : w.picUrl,
|
|
64
|
-
160,
|
|
65
|
-
160
|
|
66
|
-
),
|
|
67
|
-
"preview-src-list": [
|
|
68
|
-
m(G).imageUrl(
|
|
69
|
-
(A = (D = (C = (B = (V = t.value) == null ? void 0 : V[0]) == null ? void 0 : B.orderItemList) == null ? void 0 : C.results) == null ? void 0 : D[0]) == null ? void 0 : A.picUrl
|
|
70
|
-
)
|
|
71
|
-
],
|
|
72
|
-
"preview-teleported": "",
|
|
73
|
-
"hide-on-click-modal": "",
|
|
74
|
-
fit: "contain",
|
|
75
|
-
class: "magazine-image"
|
|
76
|
-
}, null, 8, ["src", "preview-src-list"])
|
|
77
|
-
])
|
|
78
|
-
]),
|
|
79
|
-
e("div", ue, [
|
|
80
|
-
e("span", me, "《" + r((j = (T = (z = (U = (S = t.value) == null ? void 0 : S[0]) == null ? void 0 : U.orderItemList) == null ? void 0 : z.results) == null ? void 0 : T[0]) == null ? void 0 : j.spuName) + "》 ", 1),
|
|
81
|
-
e("div", pe, [
|
|
82
|
-
e("span", _e, [
|
|
83
|
-
n[0] || (n[0] = p("发行频率: ")),
|
|
84
|
-
e("span", null, r(m(y).goodsCategoryListBizLayDict.getValue(L.value.join(","))), 1)
|
|
85
|
-
])
|
|
86
|
-
]),
|
|
87
|
-
e("div", fe, [
|
|
88
|
-
e("span", be, "订阅周期:" + r((W = (O = t.value) == null ? void 0 : O[0]) == null ? void 0 : W.remark), 1)
|
|
89
|
-
]),
|
|
90
|
-
e("div", ve, [
|
|
91
|
-
e("span", he, "¥" + r((R = (q = t.value) == null ? void 0 : q[0]) == null ? void 0 : R.salesPrice) + "/年", 1)
|
|
92
|
-
])
|
|
93
|
-
])
|
|
94
|
-
]),
|
|
95
|
-
n[2] || (n[2] = e("div", { class: "title-content" }, "付款信息", -1)),
|
|
96
|
-
e("div", Ie, [
|
|
97
|
-
t.value && t.value.length > 0 ? (M(), ee(f, {
|
|
98
|
-
key: 0,
|
|
99
|
-
class: "margin-top",
|
|
100
|
-
"label-width": 420,
|
|
101
|
-
"label-align": "left",
|
|
102
|
-
column: 1
|
|
103
|
-
}, {
|
|
104
|
-
default: l(() => [
|
|
105
|
-
s(d, null, {
|
|
106
|
-
label: l(() => [
|
|
107
|
-
e("div", ge, r(o.$t("orderInfo.salesPrices")), 1)
|
|
108
|
-
]),
|
|
109
|
-
default: l(() => [
|
|
110
|
-
p(" ¥" + r(t.value[0].salesPrice), 1)
|
|
111
|
-
]),
|
|
112
|
-
_: 1
|
|
113
|
-
}),
|
|
114
|
-
s(d, null, {
|
|
115
|
-
label: l(() => [
|
|
116
|
-
e("div", ye, r(o.$t("orderInfo.orderStatuss")), 1)
|
|
117
|
-
]),
|
|
118
|
-
default: l(() => [
|
|
119
|
-
p(" " + r(m(y).orderStatusEnum.getValue(t.value[0].orderStatus)), 1)
|
|
120
|
-
]),
|
|
121
|
-
_: 1
|
|
122
|
-
}),
|
|
123
|
-
s(d, null, {
|
|
124
|
-
label: l(() => [
|
|
125
|
-
e("div", Ee, r(o.$t("orderInfo.paymentWay")), 1)
|
|
126
|
-
]),
|
|
127
|
-
default: l(() => [
|
|
128
|
-
p(" " + r(m(y).paymentWayEnum.getEnumValue(t.value[0].paymentWay)), 1)
|
|
129
|
-
]),
|
|
130
|
-
_: 1
|
|
131
|
-
})
|
|
132
|
-
]),
|
|
133
|
-
_: 1
|
|
134
|
-
})) : oe("", !0)
|
|
135
|
-
]),
|
|
136
|
-
n[3] || (n[3] = e("div", { class: "title-content" }, "收报地址", -1)),
|
|
137
|
-
s(v, {
|
|
138
|
-
data: k.value,
|
|
139
|
-
border: ""
|
|
140
|
-
}, {
|
|
141
|
-
default: l(() => [
|
|
142
|
-
s(i, {
|
|
143
|
-
prop: "note",
|
|
144
|
-
label: o.$t("orderInfo.unitNames"),
|
|
145
|
-
width: "250"
|
|
146
|
-
}, null, 8, ["label"]),
|
|
147
|
-
s(i, {
|
|
148
|
-
prop: "userName",
|
|
149
|
-
label: o.$t("orderInfo.userName"),
|
|
150
|
-
width: "120"
|
|
151
|
-
}, null, 8, ["label"]),
|
|
152
|
-
s(i, {
|
|
153
|
-
label: o.$t("orderInfo.mobilePhone"),
|
|
154
|
-
width: "150"
|
|
155
|
-
}, {
|
|
156
|
-
default: l(({ row: g }) => [
|
|
157
|
-
s(b, {
|
|
158
|
-
mobileEncrypt: g.mobileEncrypt,
|
|
159
|
-
mobilePhoneIns: g.mobilePhoneIns,
|
|
160
|
-
mobilePhone: g.mobilePhone,
|
|
161
|
-
onToggleEncrypt: (Ne) => J(g)
|
|
162
|
-
}, null, 8, ["mobileEncrypt", "mobilePhoneIns", "mobilePhone", "onToggleEncrypt"])
|
|
163
|
-
]),
|
|
164
|
-
_: 1
|
|
165
|
-
}, 8, ["label"]),
|
|
166
|
-
s(i, {
|
|
167
|
-
prop: "detailInfo",
|
|
168
|
-
label: o.$t("orderInfo.address")
|
|
169
|
-
}, null, 8, ["label"]),
|
|
170
|
-
s(i, {
|
|
171
|
-
prop: "goodsNum",
|
|
172
|
-
label: o.$t("orderInfo.paperNumber"),
|
|
173
|
-
width: "100"
|
|
174
|
-
}, null, 8, ["label"])
|
|
175
|
-
]),
|
|
176
|
-
_: 1
|
|
177
|
-
}, 8, ["data"])
|
|
178
|
-
];
|
|
179
|
-
}),
|
|
180
|
-
_: 1,
|
|
181
|
-
__: [1, 2, 3]
|
|
182
|
-
})
|
|
183
|
-
]);
|
|
184
|
-
};
|
|
185
|
-
}
|
|
186
|
-
}), Se = /* @__PURE__ */ re(ke, [["__scopeId", "data-v-752f0b33"]]);
|
|
187
|
-
export {
|
|
188
|
-
Se as default
|
|
189
|
-
};
|
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
import { ref as h, resolveComponent as i, createElementBlock as s, openBlock as a, createElementVNode as e, createVNode as r, withDirectives as u, createCommentVNode as p, toDisplayString as f, unref as k, withCtx as C, vShow as m } from "vue";
|
|
2
|
-
import { useRouter as V, useRoute as q } from "vue-router";
|
|
3
|
-
import { _ as w } from "./_plugin-vue_export-helper-CHgC5LLL.mjs";
|
|
4
|
-
const x = { class: "app-container" }, T = { class: "search-container" }, A = { class: "payment-container" }, N = { class: "payment-header" }, P = { class: "payment-amount" }, g = { class: "qrcode-container" }, B = { class: "online-container" }, D = {
|
|
5
|
-
key: 1,
|
|
6
|
-
class: "payment-button"
|
|
7
|
-
}, E = {
|
|
8
|
-
__name: "payment copy",
|
|
9
|
-
setup(I) {
|
|
10
|
-
const _ = V(), n = q(), o = h("scan");
|
|
11
|
-
n.query.counterUrl, n.query.orderId;
|
|
12
|
-
const v = (l) => {
|
|
13
|
-
console.log("Tab clicked:", l.name);
|
|
14
|
-
};
|
|
15
|
-
function y() {
|
|
16
|
-
_.push({
|
|
17
|
-
path: "/buyer/order-newspaper/orderAddress"
|
|
18
|
-
});
|
|
19
|
-
}
|
|
20
|
-
return (l, t) => {
|
|
21
|
-
const c = i("el-tab-pane"), b = i("el-tabs");
|
|
22
|
-
return a(), s("div", x, [
|
|
23
|
-
e("div", T, [
|
|
24
|
-
e("div", A, [
|
|
25
|
-
e("div", N, [
|
|
26
|
-
t[2] || (t[2] = e("div", { style: { color: "#6b7280" } }, "支付金额", -1)),
|
|
27
|
-
e("div", P, "¥" + f(k(n).query.orderPrice), 1)
|
|
28
|
-
]),
|
|
29
|
-
r(b, {
|
|
30
|
-
modelValue: o.value,
|
|
31
|
-
"onUpdate:modelValue": t[0] || (t[0] = (d) => o.value = d),
|
|
32
|
-
onTabClick: v
|
|
33
|
-
}, {
|
|
34
|
-
default: C(() => [
|
|
35
|
-
r(c, {
|
|
36
|
-
label: "扫码支付",
|
|
37
|
-
name: "scan"
|
|
38
|
-
}),
|
|
39
|
-
r(c, {
|
|
40
|
-
label: "网银支付",
|
|
41
|
-
name: "online"
|
|
42
|
-
})
|
|
43
|
-
]),
|
|
44
|
-
_: 1
|
|
45
|
-
}, 8, ["modelValue"]),
|
|
46
|
-
u(e("div", g, t[3] || (t[3] = [
|
|
47
|
-
e("div", { class: "qrcode-placeholder" }, "二维码", -1),
|
|
48
|
-
e("div", { class: "payment-hint" }, "请使用微信、支付宝、云闪付APP扫码支付", -1)
|
|
49
|
-
]), 512), [
|
|
50
|
-
[m, o.value === "scan"]
|
|
51
|
-
]),
|
|
52
|
-
u(e("div", B, " 11312 ", 512), [
|
|
53
|
-
[m, o.value === "online"]
|
|
54
|
-
]),
|
|
55
|
-
o.value === "scan" ? (a(), s("button", {
|
|
56
|
-
key: 0,
|
|
57
|
-
class: "payment-button",
|
|
58
|
-
onClick: t[1] || (t[1] = (d) => y())
|
|
59
|
-
}, " 支付完成 ")) : p("", !0),
|
|
60
|
-
o.value === "online" ? (a(), s("button", D, " 到网上银行支付 ")) : p("", !0)
|
|
61
|
-
])
|
|
62
|
-
])
|
|
63
|
-
]);
|
|
64
|
-
};
|
|
65
|
-
}
|
|
66
|
-
}, $ = /* @__PURE__ */ w(E, [["__scopeId", "data-v-92417896"]]);
|
|
67
|
-
export {
|
|
68
|
-
$ as default
|
|
69
|
-
};
|