1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-01-30 19:52:20 +01:00

(feat) change store cart url

This commit is contained in:
Du Peng 2022-09-08 16:41:10 +02:00
parent aeae5f7aa0
commit 5d243d3be6
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ const CartButton: React.FC = () => {
* Goto cart page
*/
const showCart = () => {
window.location.href = '/#!/cart';
window.location.href = '/#!/store/cart';
};
return (

View File

@ -633,7 +633,7 @@ angular.module('application.router', ['ui.router'])
// cart
.state('app.public.cart', {
url: '/cart',
url: '/store/cart',
views: {
'main@': {
templateUrl: '/cart/index.html',