|
- var base_path = "/gys-xm/";
- var domain_path = "zhizhuchuxing.com"
- var cs1_path = "http://cs1." + domain_path;
- var system_path = cs1_path + "/menu/menu";
- var cookie_path = "http://cs." + domain_path + "/";
- $(document).ready(function () {
- document.domain = domain_path;
- refreshPage();
- });
- function open_new_path(index) {
- var go_path = $(index).attr("go_path");
- $.cookie('user_path', "2", {path: "/", domain: domain_path});
- $.cookie("path_url", cookie_path + go_path, {domain: domain_path, path: "/"});
- window.open(system_path);
- }
- function open_order_detail_path(index) {
- var go_path = $(index).attr("go_path");
- $.cookie('user_path', "2", {path: "/", domain: domain_path});
- $.cookie("path_url", cs1_path + "/" + go_path, {domain: domain_path, path: "/"});
- window.open(system_path);
- }
- function refreshPage() {
- var index = location.href;
- $.cookie("path_url", index, {domain: domain_path, path: "/"});
- $('body').attr("path", index);
- }
- $(document).click(function(e){
- e.stopPropagation();
- if($(".cut_system",parent.document).is(':visible')){
- $(".cut_system",parent.document).slideToggle(200);
- }else{
- return;
- }
- });
|