|
@@ -0,0 +1,65 @@
|
|
|
+
|
|
|
+const buriedPoint = (name, id, url) => {
|
|
|
+ const userInfo = uni.getStorageSync("userInfo");
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ aplus_queue.push({
|
|
|
+ action: 'aplus.setMetaInfo',
|
|
|
+ arguments: ['aplus-waiting', 'MAN']
|
|
|
+ });
|
|
|
+
|
|
|
+ aplus_queue.push({
|
|
|
+ action: 'aplus.sendPV',
|
|
|
+ arguments: [{
|
|
|
+ is_auto: false
|
|
|
+ }, {
|
|
|
+
|
|
|
+ sapp_id: '39367',
|
|
|
+ sapp_name: 'FH_SZMP',
|
|
|
+
|
|
|
+ page_id: id,
|
|
|
+ page_name: name,
|
|
|
+ page_url: url
|
|
|
+ }]
|
|
|
+ })
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ aplus_queue.push({
|
|
|
+ action: 'aplus.setMetaInfo',
|
|
|
+ arguments: ['_hold', 'BLOCK']
|
|
|
+ });
|
|
|
+
|
|
|
+
|
|
|
+ aplus_queue.push(
|
|
|
+ {
|
|
|
+ action: "aplus.setMetaInfo",
|
|
|
+ arguments: ["_user_nick", userInfo.username]
|
|
|
+ });
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ aplus_queue.push({
|
|
|
+ action: "aplus.setMetaInfo",
|
|
|
+ arguments: ["_user_id", sessionStorage.getItem('accountId')]
|
|
|
+ });
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ aplus_queue.push({
|
|
|
+ action: 'aplus.setMetaInfo',
|
|
|
+ arguments: ['_hold', 'START']
|
|
|
+ });
|
|
|
+}
|
|
|
+
|
|
|
+export default buriedPoint
|