mirror of https://gitee.com/xiaonuobase/snowy
【更新】代码生成去除PC前端跟移动端前端的list接口
parent
67bf454e66
commit
f3bdde8c1a
|
@ -13,10 +13,6 @@ export default {
|
|||
${classNameFirstLower}Page(data) {
|
||||
return request('page', data, 'get')
|
||||
},
|
||||
// 获取${functionName}列表
|
||||
${classNameFirstLower}List(data) {
|
||||
return request('list', data, 'get')
|
||||
},
|
||||
// 提交${functionName}表单 edit为true时为编辑,默认为新增
|
||||
${classNameFirstLower}SubmitForm(data, edit = false) {
|
||||
return request(edit ? 'edit' : 'add', data)
|
||||
|
|
|
@ -8,14 +8,6 @@ export function ${classNameFirstLower}Page(data) {
|
|||
data: data
|
||||
})
|
||||
}
|
||||
// 获取${functionName}列表
|
||||
export function ${classNameFirstLower}List(data) {
|
||||
return request({
|
||||
url: '/${moduleName}/${busName}/list',
|
||||
method: 'get',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
// 提交${functionName}表单 add为false时为编辑,默认为新增
|
||||
export function ${classNameFirstLower}SubmitForm(data, add = true) {
|
||||
return request({
|
||||
|
|
Loading…
Reference in New Issue