16 lines
324 B
JavaScript
16 lines
324 B
JavaScript
/**
|
|
* 获取微信SchemeURL
|
|
*/
|
|
import http from '../utils/http'
|
|
|
|
export function GetScheme (){
|
|
return new Promise((resolve, reject) => {
|
|
http({
|
|
url:'/api//admin/shop/wxqrcode/gen/common/wxurlscheme',
|
|
method:'post',
|
|
}).then(res=>{
|
|
resolve(res)
|
|
}).catch(e => reject(console.warn(e)))
|
|
})
|
|
}
|