| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- function i18(textr){
- return textr;
- }
- const showModal = (title, content, cb) => {
- title = i18(title);
- content = i18(content);
- uni.showModal({
- title,
- content,
- showCancel: false,
- complete: () => {
- if (cb) cb();
- }
- });
- };
- const showLoading = (title) => {
- title = i18(title);
- uni.showLoading({
- title,
- mask:true,
- });
- };
- const hideLoading = () => {
- uni.hideLoading();
- };
- // #ifdef APP
- export default {
- showModal,
- showLoading,
- hideLoading
- };
- // #endif
- // #ifdef MP
- module.exports = {
- showModal,
- showLoading,
- hideLoading
- };
- // #endif
|