Shopping Mall Home Page

This page should be the Home page for Shopping Mall website for desktop, mobile and Wechat. Except for "Services Request, this website is setup for demo purpose only. Our corporate web site, this Shopping Mall site, WeChat site are all setup using our GeO ERP software, it's just part of GeO ERP software and integrated with all different modules when necessary. This Shopping Mall is provided to our customers who want to explore and experience our product functions. Only registered system administrator of our customers can login and use this site, the registration is not opened for other users.

var dataSet={loginflg:"Y",publicflg:"N",cartqty:"2",cartamt:"800.00",cartrows:[["Black Glasses","1","400.00",""],["Blue Glasses","1","400.00",""]]};var app=new Vue({el:"#app",data:dataSet,watch:{cartqty:function(a){$("#shopcart").removeClass("animated rubberBand").addClass("animated rubberBand").one("webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend",function(){$(this).removeClass("animated rubberBand")})}},methods:{get_login_info:function(){postData("ep_utl.get_data",{p_action:"GETLOGININFO"},function(a){dataSet.loginflg=a.loginflg;dataSet.publicflg=a.publicflg})},update_cart_info:function(){postData("ep1.cart_info",{},function(a){dataSet.cartqty=a.cartqty;dataSet.cartamt=a.cartamt;dataSet.cartrows=a.cartrows})}}});$(document).ready(function(){app.get_login_info();app.update_cart_info()});