This commit is contained in:
Mrtangl 2022-04-19 11:30:58 +08:00
parent 9ddaf4f5bd
commit 1a885ebd78
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
# 文件原路径 # 文件原路径
srcPath="./dist/" srcPath="./dist/"
# 发布路径文件夹 # 发布路径文件夹
releasePath="../server/public/admin" releasePath="../frontend/public/admin"
#删除发布目录下的mobile文件 #删除发布目录下的mobile文件
rm -r $releasePath rm -r $releasePath

View File

@ -284,7 +284,7 @@ const formData = ref({
// //
const getMenuDetail = async (id: number) => { const getMenuDetail = async (id: number) => {
;(formData.value as {}) = await apiMenuDetail({ id }) (formData.value as {}) = await apiMenuDetail({ id })
getFatherMenu() getFatherMenu()
} }