| 123456789101112131415 |
- //解析二维码链接
- function setDataUrl(url) {
- let q = url;
- const data = {
- type: q.slice(q.indexOf("type=") + 5, q.indexOf('&')),
- id: q.slice(q.lastIndexOf('=') + 1),
- name: q.slice(q.lastIndexOf('fbrand=') + 7, q.lastIndexOf('&'))
- }
- wx.setStorageSync('qrCodeMsg', data);
- return data;
- }
- module.exports = {
- setDataUrl
- }
|