2025-07-08 16:49:39 +08:00

28 lines
631 B
JavaScript

"use strict";
require("../../common/vendor.js");
const useModel = {
list: [
{
label: "我的客户",
path: "/MERCHANT/me/merchant/index",
icon: "/static/svg/me_customer.svg"
},
{
label: "我的订单",
path: "https://nchl-dev.oss-cn-shenzhen.aliyuncs.com/uploads/cs-test/01JTM6CBGHTYPB7E4D4XENA2P7.pdf",
icon: "/static/svg/me_order.svg"
},
{
label: "客服",
icon: "/static/svg/me_service.svg",
type: "service"
},
{
label: "退出登录",
icon: "/static/svg/me_exit.svg",
type: "logout"
}
]
};
exports.useModel = useModel;