代码生成器优化

This commit is contained in:
dqjdda
2019-11-17 22:39:44 +08:00
parent ece50a3e54
commit a4d74a3a6f
7 changed files with 230 additions and 311 deletions

View File

@@ -1,8 +1,8 @@
import request from '@/utils/request'
export function get() {
export function get(tableName) {
return request({
url: 'api/genConfig',
url: 'api/genConfig/' + tableName,
method: 'get'
})
}