├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── default.conf.template ├── jeepay-ui-cashier ├── .env ├── .env.development ├── .gitignore ├── .postcssrc.js ├── README.md ├── babel.config.js ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ └── index.html ├── src │ ├── App.vue │ ├── api │ │ └── api.js │ ├── assets │ │ ├── icon │ │ │ ├── S.svg │ │ │ ├── error.svg │ │ │ └── wx.svg │ │ ├── images │ │ │ ├── empty.svg │ │ │ ├── loading.gif │ │ │ ├── ysf.jpg │ │ │ └── zfb.jpeg │ │ └── wx-zt │ │ │ ├── WeChatSansSS-Bold.ttf │ │ │ ├── WeChatSansSS-Light.ttf │ │ │ ├── WeChatSansSS-Medium.ttf │ │ │ ├── WeChatSansSS-Regular.ttf │ │ │ ├── WeChatSansStd-Bold.ttf │ │ │ ├── WeChatSansStd-Light.ttf │ │ │ ├── WeChatSansStd-Medium.ttf │ │ │ └── WeChatSansStd-Regular.ttf │ ├── config │ │ ├── index.js │ │ └── rem.js │ ├── http │ │ ├── HttpRequest.js │ │ └── request.js │ ├── main.js │ ├── router │ │ └── index.js │ ├── utils │ │ ├── channelUserId.js │ │ └── wayCode.js │ └── views │ │ ├── Cashier.vue │ │ ├── Error.vue │ │ ├── Hub.vue │ │ ├── Oauth2Callback.vue │ │ ├── dialog │ │ ├── dialog.vue │ │ └── index.js │ │ ├── keyboard │ │ └── keyboard.vue │ │ └── payway │ │ ├── Alipay.vue │ │ ├── Wxpay.vue │ │ ├── Ysfpay.vue │ │ └── pay.css └── vue.config.js ├── jeepay-ui-manager ├── .browserslistrc ├── .env ├── .env.development ├── .eslintrc.js ├── .prettierrc.cjs ├── components.d.ts ├── imgs │ ├── defava_f.png │ ├── defava_m.png │ ├── favicon.ico │ └── logo.svg ├── index.html ├── package-lock.json ├── package.json ├── src │ ├── App.vue │ ├── api │ │ ├── login.js │ │ └── manage.js │ ├── assets │ │ ├── logo-j.svg │ │ ├── logo.svg │ │ ├── styles │ │ │ ├── color.css │ │ │ └── color.less │ │ └── svg │ │ │ ├── 403.svg │ │ │ ├── 404.svg │ │ │ ├── 500.svg │ │ │ ├── add-icon-hover.svg │ │ │ ├── add-icon.svg │ │ │ ├── background.svg │ │ │ ├── backgroundold.svg │ │ │ ├── code.svg │ │ │ ├── empty.svg │ │ │ ├── jeepay.svg │ │ │ ├── lock.svg │ │ │ ├── mini-logo.svg │ │ │ ├── more.svg │ │ │ ├── operate.svg │ │ │ ├── scroll_down.svg │ │ │ ├── scroll_left.svg │ │ │ ├── scroll_right.svg │ │ │ ├── scroll_up.svg │ │ │ ├── select-code.svg │ │ │ ├── select-lock.svg │ │ │ ├── select-user.svg │ │ │ └── user.svg │ ├── components │ │ ├── GlobalFooter │ │ │ └── index.vue │ │ ├── GlobalHeader │ │ │ ├── AvatarDropdown.vue │ │ │ └── RightContent.vue │ │ ├── GlobalLoad │ │ │ └── GlobalLoad.vue │ │ ├── JeepayCard │ │ │ └── JeepayCard.vue │ │ ├── JeepayLayout │ │ │ ├── JeepayLayout.vue │ │ │ └── SubMenu.vue │ │ ├── JeepayTable │ │ │ ├── JeepayDrChildren.vue │ │ │ ├── JeepayMenu.vue │ │ │ ├── JeepayTable.vue │ │ │ ├── JeepayTableColState.vue │ │ │ └── JeepayTableColumns.vue │ │ ├── JeepayTextUp │ │ │ └── JeepayTextUp.vue │ │ ├── JeepayUpload │ │ │ └── JeepayUpload.vue │ │ └── NProgress │ │ │ └── nprogress.less │ ├── config │ │ └── appConfig.js │ ├── core │ │ ├── bootstrap.js │ │ ├── lazy_use.js │ │ └── use.js │ ├── global.less │ ├── http │ │ ├── HttpRequest.js │ │ └── request.js │ ├── icons.ts │ ├── layouts │ │ ├── BasicLayout.less │ │ ├── BasicLayout.vue │ │ ├── BlankLayout.vue │ │ ├── PageView.vue │ │ ├── RouteView.vue │ │ ├── UserLayout.vue │ │ └── index.js │ ├── less │ │ ├── color.css │ │ └── color.less │ ├── main.ts │ ├── router.ts │ ├── router │ │ ├── generator-routers.js │ │ └── index.js │ ├── store │ │ └── modules │ │ │ └── user.ts │ ├── utils │ │ ├── domUtil.js │ │ ├── filter.js │ │ ├── infoBox.js │ │ ├── jeepayStorageWrapper.js │ │ ├── screenLog.js │ │ ├── throttle.js │ │ ├── util.js │ │ └── utils.less │ └── views │ │ ├── current │ │ ├── AvatarModal.vue │ │ └── UserinfoPage.vue │ │ ├── dashboard │ │ ├── Analysis.vue │ │ ├── empty.vue │ │ ├── index.css │ │ └── index.less │ │ ├── ent │ │ ├── AddOrEdit.vue │ │ └── EntPage.vue │ │ ├── exception │ │ ├── 403.vue │ │ ├── 404.vue │ │ └── 500.vue │ │ ├── isv │ │ ├── AddOrEdit.vue │ │ ├── IsvList.vue │ │ ├── IsvPayIfConfigList.vue │ │ └── custom │ │ │ ├── AlipayPayConfig.vue │ │ │ └── WxpayPayConfig.vue │ │ ├── mch │ │ ├── AddOrEdit.vue │ │ ├── Detail.vue │ │ └── MchList.vue │ │ ├── mchApp │ │ ├── AddOrEdit.vue │ │ ├── AlipayAuth.vue │ │ ├── List.vue │ │ ├── MchPayConfigAddOrEdit.vue │ │ ├── MchPayIfConfigList.vue │ │ ├── MchPayPassageAddOrEdit.vue │ │ └── custom │ │ │ ├── AlipayPayConfig.vue │ │ │ └── WxpayPayConfig.vue │ │ ├── order │ │ ├── notify │ │ │ └── MchNotifyList.vue │ │ ├── pay │ │ │ ├── PayOrderList.vue │ │ │ └── RefundModal.vue │ │ ├── refund │ │ │ └── RefundOrderList.vue │ │ └── transfer │ │ │ ├── TransferOrderDetail.vue │ │ │ └── TransferOrderList.vue │ │ ├── payconfig │ │ ├── payIfDefine │ │ │ ├── AddOrEdit.vue │ │ │ └── List.vue │ │ └── payWay │ │ │ ├── AddOrEdit.vue │ │ │ └── List.vue │ │ ├── role │ │ ├── Add.vue │ │ ├── AddOrEdit.vue │ │ ├── RoleDist.vue │ │ └── RolePage.vue │ │ ├── sys │ │ ├── config │ │ │ └── SysConfig.vue │ │ └── log │ │ │ └── SysLog.vue │ │ ├── sysuser │ │ ├── AddOrEdit.vue │ │ ├── RoleDist.vue │ │ └── SysUserPage.vue │ │ └── user │ │ └── Login.vue ├── tests │ └── unit │ │ └── .eslintrc.js ├── tsconfig.json └── vite.config.ts └── jeepay-ui-merchant ├── .browserslistrc ├── .env ├── .env.development ├── .eslintrc.js ├── .prettierrc.cjs ├── components.d.ts ├── index.html ├── indexImgs ├── defava_f.png ├── defava_m.png ├── favicon.ico └── logo.svg ├── package-lock.json ├── package.json ├── public ├── imgs │ ├── defava_f.png │ ├── defava_m.png │ ├── favicon.ico │ └── logo.svg └── index.html ├── src ├── App.vue ├── api │ ├── login.js │ └── manage.js ├── assets │ ├── images │ │ └── background.png │ ├── logo-j.svg │ ├── logo.svg │ ├── payTestImg │ │ ├── ali_app.svg │ │ ├── ali_bar.svg │ │ ├── ali_jsapi.svg │ │ ├── ali_pc.svg │ │ ├── ali_qr.svg │ │ ├── ali_wap.svg │ │ ├── auto_bar.svg │ │ ├── jee-big.svg │ │ ├── jee-quan.svg │ │ ├── logo.svg │ │ ├── pay_h5.png │ │ ├── pp_pc.svg │ │ ├── qr_cashier.svg │ │ ├── scan.png │ │ ├── scan.svg │ │ ├── top.svg │ │ ├── wx_app.svg │ │ ├── wx_bar.svg │ │ ├── wx_h5.svg │ │ ├── wx_jsapi.svg │ │ └── wx_native.svg │ ├── styles │ │ ├── color.css │ │ └── color.less │ └── svg │ │ ├── 403.svg │ │ ├── 404.svg │ │ ├── 500.svg │ │ ├── add-icon.svg │ │ ├── background.svg │ │ ├── backgroundold.svg │ │ ├── code.svg │ │ ├── empty.svg │ │ ├── jeepay.svg │ │ ├── lock.svg │ │ ├── mini-logo.svg │ │ ├── more.svg │ │ ├── operate.svg │ │ ├── scroll_down.svg │ │ ├── scroll_left.svg │ │ ├── scroll_right.svg │ │ ├── scroll_up.svg │ │ ├── select-code.svg │ │ ├── select-lock.svg │ │ ├── select-user.svg │ │ └── user.svg ├── components │ ├── ChannelUser │ │ └── ChannelUserModal.vue │ ├── GlobalFooter │ │ └── index.vue │ ├── GlobalHeader │ │ ├── AvatarDropdown.vue │ │ └── RightContent.vue │ ├── GlobalLoad │ │ └── GlobalLoad.vue │ ├── JeepayCard │ │ └── JeepayCard.vue │ ├── JeepayLayout │ │ ├── JeepayLayout.vue │ │ └── SubMenu.vue │ ├── JeepayTable │ │ ├── JeepayDrChildren.vue │ │ ├── JeepayMenu.vue │ │ ├── JeepayTable.vue │ │ ├── JeepayTableColState.vue │ │ └── JeepayTableColumns.vue │ ├── JeepayTextUp │ │ └── JeepayTextUp.vue │ ├── JeepayUpload │ │ └── JeepayUpload.vue │ └── NProgress │ │ └── nprogress.less ├── config │ └── appConfig.js ├── core │ ├── bootstrap.js │ ├── lazy_use.js │ └── use.js ├── global.less ├── http │ ├── HttpRequest.js │ └── request.js ├── icons.ts ├── layouts │ ├── BasicLayout.less │ ├── BasicLayout.vue │ ├── BlankLayout.vue │ ├── PageView.vue │ ├── RouteView.vue │ ├── UserLayout.vue │ └── index.js ├── less │ ├── color.css │ └── color.less ├── main.ts ├── router.ts ├── router │ ├── generator-routers.js │ └── index.js ├── store │ └── modules │ │ └── user.ts ├── utils │ ├── domUtil.js │ ├── filter.js │ ├── infoBox.js │ ├── jeepayStorageWrapper.js │ ├── ruleGenerator.js │ ├── screenLog.js │ ├── throttle.js │ ├── util.js │ └── utils.less └── views │ ├── current │ ├── AvatarModal.vue │ └── UserinfoPage.vue │ ├── dashboard │ ├── Analysis.vue │ ├── empty.vue │ ├── index.css │ └── index.less │ ├── division │ ├── group │ │ ├── AddOrEdit.vue │ │ └── DivisionReceiverGroupPage.vue │ ├── receiver │ │ ├── DivisionReceiverPage.vue │ │ ├── ReceiverAdd.vue │ │ └── ReceiverEdit.vue │ └── record │ │ ├── Detail.vue │ │ └── DivisionRecordPage.vue │ ├── exception │ ├── 403.vue │ ├── 404.vue │ └── 500.vue │ ├── mchApp │ ├── AddOrEdit.vue │ ├── AlipayAuth.vue │ ├── List.vue │ ├── MchPayConfigAddOrEdit.vue │ ├── MchPayIfConfigList.vue │ ├── MchPayPassageAddOrEdit.vue │ └── custom │ │ ├── AlipayPayConfig.vue │ │ └── WxpayPayConfig.vue │ ├── mchCode │ └── MchCodePage.vue │ ├── order │ ├── pay │ │ ├── PayOrderList.vue │ │ └── RefundModal.vue │ ├── refund │ │ └── RefundOrderList.vue │ └── transfer │ │ ├── TransferOrderDetail.vue │ │ └── TransferOrderList.vue │ ├── payTest │ ├── PayTest.vue │ ├── PayTestBarCode.vue │ ├── PayTestModal.vue │ └── payTest.css │ ├── role │ ├── AddOrEdit.vue │ ├── RoleDist.vue │ └── RolePage.vue │ ├── sysuser │ ├── AddOrEdit.vue │ ├── RoleDist.vue │ └── SysUserPage.vue │ ├── transfer │ ├── MchTransferPage.css │ └── MchTransferPage.vue │ └── user │ └── Login.vue ├── tsconfig.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/README.md -------------------------------------------------------------------------------- /default.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/default.conf.template -------------------------------------------------------------------------------- /jeepay-ui-cashier/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/.env -------------------------------------------------------------------------------- /jeepay-ui-cashier/.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/.env.development -------------------------------------------------------------------------------- /jeepay-ui-cashier/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/.gitignore -------------------------------------------------------------------------------- /jeepay-ui-cashier/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/.postcssrc.js -------------------------------------------------------------------------------- /jeepay-ui-cashier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/README.md -------------------------------------------------------------------------------- /jeepay-ui-cashier/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/babel.config.js -------------------------------------------------------------------------------- /jeepay-ui-cashier/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/package-lock.json -------------------------------------------------------------------------------- /jeepay-ui-cashier/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/package.json -------------------------------------------------------------------------------- /jeepay-ui-cashier/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/public/favicon.ico -------------------------------------------------------------------------------- /jeepay-ui-cashier/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/public/index.html -------------------------------------------------------------------------------- /jeepay-ui-cashier/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/src/App.vue -------------------------------------------------------------------------------- /jeepay-ui-cashier/src/api/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/src/api/api.js -------------------------------------------------------------------------------- /jeepay-ui-cashier/src/assets/icon/S.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/src/assets/icon/S.svg -------------------------------------------------------------------------------- /jeepay-ui-cashier/src/assets/icon/error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/src/assets/icon/error.svg -------------------------------------------------------------------------------- /jeepay-ui-cashier/src/assets/icon/wx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/src/assets/icon/wx.svg -------------------------------------------------------------------------------- /jeepay-ui-cashier/src/assets/images/empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/src/assets/images/empty.svg -------------------------------------------------------------------------------- /jeepay-ui-cashier/src/assets/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/src/assets/images/loading.gif -------------------------------------------------------------------------------- /jeepay-ui-cashier/src/assets/images/ysf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/src/assets/images/ysf.jpg -------------------------------------------------------------------------------- /jeepay-ui-cashier/src/assets/images/zfb.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/src/assets/images/zfb.jpeg -------------------------------------------------------------------------------- /jeepay-ui-cashier/src/assets/wx-zt/WeChatSansSS-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/src/assets/wx-zt/WeChatSansSS-Bold.ttf -------------------------------------------------------------------------------- /jeepay-ui-cashier/src/assets/wx-zt/WeChatSansSS-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/src/assets/wx-zt/WeChatSansSS-Light.ttf -------------------------------------------------------------------------------- /jeepay-ui-cashier/src/assets/wx-zt/WeChatSansSS-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/src/assets/wx-zt/WeChatSansSS-Medium.ttf -------------------------------------------------------------------------------- /jeepay-ui-cashier/src/assets/wx-zt/WeChatSansSS-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/src/assets/wx-zt/WeChatSansSS-Regular.ttf -------------------------------------------------------------------------------- /jeepay-ui-cashier/src/assets/wx-zt/WeChatSansStd-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/src/assets/wx-zt/WeChatSansStd-Bold.ttf -------------------------------------------------------------------------------- /jeepay-ui-cashier/src/assets/wx-zt/WeChatSansStd-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/src/assets/wx-zt/WeChatSansStd-Light.ttf -------------------------------------------------------------------------------- /jeepay-ui-cashier/src/assets/wx-zt/WeChatSansStd-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/src/assets/wx-zt/WeChatSansStd-Medium.ttf -------------------------------------------------------------------------------- /jeepay-ui-cashier/src/assets/wx-zt/WeChatSansStd-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/src/assets/wx-zt/WeChatSansStd-Regular.ttf -------------------------------------------------------------------------------- /jeepay-ui-cashier/src/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/src/config/index.js -------------------------------------------------------------------------------- /jeepay-ui-cashier/src/config/rem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/src/config/rem.js -------------------------------------------------------------------------------- /jeepay-ui-cashier/src/http/HttpRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/src/http/HttpRequest.js -------------------------------------------------------------------------------- /jeepay-ui-cashier/src/http/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/src/http/request.js -------------------------------------------------------------------------------- /jeepay-ui-cashier/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/src/main.js -------------------------------------------------------------------------------- /jeepay-ui-cashier/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/src/router/index.js -------------------------------------------------------------------------------- /jeepay-ui-cashier/src/utils/channelUserId.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/src/utils/channelUserId.js -------------------------------------------------------------------------------- /jeepay-ui-cashier/src/utils/wayCode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/src/utils/wayCode.js -------------------------------------------------------------------------------- /jeepay-ui-cashier/src/views/Cashier.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/src/views/Cashier.vue -------------------------------------------------------------------------------- /jeepay-ui-cashier/src/views/Error.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/src/views/Error.vue -------------------------------------------------------------------------------- /jeepay-ui-cashier/src/views/Hub.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/src/views/Hub.vue -------------------------------------------------------------------------------- /jeepay-ui-cashier/src/views/Oauth2Callback.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/src/views/Oauth2Callback.vue -------------------------------------------------------------------------------- /jeepay-ui-cashier/src/views/dialog/dialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/src/views/dialog/dialog.vue -------------------------------------------------------------------------------- /jeepay-ui-cashier/src/views/dialog/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/src/views/dialog/index.js -------------------------------------------------------------------------------- /jeepay-ui-cashier/src/views/keyboard/keyboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/src/views/keyboard/keyboard.vue -------------------------------------------------------------------------------- /jeepay-ui-cashier/src/views/payway/Alipay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/src/views/payway/Alipay.vue -------------------------------------------------------------------------------- /jeepay-ui-cashier/src/views/payway/Wxpay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/src/views/payway/Wxpay.vue -------------------------------------------------------------------------------- /jeepay-ui-cashier/src/views/payway/Ysfpay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/src/views/payway/Ysfpay.vue -------------------------------------------------------------------------------- /jeepay-ui-cashier/src/views/payway/pay.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/src/views/payway/pay.css -------------------------------------------------------------------------------- /jeepay-ui-cashier/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-cashier/vue.config.js -------------------------------------------------------------------------------- /jeepay-ui-manager/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not ie <= 10 4 | -------------------------------------------------------------------------------- /jeepay-ui-manager/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/.env -------------------------------------------------------------------------------- /jeepay-ui-manager/.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/.env.development -------------------------------------------------------------------------------- /jeepay-ui-manager/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/.eslintrc.js -------------------------------------------------------------------------------- /jeepay-ui-manager/.prettierrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/.prettierrc.cjs -------------------------------------------------------------------------------- /jeepay-ui-manager/components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/components.d.ts -------------------------------------------------------------------------------- /jeepay-ui-manager/imgs/defava_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/imgs/defava_f.png -------------------------------------------------------------------------------- /jeepay-ui-manager/imgs/defava_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/imgs/defava_m.png -------------------------------------------------------------------------------- /jeepay-ui-manager/imgs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/imgs/favicon.ico -------------------------------------------------------------------------------- /jeepay-ui-manager/imgs/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/imgs/logo.svg -------------------------------------------------------------------------------- /jeepay-ui-manager/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/index.html -------------------------------------------------------------------------------- /jeepay-ui-manager/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/package-lock.json -------------------------------------------------------------------------------- /jeepay-ui-manager/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/package.json -------------------------------------------------------------------------------- /jeepay-ui-manager/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/App.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/api/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/api/login.js -------------------------------------------------------------------------------- /jeepay-ui-manager/src/api/manage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/api/manage.js -------------------------------------------------------------------------------- /jeepay-ui-manager/src/assets/logo-j.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/assets/logo-j.svg -------------------------------------------------------------------------------- /jeepay-ui-manager/src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/assets/logo.svg -------------------------------------------------------------------------------- /jeepay-ui-manager/src/assets/styles/color.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jeepay-ui-manager/src/assets/styles/color.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/assets/styles/color.less -------------------------------------------------------------------------------- /jeepay-ui-manager/src/assets/svg/403.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/assets/svg/403.svg -------------------------------------------------------------------------------- /jeepay-ui-manager/src/assets/svg/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/assets/svg/404.svg -------------------------------------------------------------------------------- /jeepay-ui-manager/src/assets/svg/500.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/assets/svg/500.svg -------------------------------------------------------------------------------- /jeepay-ui-manager/src/assets/svg/add-icon-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/assets/svg/add-icon-hover.svg -------------------------------------------------------------------------------- /jeepay-ui-manager/src/assets/svg/add-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/assets/svg/add-icon.svg -------------------------------------------------------------------------------- /jeepay-ui-manager/src/assets/svg/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/assets/svg/background.svg -------------------------------------------------------------------------------- /jeepay-ui-manager/src/assets/svg/backgroundold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/assets/svg/backgroundold.svg -------------------------------------------------------------------------------- /jeepay-ui-manager/src/assets/svg/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/assets/svg/code.svg -------------------------------------------------------------------------------- /jeepay-ui-manager/src/assets/svg/empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/assets/svg/empty.svg -------------------------------------------------------------------------------- /jeepay-ui-manager/src/assets/svg/jeepay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/assets/svg/jeepay.svg -------------------------------------------------------------------------------- /jeepay-ui-manager/src/assets/svg/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/assets/svg/lock.svg -------------------------------------------------------------------------------- /jeepay-ui-manager/src/assets/svg/mini-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/assets/svg/mini-logo.svg -------------------------------------------------------------------------------- /jeepay-ui-manager/src/assets/svg/more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/assets/svg/more.svg -------------------------------------------------------------------------------- /jeepay-ui-manager/src/assets/svg/operate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/assets/svg/operate.svg -------------------------------------------------------------------------------- /jeepay-ui-manager/src/assets/svg/scroll_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/assets/svg/scroll_down.svg -------------------------------------------------------------------------------- /jeepay-ui-manager/src/assets/svg/scroll_left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/assets/svg/scroll_left.svg -------------------------------------------------------------------------------- /jeepay-ui-manager/src/assets/svg/scroll_right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/assets/svg/scroll_right.svg -------------------------------------------------------------------------------- /jeepay-ui-manager/src/assets/svg/scroll_up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/assets/svg/scroll_up.svg -------------------------------------------------------------------------------- /jeepay-ui-manager/src/assets/svg/select-code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/assets/svg/select-code.svg -------------------------------------------------------------------------------- /jeepay-ui-manager/src/assets/svg/select-lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/assets/svg/select-lock.svg -------------------------------------------------------------------------------- /jeepay-ui-manager/src/assets/svg/select-user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/assets/svg/select-user.svg -------------------------------------------------------------------------------- /jeepay-ui-manager/src/assets/svg/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/assets/svg/user.svg -------------------------------------------------------------------------------- /jeepay-ui-manager/src/components/GlobalFooter/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/components/GlobalFooter/index.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/components/GlobalHeader/AvatarDropdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/components/GlobalHeader/AvatarDropdown.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/components/GlobalHeader/RightContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/components/GlobalHeader/RightContent.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/components/GlobalLoad/GlobalLoad.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/components/GlobalLoad/GlobalLoad.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/components/JeepayCard/JeepayCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/components/JeepayCard/JeepayCard.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/components/JeepayLayout/JeepayLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/components/JeepayLayout/JeepayLayout.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/components/JeepayLayout/SubMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/components/JeepayLayout/SubMenu.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/components/JeepayTable/JeepayDrChildren.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/components/JeepayTable/JeepayDrChildren.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/components/JeepayTable/JeepayMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/components/JeepayTable/JeepayMenu.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/components/JeepayTable/JeepayTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/components/JeepayTable/JeepayTable.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/components/JeepayTable/JeepayTableColState.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/components/JeepayTable/JeepayTableColState.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/components/JeepayTable/JeepayTableColumns.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/components/JeepayTable/JeepayTableColumns.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/components/JeepayTextUp/JeepayTextUp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/components/JeepayTextUp/JeepayTextUp.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/components/JeepayUpload/JeepayUpload.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/components/JeepayUpload/JeepayUpload.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/components/NProgress/nprogress.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/components/NProgress/nprogress.less -------------------------------------------------------------------------------- /jeepay-ui-manager/src/config/appConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/config/appConfig.js -------------------------------------------------------------------------------- /jeepay-ui-manager/src/core/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/core/bootstrap.js -------------------------------------------------------------------------------- /jeepay-ui-manager/src/core/lazy_use.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/core/lazy_use.js -------------------------------------------------------------------------------- /jeepay-ui-manager/src/core/use.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/core/use.js -------------------------------------------------------------------------------- /jeepay-ui-manager/src/global.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/global.less -------------------------------------------------------------------------------- /jeepay-ui-manager/src/http/HttpRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/http/HttpRequest.js -------------------------------------------------------------------------------- /jeepay-ui-manager/src/http/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/http/request.js -------------------------------------------------------------------------------- /jeepay-ui-manager/src/icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/icons.ts -------------------------------------------------------------------------------- /jeepay-ui-manager/src/layouts/BasicLayout.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/layouts/BasicLayout.less -------------------------------------------------------------------------------- /jeepay-ui-manager/src/layouts/BasicLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/layouts/BasicLayout.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/layouts/BlankLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/layouts/BlankLayout.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/layouts/PageView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/layouts/PageView.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/layouts/RouteView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/layouts/RouteView.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/layouts/UserLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/layouts/UserLayout.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/layouts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/layouts/index.js -------------------------------------------------------------------------------- /jeepay-ui-manager/src/less/color.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jeepay-ui-manager/src/less/color.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/less/color.less -------------------------------------------------------------------------------- /jeepay-ui-manager/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/main.ts -------------------------------------------------------------------------------- /jeepay-ui-manager/src/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/router.ts -------------------------------------------------------------------------------- /jeepay-ui-manager/src/router/generator-routers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/router/generator-routers.js -------------------------------------------------------------------------------- /jeepay-ui-manager/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/router/index.js -------------------------------------------------------------------------------- /jeepay-ui-manager/src/store/modules/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/store/modules/user.ts -------------------------------------------------------------------------------- /jeepay-ui-manager/src/utils/domUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/utils/domUtil.js -------------------------------------------------------------------------------- /jeepay-ui-manager/src/utils/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/utils/filter.js -------------------------------------------------------------------------------- /jeepay-ui-manager/src/utils/infoBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/utils/infoBox.js -------------------------------------------------------------------------------- /jeepay-ui-manager/src/utils/jeepayStorageWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/utils/jeepayStorageWrapper.js -------------------------------------------------------------------------------- /jeepay-ui-manager/src/utils/screenLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/utils/screenLog.js -------------------------------------------------------------------------------- /jeepay-ui-manager/src/utils/throttle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/utils/throttle.js -------------------------------------------------------------------------------- /jeepay-ui-manager/src/utils/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/utils/util.js -------------------------------------------------------------------------------- /jeepay-ui-manager/src/utils/utils.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/utils/utils.less -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/current/AvatarModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/current/AvatarModal.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/current/UserinfoPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/current/UserinfoPage.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/dashboard/Analysis.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/dashboard/Analysis.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/dashboard/empty.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/dashboard/empty.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/dashboard/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/dashboard/index.css -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/dashboard/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/dashboard/index.less -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/ent/AddOrEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/ent/AddOrEdit.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/ent/EntPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/ent/EntPage.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/exception/403.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/exception/403.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/exception/404.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/exception/404.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/exception/500.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/exception/500.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/isv/AddOrEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/isv/AddOrEdit.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/isv/IsvList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/isv/IsvList.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/isv/IsvPayIfConfigList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/isv/IsvPayIfConfigList.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/isv/custom/AlipayPayConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/isv/custom/AlipayPayConfig.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/isv/custom/WxpayPayConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/isv/custom/WxpayPayConfig.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/mch/AddOrEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/mch/AddOrEdit.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/mch/Detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/mch/Detail.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/mch/MchList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/mch/MchList.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/mchApp/AddOrEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/mchApp/AddOrEdit.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/mchApp/AlipayAuth.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/mchApp/AlipayAuth.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/mchApp/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/mchApp/List.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/mchApp/MchPayConfigAddOrEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/mchApp/MchPayConfigAddOrEdit.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/mchApp/MchPayIfConfigList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/mchApp/MchPayIfConfigList.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/mchApp/MchPayPassageAddOrEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/mchApp/MchPayPassageAddOrEdit.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/mchApp/custom/AlipayPayConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/mchApp/custom/AlipayPayConfig.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/mchApp/custom/WxpayPayConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/mchApp/custom/WxpayPayConfig.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/order/notify/MchNotifyList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/order/notify/MchNotifyList.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/order/pay/PayOrderList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/order/pay/PayOrderList.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/order/pay/RefundModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/order/pay/RefundModal.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/order/refund/RefundOrderList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/order/refund/RefundOrderList.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/order/transfer/TransferOrderDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/order/transfer/TransferOrderDetail.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/order/transfer/TransferOrderList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/order/transfer/TransferOrderList.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/payconfig/payIfDefine/AddOrEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/payconfig/payIfDefine/AddOrEdit.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/payconfig/payIfDefine/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/payconfig/payIfDefine/List.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/payconfig/payWay/AddOrEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/payconfig/payWay/AddOrEdit.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/payconfig/payWay/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/payconfig/payWay/List.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/role/Add.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/role/Add.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/role/AddOrEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/role/AddOrEdit.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/role/RoleDist.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/role/RoleDist.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/role/RolePage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/role/RolePage.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/sys/config/SysConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/sys/config/SysConfig.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/sys/log/SysLog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/sys/log/SysLog.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/sysuser/AddOrEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/sysuser/AddOrEdit.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/sysuser/RoleDist.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/sysuser/RoleDist.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/sysuser/SysUserPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/sysuser/SysUserPage.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/src/views/user/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/src/views/user/Login.vue -------------------------------------------------------------------------------- /jeepay-ui-manager/tests/unit/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/tests/unit/.eslintrc.js -------------------------------------------------------------------------------- /jeepay-ui-manager/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/tsconfig.json -------------------------------------------------------------------------------- /jeepay-ui-manager/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-manager/vite.config.ts -------------------------------------------------------------------------------- /jeepay-ui-merchant/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not ie <= 10 4 | -------------------------------------------------------------------------------- /jeepay-ui-merchant/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/.env -------------------------------------------------------------------------------- /jeepay-ui-merchant/.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/.env.development -------------------------------------------------------------------------------- /jeepay-ui-merchant/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/.eslintrc.js -------------------------------------------------------------------------------- /jeepay-ui-merchant/.prettierrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/.prettierrc.cjs -------------------------------------------------------------------------------- /jeepay-ui-merchant/components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/components.d.ts -------------------------------------------------------------------------------- /jeepay-ui-merchant/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/index.html -------------------------------------------------------------------------------- /jeepay-ui-merchant/indexImgs/defava_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/indexImgs/defava_f.png -------------------------------------------------------------------------------- /jeepay-ui-merchant/indexImgs/defava_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/indexImgs/defava_m.png -------------------------------------------------------------------------------- /jeepay-ui-merchant/indexImgs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/indexImgs/favicon.ico -------------------------------------------------------------------------------- /jeepay-ui-merchant/indexImgs/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/indexImgs/logo.svg -------------------------------------------------------------------------------- /jeepay-ui-merchant/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/package-lock.json -------------------------------------------------------------------------------- /jeepay-ui-merchant/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/package.json -------------------------------------------------------------------------------- /jeepay-ui-merchant/public/imgs/defava_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/public/imgs/defava_f.png -------------------------------------------------------------------------------- /jeepay-ui-merchant/public/imgs/defava_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/public/imgs/defava_m.png -------------------------------------------------------------------------------- /jeepay-ui-merchant/public/imgs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/public/imgs/favicon.ico -------------------------------------------------------------------------------- /jeepay-ui-merchant/public/imgs/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/public/imgs/logo.svg -------------------------------------------------------------------------------- /jeepay-ui-merchant/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/public/index.html -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/App.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/api/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/api/login.js -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/api/manage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/api/manage.js -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/assets/images/background.png -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/logo-j.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/assets/logo-j.svg -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/assets/logo.svg -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/payTestImg/ali_app.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/assets/payTestImg/ali_app.svg -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/payTestImg/ali_bar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/assets/payTestImg/ali_bar.svg -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/payTestImg/ali_jsapi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/assets/payTestImg/ali_jsapi.svg -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/payTestImg/ali_pc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/assets/payTestImg/ali_pc.svg -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/payTestImg/ali_qr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/assets/payTestImg/ali_qr.svg -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/payTestImg/ali_wap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/assets/payTestImg/ali_wap.svg -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/payTestImg/auto_bar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/assets/payTestImg/auto_bar.svg -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/payTestImg/jee-big.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/assets/payTestImg/jee-big.svg -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/payTestImg/jee-quan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/assets/payTestImg/jee-quan.svg -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/payTestImg/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/assets/payTestImg/logo.svg -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/payTestImg/pay_h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/assets/payTestImg/pay_h5.png -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/payTestImg/pp_pc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/assets/payTestImg/pp_pc.svg -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/payTestImg/qr_cashier.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/assets/payTestImg/qr_cashier.svg -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/payTestImg/scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/assets/payTestImg/scan.png -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/payTestImg/scan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/assets/payTestImg/scan.svg -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/payTestImg/top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/assets/payTestImg/top.svg -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/payTestImg/wx_app.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/assets/payTestImg/wx_app.svg -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/payTestImg/wx_bar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/assets/payTestImg/wx_bar.svg -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/payTestImg/wx_h5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/assets/payTestImg/wx_h5.svg -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/payTestImg/wx_jsapi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/assets/payTestImg/wx_jsapi.svg -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/payTestImg/wx_native.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/assets/payTestImg/wx_native.svg -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/styles/color.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/styles/color.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/assets/styles/color.less -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/svg/403.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/assets/svg/403.svg -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/svg/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/assets/svg/404.svg -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/svg/500.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/assets/svg/500.svg -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/svg/add-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/assets/svg/add-icon.svg -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/svg/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/assets/svg/background.svg -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/svg/backgroundold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/assets/svg/backgroundold.svg -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/svg/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/assets/svg/code.svg -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/svg/empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/assets/svg/empty.svg -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/svg/jeepay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/assets/svg/jeepay.svg -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/svg/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/assets/svg/lock.svg -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/svg/mini-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/assets/svg/mini-logo.svg -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/svg/more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/assets/svg/more.svg -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/svg/operate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/assets/svg/operate.svg -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/svg/scroll_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/assets/svg/scroll_down.svg -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/svg/scroll_left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/assets/svg/scroll_left.svg -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/svg/scroll_right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/assets/svg/scroll_right.svg -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/svg/scroll_up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/assets/svg/scroll_up.svg -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/svg/select-code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/assets/svg/select-code.svg -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/svg/select-lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/assets/svg/select-lock.svg -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/svg/select-user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/assets/svg/select-user.svg -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/assets/svg/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/assets/svg/user.svg -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/components/ChannelUser/ChannelUserModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/components/ChannelUser/ChannelUserModal.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/components/GlobalFooter/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/components/GlobalFooter/index.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/components/GlobalHeader/AvatarDropdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/components/GlobalHeader/AvatarDropdown.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/components/GlobalHeader/RightContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/components/GlobalHeader/RightContent.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/components/GlobalLoad/GlobalLoad.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/components/GlobalLoad/GlobalLoad.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/components/JeepayCard/JeepayCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/components/JeepayCard/JeepayCard.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/components/JeepayLayout/JeepayLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/components/JeepayLayout/JeepayLayout.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/components/JeepayLayout/SubMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/components/JeepayLayout/SubMenu.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/components/JeepayTable/JeepayDrChildren.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/components/JeepayTable/JeepayDrChildren.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/components/JeepayTable/JeepayMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/components/JeepayTable/JeepayMenu.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/components/JeepayTable/JeepayTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/components/JeepayTable/JeepayTable.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/components/JeepayTable/JeepayTableColState.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/components/JeepayTable/JeepayTableColState.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/components/JeepayTable/JeepayTableColumns.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/components/JeepayTable/JeepayTableColumns.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/components/JeepayTextUp/JeepayTextUp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/components/JeepayTextUp/JeepayTextUp.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/components/JeepayUpload/JeepayUpload.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/components/JeepayUpload/JeepayUpload.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/components/NProgress/nprogress.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/components/NProgress/nprogress.less -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/config/appConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/config/appConfig.js -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/core/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/core/bootstrap.js -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/core/lazy_use.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/core/lazy_use.js -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/core/use.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/core/use.js -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/global.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/global.less -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/http/HttpRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/http/HttpRequest.js -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/http/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/http/request.js -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/icons.ts -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/layouts/BasicLayout.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/layouts/BasicLayout.less -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/layouts/BasicLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/layouts/BasicLayout.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/layouts/BlankLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/layouts/BlankLayout.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/layouts/PageView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/layouts/PageView.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/layouts/RouteView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/layouts/RouteView.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/layouts/UserLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/layouts/UserLayout.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/layouts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/layouts/index.js -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/less/color.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/less/color.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/less/color.less -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/main.ts -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/router.ts -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/router/generator-routers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/router/generator-routers.js -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/router/index.js -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/store/modules/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/store/modules/user.ts -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/utils/domUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/utils/domUtil.js -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/utils/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/utils/filter.js -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/utils/infoBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/utils/infoBox.js -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/utils/jeepayStorageWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/utils/jeepayStorageWrapper.js -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/utils/ruleGenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/utils/ruleGenerator.js -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/utils/screenLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/utils/screenLog.js -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/utils/throttle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/utils/throttle.js -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/utils/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/utils/util.js -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/utils/utils.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/utils/utils.less -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/views/current/AvatarModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/views/current/AvatarModal.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/views/current/UserinfoPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/views/current/UserinfoPage.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/views/dashboard/Analysis.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/views/dashboard/Analysis.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/views/dashboard/empty.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/views/dashboard/empty.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/views/dashboard/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/views/dashboard/index.css -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/views/dashboard/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/views/dashboard/index.less -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/views/division/group/AddOrEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/views/division/group/AddOrEdit.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/views/division/group/DivisionReceiverGroupPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/views/division/group/DivisionReceiverGroupPage.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/views/division/receiver/DivisionReceiverPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/views/division/receiver/DivisionReceiverPage.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/views/division/receiver/ReceiverAdd.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/views/division/receiver/ReceiverAdd.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/views/division/receiver/ReceiverEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/views/division/receiver/ReceiverEdit.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/views/division/record/Detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/views/division/record/Detail.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/views/division/record/DivisionRecordPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/views/division/record/DivisionRecordPage.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/views/exception/403.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/views/exception/403.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/views/exception/404.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/views/exception/404.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/views/exception/500.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/views/exception/500.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/views/mchApp/AddOrEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/views/mchApp/AddOrEdit.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/views/mchApp/AlipayAuth.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/views/mchApp/AlipayAuth.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/views/mchApp/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/views/mchApp/List.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/views/mchApp/MchPayConfigAddOrEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/views/mchApp/MchPayConfigAddOrEdit.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/views/mchApp/MchPayIfConfigList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/views/mchApp/MchPayIfConfigList.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/views/mchApp/MchPayPassageAddOrEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/views/mchApp/MchPayPassageAddOrEdit.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/views/mchApp/custom/AlipayPayConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/views/mchApp/custom/AlipayPayConfig.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/views/mchApp/custom/WxpayPayConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/views/mchApp/custom/WxpayPayConfig.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/views/mchCode/MchCodePage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/views/mchCode/MchCodePage.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/views/order/pay/PayOrderList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/views/order/pay/PayOrderList.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/views/order/pay/RefundModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/views/order/pay/RefundModal.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/views/order/refund/RefundOrderList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/views/order/refund/RefundOrderList.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/views/order/transfer/TransferOrderDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/views/order/transfer/TransferOrderDetail.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/views/order/transfer/TransferOrderList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/views/order/transfer/TransferOrderList.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/views/payTest/PayTest.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/views/payTest/PayTest.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/views/payTest/PayTestBarCode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/views/payTest/PayTestBarCode.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/views/payTest/PayTestModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/views/payTest/PayTestModal.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/views/payTest/payTest.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/views/payTest/payTest.css -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/views/role/AddOrEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/views/role/AddOrEdit.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/views/role/RoleDist.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/views/role/RoleDist.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/views/role/RolePage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/views/role/RolePage.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/views/sysuser/AddOrEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/views/sysuser/AddOrEdit.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/views/sysuser/RoleDist.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/views/sysuser/RoleDist.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/views/sysuser/SysUserPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/views/sysuser/SysUserPage.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/views/transfer/MchTransferPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/views/transfer/MchTransferPage.css -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/views/transfer/MchTransferPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/views/transfer/MchTransferPage.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/src/views/user/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/src/views/user/Login.vue -------------------------------------------------------------------------------- /jeepay-ui-merchant/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/tsconfig.json -------------------------------------------------------------------------------- /jeepay-ui-merchant/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeequan/jeepay-ui/HEAD/jeepay-ui-merchant/vite.config.ts --------------------------------------------------------------------------------