1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- 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
|