dlt.showNavigationBarLoading
Introduction
Displays the navigation bar loading progress bar.
Parameters
Object object
Property | Type | Default Value | Required | Description |
---|---|---|---|---|
success | function | No | Callback function for a successful API call | |
fail | function | No | Callback function for a failed API call | |
complete | function | No | Callback function that is called when the API call is complete (whether successful or not) |
Example Code
dlt.showNavigationBarLoading({
success() {
console.log('success');
},
});