dashboard
repositories
filestore
activity
search
login
main
/
zhny_web
智慧农业后台管理页面
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
修复首页选择了农场后,对特定品种进行采收还能选择到其他地块
guoshilong
2022-08-05
08cbb8e6fd626d16a45deeebc252e925f0d0b0da
[zhny_web.git]
/
src
/
api
/
qrcode
/
qrcode.js
1
2
3
4
5
6
7
8
9
10
11
import request from '@/router/axios';
export const getQrCodeBase64 = (code) => {
return request({
url: '/api/qrCode/getQrCodeBase64',
method: 'get',
params: {
code
}
})
}