fix change password dialog, add api readme

This commit is contained in:
mubai
2024-01-25 21:13:15 +08:00
parent 31955638a5
commit f1c757863f
25 changed files with 1071 additions and 139 deletions

View File

@@ -88,9 +88,15 @@ const searchMovie = ()=>{
// 执行搜索请求
const refreshPage = (keyword: any, current: any) => {
ApiGet('/searchFilm', {keyword: keyword, current: current}).then((resp: any) => {
console.log(resp)
if (resp.code == 0) {
data.list = resp.data.list
data.page = resp.data.page
data.oldSearch = keyword
} else {
ElMessage.warning({message: resp.msg, duration: 1000})
}
})
}