|
@@ -243,7 +243,7 @@ public class IndexService {
|
|
|
private CustomFile getJsFile(String tablePrefix, String tableSuffix, boolean override) {
|
|
|
CustomFile.Builder builder = new CustomFile.Builder()
|
|
|
.fileName(".ts")
|
|
|
- .filePath("./jy-ui/src/api/")
|
|
|
+ .filePath("./jy-ui/src/api/business/")
|
|
|
.formatNameFunction(item -> tableSuffix)
|
|
|
.templatePath("/templates/vue/index.ts.blt")
|
|
|
.packageName(tablePrefix);
|
|
@@ -256,7 +256,7 @@ public class IndexService {
|
|
|
private CustomFile getIndexVueFile(String tablePrefix, String tableSuffix, boolean override) {
|
|
|
CustomFile.Builder builder = new CustomFile.Builder()
|
|
|
.fileName("index.vue")
|
|
|
- .filePath("./jy-ui/src/views/")
|
|
|
+ .filePath("./jy-ui/src/views/business/")
|
|
|
.formatNameFunction(item -> tableSuffix + "/")
|
|
|
.templatePath("/templates/vue/index.vue.blt")
|
|
|
.packageName(tablePrefix);
|