1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- import App from "./index.vue";
- import "@/assets/js/common";
- import { createApp } from "vue";
- import { getPageParameters, environment } from "../../config/pageConfig";
- // 判断环境
- environment();
- window.$originData = getPageParameters();
- createApp(App).mount("#app")
- // 分享
- window.weixin_Share_Init(
- window.$originData.orginParames.title || "",
- "",
- "https://cxzx.smcic.net/topic/tool/img/2025lm.png",
- "https://cxzx.smcic.net/topic/activity/fenghui.html?" + Date.now()
- );
- var SL = new window.SmcicLogger("special", "c6124e08");
- SL.Util.SetUrl("https://collect.smcic.net:8443/");
- SL.Systematic.Init({
- appid: "c6124e08",
- channel: "special",
- model: "",
- os: "",
- os_version: "",
- carrier: "",
- network_type: "",
- ip: "",
- app_name: "",
- app_version: "",
- build_version: "",
- platform_type: "",
- });
- SL.Content.CommodityDetail({
- commodity_detail_source: "活动",
- commodity_id: "",
- commodity_name: window.$originData.orginParames.title || "",
- publisher_name: "",
- publisher_id: "",
- review_count: 0,
- comment_count: 0,
- collect_count: 0,
- share_count: 0,
- like_count: 0,
- tag: [],
- });
|