1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- const buriedPoint = (name, id, url) => {
-
- aplus_queue.push({
- action: 'aplus.setMetaInfo',
- arguments: ['aplus-waiting', 'MAN']
- });
-
- aplus_queue.push({
- action: 'aplus.setMetaInfo',
- arguments: ['_hold', 'BLOCK']
- });
-
- aplus_queue.push({
- action: 'aplus.sendPV',
- arguments: [{
- is_auto: false
- }, {
-
- sapp_id: '19796',
- sapp_name: 'nbyzjcybt',
-
- page_id: id,
- page_name: name,
- page_url: url
- }]
- })
-
-
- aplus_queue.push({
- action: "aplus.setMetaInfo",
- arguments: ["_user_id", sessionStorage.getItem('accountId')]
- });
-
-
-
-
-
-
- aplus_queue.push({
- action: 'aplus.setMetaInfo',
- arguments: ['_hold', 'START']
- });
- }
- export default buriedPoint
|