Commit a9758cfa authored by Z's avatar Z

EA's API 0696,0697 use ok. Admin and WxAdmin's Eslint's unused rule closed.

parent c198c7fe
......@@ -10,7 +10,7 @@ module.exports = {
rules: {
// 'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
// 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
// 'no-unused-vars': 'off',
'no-unused-vars': 'off',
// "quotes": [1, "single"],//引号类型 `` "" ''
},
parserOptions: {
......
import request from '@/utils/bRequestEa'
export function getVoucherList(inData) {
let postData = {
args: inData
}
return request({
url: '',
method: 'post',
data: postData
})
}
export function getVoucherWxUrl(inData) {
let postData = {
args: inData
}
return request({
url: '',
method: 'post',
data: postData
})
}
......@@ -11,3 +11,14 @@ export function ApiEaPost(inData) {
})
}
export function ApiEaActiveList(inData) {
let postData = {
args: inData
}
return request({
url: '',
method: 'post',
data: postData
})
}
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment