feat: 使用prettierrc对代码进行格式化

This commit is contained in:
piexlMax(奇淼
2024-11-09 10:32:26 +08:00
parent 87a4ce17e1
commit 7d9af64f6d
139 changed files with 12685 additions and 12664 deletions

View File

@@ -139,28 +139,26 @@ export const pubPlug = (params) => {
})
}
export const llmAuto = (data) => {
return service({
url: '/autoCode/llmAuto',
method: 'post',
data:{...data,mode:'ai'},
data: { ...data, mode: 'ai' },
timeout: 1000 * 60 * 10,
loadingOption:{
loadingOption: {
lock: true,
fullscreen:true,
text: `小淼正在思考,请稍候...`,
fullscreen: true,
text: `小淼正在思考,请稍候...`
}
})
}
export const butler = (data) => {
return service({
url: '/autoCode/llmAuto',
method: 'post',
data:{...data,mode:'butler'},
timeout: 1000 * 60 * 10,
data: { ...data, mode: 'butler' },
timeout: 1000 * 60 * 10
})
}