第一次提交

This commit is contained in:
caolc
2023-02-15 09:25:11 +08:00
commit ea8e9f9eb7
202 changed files with 38601 additions and 0 deletions

12
api/qr.js Normal file
View File

@@ -0,0 +1,12 @@
import request from '@/utils/request'
const service_name = "oil-site"
const group_name = "qrCode"
export default {
getOilQrCode (data) {
return request({
url: `/${service_name}/${group_name}/getOilQrCode`,
method: 'post',
data:data
})
}
}