Toggle navigation
Toggle navigation
This project
Loading...
Sign in
developOne
/
harmonyPool
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
陈剑华
2024-05-11 15:16:04 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
c816cbbdc047aa328c423e06f9102558de4571f8
c816cbbd
1 parent
b57cf935
fix: 预约debug
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
sight_harmony/features/wdComponent/src/main/ets/viewmodel/LiveModel.ets
sight_harmony/features/wdComponent/src/main/ets/viewmodel/LiveModel.ets
View file @
c816cbb
...
...
@@ -71,9 +71,10 @@ export class LiveModel {
return
}
success(data)
Logger.info('getAppointmentStatus', JSON.stringify(data))
}, (error: Error) => {
fail(error.message)
Logger.debug(TAG + ":error ",
error.toString(
))
Logger.debug(TAG + ":error ",
JSON.stringify(error
))
})
})
}
...
...
@@ -103,9 +104,10 @@ export class LiveModel {
return
}
success(data.data)
Logger.info('getAppointmentStatus', JSON.stringify(data.data))
}, (error: Error) => {
fail(error.message)
Logger.debug(TAG + ":error ",
error.toString(
))
Logger.debug(TAG + ":error ",
JSON.stringify(error
))
})
})
}
...
...
Please
register
or
login
to post a comment