暂存code
This commit is contained in:
+248
-103
@@ -2,6 +2,8 @@
|
||||
const common_vendor = require("../../common/vendor.js");
|
||||
const utils_enumUtils = require("../../utils/enumUtils.js");
|
||||
const utils_index = require("../../utils/index.js");
|
||||
const api_order = require("../../api/order.js");
|
||||
const utils_payUtils = require("../../utils/payUtils.js");
|
||||
const _sfc_main = {
|
||||
computed: {
|
||||
ORDER_TYPE() {
|
||||
@@ -16,175 +18,318 @@ const _sfc_main = {
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
type: 0,
|
||||
orderInfo: {
|
||||
// status:ORDER_TYPE.UNPAID,// 待付款
|
||||
// status:ORDER_TYPE.CANCELED,// 已取消
|
||||
// status:ORDER_TYPE.UNSHIPPED,// 待发货
|
||||
status: utils_enumUtils.ORDER_TYPE.NOT_RECEIVE,
|
||||
// 待收货
|
||||
// status:ORDER_TYPE.COMPLETED,// 完成
|
||||
// status:ORDER_TYPE.AFTER_SALE,
|
||||
name: "张先生",
|
||||
mobile: "18****2848",
|
||||
address: "河南省郑州市金水区东风路街道北三环索凌路交叉口明明小区1号楼1座",
|
||||
waybillNumber: "SF23423443242",
|
||||
product: {
|
||||
id: 1,
|
||||
url: "/static/common/order_defal.png",
|
||||
name: "哈希店铺",
|
||||
status: 1,
|
||||
paymentTime: 29,
|
||||
// 剩余付款时间,单位:分钟
|
||||
productList: [
|
||||
{
|
||||
id: 1,
|
||||
url: "/static/common/product_def.png",
|
||||
title: "美的双开门冰箱大容量多美的双开门冰箱大容量多",
|
||||
description: ["双开门", "大容量"],
|
||||
tag: ["7天无理由退货", "退货险"],
|
||||
quantity: 1,
|
||||
total: 3599
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
url: "/static/common/product_def.png",
|
||||
title: "美的双开门冰箱大容量多美的双开门冰箱大容量多",
|
||||
description: ["双开门", "大容量"],
|
||||
tag: ["7天无理由退货", "退货险"],
|
||||
quantity: 1,
|
||||
total: 3599
|
||||
}
|
||||
],
|
||||
productTotal: 7599
|
||||
}
|
||||
}
|
||||
id: 0,
|
||||
orderInfo: {},
|
||||
listLoading: false,
|
||||
wayForm: {
|
||||
id: 0,
|
||||
payway: null
|
||||
// 支付方式
|
||||
},
|
||||
wayShow: false,
|
||||
wayOption: [],
|
||||
// 支付选项
|
||||
height: "180rpx"
|
||||
};
|
||||
},
|
||||
onLoad(options) {
|
||||
const type = options.type;
|
||||
this.type = type ? parseInt(type, 10) : 0;
|
||||
const id = options.id;
|
||||
this.id = id ? parseInt(id, 10) : 0;
|
||||
this.getOrderInfo();
|
||||
this.getWayOption();
|
||||
},
|
||||
methods: {
|
||||
getValue: utils_enumUtils.getValue,
|
||||
copyData: utils_index.copyData,
|
||||
assembleAddress: utils_index.assembleAddress,
|
||||
formatDate: utils_index.formatDate,
|
||||
formatDate1: utils_index.formatDate1,
|
||||
jumpLeft() {
|
||||
common_vendor.index.navigateTo({
|
||||
url: "/pages/mine_order/mine_order?type=" + this.type
|
||||
url: "/pages/mine_order/mine_order?type=" + this.orderInfo.status
|
||||
});
|
||||
},
|
||||
async getWayOption() {
|
||||
const result = await api_order.getSupportPay();
|
||||
if (result && result.bizcode === 100) {
|
||||
this.wayOption = result.data;
|
||||
}
|
||||
},
|
||||
// 查询订单详情
|
||||
async getOrderInfo() {
|
||||
this.listLoading = true;
|
||||
const params = {
|
||||
id: this.id
|
||||
};
|
||||
const result = await api_order.getDetail(params);
|
||||
if (result && result.bizcode === 100) {
|
||||
const orderInfo = result.data;
|
||||
if ([utils_enumUtils.ORDER_TYPE.UNPAID, utils_enumUtils.ORDER_TYPE.NOT_RECEIVE].includes(orderInfo.status)) {
|
||||
this.height = "180rpx";
|
||||
} else {
|
||||
this.height = "0rpx";
|
||||
}
|
||||
this.orderInfo = orderInfo;
|
||||
}
|
||||
this.listLoading = false;
|
||||
},
|
||||
// 去支付
|
||||
goPay() {
|
||||
common_vendor.index.__f__("log", "at pages/mine_order_info/mine_order_info.vue:213", "goPay.....");
|
||||
async goPay() {
|
||||
const payway = this.wayForm.payway;
|
||||
if (!payway || payway === 0) {
|
||||
this.$refs.uToastRef.show({
|
||||
type: "error",
|
||||
message: "请先选择支付方式"
|
||||
});
|
||||
return;
|
||||
}
|
||||
const params = {
|
||||
id: this.orderInfo.id,
|
||||
payway
|
||||
};
|
||||
const resp = await api_order.payment(params);
|
||||
if (resp && resp.bizcode === 100) {
|
||||
const item = resp.data;
|
||||
if (item.status === 1) {
|
||||
utils_payUtils.jumpWayOk();
|
||||
return;
|
||||
}
|
||||
if (item.wechat && Object.keys(item.wechat).length !== 0) {
|
||||
this.appWxpay(item.wechat, item.orderId, item.orderNum);
|
||||
} else if (item.alipay && Object.keys(item.alipay).length !== 0 && item.alipay) {
|
||||
this.zfbPay(item.alipay, item.orderId, item.orderNum);
|
||||
} else {
|
||||
this.$refs.uToastRef.show({
|
||||
type: "error",
|
||||
message: "订单支付失败"
|
||||
});
|
||||
setTimeout(() => {
|
||||
utils_payUtils.jumpWayError();
|
||||
}, 2e3);
|
||||
}
|
||||
} else {
|
||||
this.getOrderInfo();
|
||||
}
|
||||
},
|
||||
// app 微信支付
|
||||
async appWxpay(alipay, orderId, orderNum) {
|
||||
try {
|
||||
const result = await utils_payUtils.appWxpayFun(alipay, orderId, orderNum);
|
||||
common_vendor.index.__f__("log", "at pages/mine_order_info/mine_order_info.vue:311", "支付成功", result);
|
||||
} catch (error) {
|
||||
common_vendor.index.__f__("error", "at pages/mine_order_info/mine_order_info.vue:314", "支付失败", error);
|
||||
}
|
||||
},
|
||||
// 支付宝支付
|
||||
async zfbPay(alipay, orderId, orderNum) {
|
||||
try {
|
||||
const result = await utils_payUtils.zfbPayFun(alipay, orderId, orderNum);
|
||||
common_vendor.index.__f__("log", "at pages/mine_order_info/mine_order_info.vue:322", "支付成功", result);
|
||||
} catch (error) {
|
||||
common_vendor.index.__f__("error", "at pages/mine_order_info/mine_order_info.vue:325", "支付失败", error);
|
||||
}
|
||||
},
|
||||
/**
|
||||
* 确认收货
|
||||
*/
|
||||
confirmReceiptOk(item) {
|
||||
const then = this;
|
||||
common_vendor.index.showModal({
|
||||
title: "提示",
|
||||
content: "是否确认收货?",
|
||||
success: function(res) {
|
||||
if (res.confirm) {
|
||||
then.confirmReceiptFun(item);
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
async confirmReceiptFun(item) {
|
||||
const params = {
|
||||
id: item.id
|
||||
};
|
||||
const resp = await api_order.confirmReceipt(params);
|
||||
if (resp && resp.bizcode === 100) {
|
||||
this.orderList = [];
|
||||
this.form.page = 1;
|
||||
this.loadData();
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
if (!Array) {
|
||||
const _easycom_up_loading_page2 = common_vendor.resolveComponent("up-loading-page");
|
||||
const _easycom_up_image2 = common_vendor.resolveComponent("up-image");
|
||||
_easycom_up_image2();
|
||||
const _easycom_up_radio2 = common_vendor.resolveComponent("up-radio");
|
||||
const _easycom_up_radio_group2 = common_vendor.resolveComponent("up-radio-group");
|
||||
const _easycom_up_popup2 = common_vendor.resolveComponent("up-popup");
|
||||
const _easycom_up_toast2 = common_vendor.resolveComponent("up-toast");
|
||||
(_easycom_up_loading_page2 + _easycom_up_image2 + _easycom_up_radio2 + _easycom_up_radio_group2 + _easycom_up_popup2 + _easycom_up_toast2)();
|
||||
}
|
||||
const _easycom_up_loading_page = () => "../../uni_modules/uview-plus/components/u-loading-page/u-loading-page.js";
|
||||
const _easycom_up_image = () => "../../uni_modules/uview-plus/components/u-image/u-image.js";
|
||||
const _easycom_up_radio = () => "../../uni_modules/uview-plus/components/u-radio/u-radio.js";
|
||||
const _easycom_up_radio_group = () => "../../uni_modules/uview-plus/components/u-radio-group/u-radio-group.js";
|
||||
const _easycom_up_popup = () => "../../uni_modules/uview-plus/components/u-popup/u-popup.js";
|
||||
const _easycom_up_toast = () => "../../uni_modules/uview-plus/components/u-toast/u-toast.js";
|
||||
if (!Math) {
|
||||
_easycom_up_image();
|
||||
(_easycom_up_loading_page + _easycom_up_image + _easycom_up_radio + _easycom_up_radio_group + _easycom_up_popup + _easycom_up_toast)();
|
||||
}
|
||||
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
||||
return common_vendor.e({
|
||||
a: common_vendor.o($options.jumpLeft),
|
||||
b: common_vendor.p({
|
||||
a: common_vendor.p({
|
||||
loading: $data.listLoading
|
||||
}),
|
||||
b: common_vendor.o($options.jumpLeft),
|
||||
c: common_vendor.p({
|
||||
src: "/static/common/left_b.png",
|
||||
width: "20",
|
||||
height: "19",
|
||||
bgColor: "#f1f6ff00"
|
||||
}),
|
||||
c: common_vendor.p({
|
||||
d: common_vendor.p({
|
||||
src: "/static/common/order_status_1.png",
|
||||
width: "20",
|
||||
height: "19",
|
||||
bgColor: "#f1f6ff00"
|
||||
}),
|
||||
d: common_vendor.t($options.getValue($options.ORDER_STATUS, $data.orderInfo.status)),
|
||||
e: $data.orderInfo.status === $options.ORDER_TYPE.UNPAID
|
||||
}, $data.orderInfo.status === $options.ORDER_TYPE.UNPAID ? {} : {}, {
|
||||
f: $data.orderInfo.status === $options.ORDER_TYPE.CANCELED
|
||||
e: common_vendor.t($options.getValue($options.ORDER_STATUS, $data.orderInfo.status)),
|
||||
f: $data.orderInfo.status === $options.ORDER_TYPE.UNPAID
|
||||
}, $data.orderInfo.status === $options.ORDER_TYPE.UNPAID ? {
|
||||
g: common_vendor.t($data.orderInfo.sumAmount),
|
||||
h: common_vendor.t($options.formatDate1($data.orderInfo.expireTime))
|
||||
} : {}, {
|
||||
i: $data.orderInfo.status === $options.ORDER_TYPE.CANCELED
|
||||
}, $data.orderInfo.status === $options.ORDER_TYPE.CANCELED ? {} : {}, {
|
||||
g: [$options.ORDER_TYPE.NOT_RECEIVE].includes($data.orderInfo.status)
|
||||
}, [$options.ORDER_TYPE.NOT_RECEIVE].includes($data.orderInfo.status) ? {
|
||||
h: common_vendor.p({
|
||||
j: common_vendor.p({
|
||||
src: "/static/common/waybill.png",
|
||||
width: "20",
|
||||
height: "20",
|
||||
bgColor: "#f1f6ff00"
|
||||
}),
|
||||
i: common_vendor.t($data.orderInfo.waybillNumber),
|
||||
j: common_vendor.o(($event) => $options.copyData($data.orderInfo.waybillNumber)),
|
||||
k: common_vendor.p({
|
||||
k: common_vendor.t($data.orderInfo.orderNum),
|
||||
l: common_vendor.o(($event) => $options.copyData($data.orderInfo.orderNum)),
|
||||
m: common_vendor.p({
|
||||
src: "/static/common/copy.png",
|
||||
width: "14",
|
||||
height: "14",
|
||||
bgColor: "#f1f6ff00"
|
||||
})
|
||||
} : {}, {
|
||||
l: [$options.ORDER_TYPE.NOT_RECEIVE].includes($data.orderInfo.status)
|
||||
}, [$options.ORDER_TYPE.NOT_RECEIVE].includes($data.orderInfo.status) ? {} : {}, {
|
||||
m: common_vendor.p({
|
||||
}),
|
||||
n: common_vendor.p({
|
||||
src: "/static/common/address.png",
|
||||
width: "20",
|
||||
height: "20",
|
||||
bgColor: "#f1f6ff00"
|
||||
}),
|
||||
n: common_vendor.t($data.orderInfo.name),
|
||||
o: common_vendor.t($data.orderInfo.mobile),
|
||||
p: common_vendor.t($data.orderInfo.address),
|
||||
q: common_vendor.p({
|
||||
src: $data.orderInfo.product.url,
|
||||
o: common_vendor.t($data.orderInfo.name),
|
||||
p: common_vendor.t($data.orderInfo.phone),
|
||||
q: common_vendor.t($options.assembleAddress($data.orderInfo).names),
|
||||
r: common_vendor.t($data.orderInfo.address),
|
||||
s: common_vendor.p({
|
||||
src: $data.orderInfo.shopLogo,
|
||||
width: "22",
|
||||
height: "22",
|
||||
bgColor: "#f1f6ff00"
|
||||
bgColor: "#f1f6ff00",
|
||||
shape: "circle"
|
||||
}),
|
||||
r: common_vendor.t($data.orderInfo.product.name),
|
||||
s: common_vendor.f($data.orderInfo.product.productList, (pItem, k0, i0) => {
|
||||
return {
|
||||
a: "e943673c-6-" + i0,
|
||||
t: common_vendor.t($data.orderInfo.shopName),
|
||||
v: common_vendor.f($data.orderInfo.items, (pItem, k0, i0) => {
|
||||
return common_vendor.e({
|
||||
a: "e943673c-7-" + i0,
|
||||
b: common_vendor.p({
|
||||
src: pItem.url,
|
||||
src: pItem.mainGraph,
|
||||
width: "80",
|
||||
height: "80",
|
||||
bgColor: "#f1f6ff00"
|
||||
}),
|
||||
c: common_vendor.t(pItem.title),
|
||||
d: common_vendor.t(pItem.tag.join(" ")),
|
||||
d: common_vendor.t(pItem.goodsSpece),
|
||||
e: common_vendor.f(pItem.description, (dItem, k1, i1) => {
|
||||
return {
|
||||
a: common_vendor.t(dItem),
|
||||
b: dItem
|
||||
};
|
||||
}),
|
||||
f: common_vendor.t(pItem.total),
|
||||
g: common_vendor.t(pItem.quantity),
|
||||
h: pItem.id
|
||||
};
|
||||
f: common_vendor.t(pItem.goodsAmount),
|
||||
g: common_vendor.t(pItem.buyNum),
|
||||
h: pItem.expressNo
|
||||
}, pItem.expressNo ? {
|
||||
i: common_vendor.t(pItem.expressNo),
|
||||
j: common_vendor.o(($event) => $options.copyData(pItem.expressNo), pItem.id),
|
||||
k: "e943673c-8-" + i0,
|
||||
l: common_vendor.p({
|
||||
src: "/static/common/copy.png",
|
||||
width: "14",
|
||||
height: "14",
|
||||
bgColor: "#f1f6ff00"
|
||||
})
|
||||
} : {}, {
|
||||
m: pItem.id
|
||||
});
|
||||
}),
|
||||
t: common_vendor.o(($event) => $options.copyData("2324124232424")),
|
||||
v: $data.orderInfo.status === $options.ORDER_TYPE.UNSHIPPED
|
||||
}, $data.orderInfo.status === $options.ORDER_TYPE.UNSHIPPED ? {} : {}, {
|
||||
w: $data.orderInfo.status === $options.ORDER_TYPE.UNPAID
|
||||
w: common_vendor.t($data.orderInfo.sumAmount),
|
||||
x: $data.orderInfo.coupon
|
||||
}, $data.orderInfo.coupon ? {} : {}, {
|
||||
y: common_vendor.t($data.orderInfo.sumAmount),
|
||||
z: common_vendor.t($data.orderInfo.remark),
|
||||
A: common_vendor.t($options.formatDate($data.orderInfo.ctdate)),
|
||||
B: $data.orderInfo.status === $options.ORDER_TYPE.UNPAID
|
||||
}, $data.orderInfo.status === $options.ORDER_TYPE.UNPAID ? {
|
||||
x: common_vendor.o((...args) => $options.goPay && $options.goPay(...args))
|
||||
C: common_vendor.t($options.getValue($data.wayOption, $data.wayForm.payway)),
|
||||
D: common_vendor.p({
|
||||
src: "/static/common/right.png",
|
||||
width: "20",
|
||||
height: "20",
|
||||
bgColor: "#f1f6ff00"
|
||||
}),
|
||||
E: common_vendor.o(($event) => {
|
||||
$data.wayShow = true;
|
||||
})
|
||||
} : {}, {
|
||||
y: $data.orderInfo.status === $options.ORDER_TYPE.COMPLETED
|
||||
}, $data.orderInfo.status === $options.ORDER_TYPE.COMPLETED ? {} : {}, {
|
||||
z: $data.orderInfo.status === $options.ORDER_TYPE.NOT_RECEIVE
|
||||
}, $data.orderInfo.status === $options.ORDER_TYPE.NOT_RECEIVE ? {} : {}, {
|
||||
A: $data.orderInfo.status === $options.ORDER_TYPE.UNSHIPPED
|
||||
}, $data.orderInfo.status === $options.ORDER_TYPE.UNSHIPPED ? {} : {}, {
|
||||
B: $data.orderInfo.status === $options.ORDER_TYPE.COMPLETED
|
||||
}, $data.orderInfo.status === $options.ORDER_TYPE.COMPLETED ? {} : {}, {
|
||||
C: $data.orderInfo.status === $options.ORDER_TYPE.AFTER_SALE
|
||||
}, $data.orderInfo.status === $options.ORDER_TYPE.AFTER_SALE ? {} : {}, {
|
||||
D: [$options.ORDER_TYPE.COMPLETED].includes($data.orderInfo.status)
|
||||
}, [$options.ORDER_TYPE.COMPLETED].includes($data.orderInfo.status) ? {} : {}, {
|
||||
E: [$options.ORDER_TYPE.COMPLETED, $options.ORDER_TYPE.CANCELED].includes($data.orderInfo.status)
|
||||
}, [$options.ORDER_TYPE.COMPLETED, $options.ORDER_TYPE.CANCELED].includes($data.orderInfo.status) ? {} : {});
|
||||
F: [$options.ORDER_TYPE.UNPAID, $options.ORDER_TYPE.NOT_RECEIVE].includes($data.orderInfo.status)
|
||||
}, [$options.ORDER_TYPE.UNPAID, $options.ORDER_TYPE.NOT_RECEIVE].includes($data.orderInfo.status) ? common_vendor.e({
|
||||
G: $data.orderInfo.status === $options.ORDER_TYPE.UNPAID
|
||||
}, $data.orderInfo.status === $options.ORDER_TYPE.UNPAID ? {
|
||||
H: common_vendor.o((...args) => $options.goPay && $options.goPay(...args))
|
||||
} : {}, {
|
||||
I: $data.orderInfo.status === $options.ORDER_TYPE.NOT_RECEIVE
|
||||
}, $data.orderInfo.status === $options.ORDER_TYPE.NOT_RECEIVE ? {
|
||||
J: common_vendor.o(($event) => $options.confirmReceiptOk($data.orderInfo))
|
||||
} : {}) : {}, {
|
||||
K: common_vendor.f($data.wayOption, (item, k0, i0) => {
|
||||
return common_vendor.e({
|
||||
a: common_vendor.t(item.name),
|
||||
b: item.balance
|
||||
}, item.balance ? {
|
||||
c: common_vendor.t(item.balance)
|
||||
} : {}, {
|
||||
d: "e943673c-12-" + i0 + ",e943673c-11",
|
||||
e: common_vendor.p({
|
||||
name: item.type,
|
||||
activeColor: "#FF7C41"
|
||||
}),
|
||||
f: item.type
|
||||
});
|
||||
}),
|
||||
L: common_vendor.o(($event) => $data.wayForm.payway = $event),
|
||||
M: common_vendor.p({
|
||||
placement: "column",
|
||||
modelValue: $data.wayForm.payway
|
||||
}),
|
||||
N: common_vendor.o(($event) => {
|
||||
$data.wayShow = false;
|
||||
}),
|
||||
O: common_vendor.o(($event) => $data.wayShow = $event),
|
||||
P: common_vendor.p({
|
||||
round: 10,
|
||||
closeOnClickOverlay: false,
|
||||
closeable: true,
|
||||
safeAreaInsetBottom: false,
|
||||
show: $data.wayShow
|
||||
}),
|
||||
Q: common_vendor.sr("uToastRef", "e943673c-13"),
|
||||
R: "calc(100vh - " + $data.height + ")"
|
||||
});
|
||||
}
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-e943673c"]]);
|
||||
wx.createPage(MiniProgramPage);
|
||||
|
||||
@@ -1,6 +1,11 @@
|
||||
{
|
||||
"navigationStyle": "custom",
|
||||
"usingComponents": {
|
||||
"up-image": "../../uni_modules/uview-plus/components/u-image/u-image"
|
||||
"up-loading-page": "../../uni_modules/uview-plus/components/u-loading-page/u-loading-page",
|
||||
"up-image": "../../uni_modules/uview-plus/components/u-image/u-image",
|
||||
"up-radio": "../../uni_modules/uview-plus/components/u-radio/u-radio",
|
||||
"up-radio-group": "../../uni_modules/uview-plus/components/u-radio-group/u-radio-group",
|
||||
"up-popup": "../../uni_modules/uview-plus/components/u-popup/u-popup",
|
||||
"up-toast": "../../uni_modules/uview-plus/components/u-toast/u-toast"
|
||||
}
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
@@ -23,7 +23,6 @@
|
||||
/* 水平间距 */
|
||||
/* 垂直间距 */
|
||||
.mine_order_info_warp.data-v-e943673c {
|
||||
height: calc(100vh - 180rpx);
|
||||
background-color: #F5F5F5;
|
||||
position: relative;
|
||||
overflow-y: auto;
|
||||
@@ -52,7 +51,7 @@
|
||||
.order_info_content.data-v-e943673c {
|
||||
position: absolute;
|
||||
top: 184rpx;
|
||||
width: 100%;
|
||||
width: calc(100% - 40rpx);
|
||||
padding: 0 20rpx;
|
||||
}
|
||||
.order_info_content .content_due.data-v-e943673c {
|
||||
@@ -86,14 +85,14 @@
|
||||
background: #FFFFFF;
|
||||
border-radius: 24rpx;
|
||||
padding: 20rpx;
|
||||
width: calc(100% - 80rpx);
|
||||
width: calc(100% - 40rpx);
|
||||
margin-top: 66rpx;
|
||||
}
|
||||
.order_info_content .steps_warp .address_info_right.data-v-e943673c {
|
||||
border-left: 1rpx dashed #99999959;
|
||||
height: 26rpx;
|
||||
height: 14rpx;
|
||||
width: 10rpx;
|
||||
margin: 20rpx;
|
||||
margin: 10rpx 20rpx;
|
||||
}
|
||||
.order_info_content .steps_warp .address_info.data-v-e943673c {
|
||||
display: flex;
|
||||
@@ -131,10 +130,11 @@
|
||||
border-radius: 20rpx;
|
||||
padding: 30rpx;
|
||||
margin-top: 30rpx;
|
||||
width: calc(100% - 96rpx);
|
||||
width: calc(100% - 60rpx);
|
||||
}
|
||||
.order_product_warp .order_product_header.data-v-e943673c {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.order_product_warp .order_product_title.data-v-e943673c {
|
||||
font-weight: bold;
|
||||
@@ -145,19 +145,6 @@
|
||||
.order_data_warp.data-v-e943673c {
|
||||
margin-bottom: 20rpx;
|
||||
}
|
||||
.order_data_warp .data_item.data-v-e943673c {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
line-height: 60rpx;
|
||||
font-weight: bold;
|
||||
font-size: 24rpx;
|
||||
}
|
||||
.order_data_warp .item_title.data-v-e943673c {
|
||||
color: #808080;
|
||||
}
|
||||
.order_data_warp .item_value.data-v-e943673c {
|
||||
color: #1A1A1A;
|
||||
}
|
||||
.order_data_warp .pay_amount.data-v-e943673c {
|
||||
color: #FF7C41;
|
||||
}
|
||||
@@ -192,4 +179,32 @@
|
||||
}
|
||||
.order_but_warp .operate_comm.data-v-e943673c {
|
||||
height: 34rpx;
|
||||
}
|
||||
.content_other_item.data-v-e943673c {
|
||||
margin-top: 20rpx;
|
||||
}
|
||||
.data_item.data-v-e943673c {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
line-height: 60rpx;
|
||||
font-weight: bold;
|
||||
font-size: 24rpx;
|
||||
}
|
||||
.item_title.data-v-e943673c {
|
||||
color: #808080;
|
||||
}
|
||||
.item_value.data-v-e943673c {
|
||||
color: #1A1A1A;
|
||||
display: flex;
|
||||
}
|
||||
.order_way_warp.data-v-e943673c {
|
||||
margin-bottom: 60rpx;
|
||||
width: calc(100% - 60rpx);
|
||||
}
|
||||
.content_info_title.data-v-e943673c {
|
||||
width: 370rpx;
|
||||
}
|
||||
.data_item_yd.data-v-e943673c {
|
||||
display: flex;
|
||||
justify-content: left;
|
||||
}
|
||||
Reference in New Issue
Block a user