base.js 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /*
  2. * @Author: zhuangzhou zhuangzhou@btioe.com
  3. * @Date: 2022-05-04 18:53:52
  4. * @LastEditors: zhuangzhou zhuangzhou@btioe.com
  5. * @LastEditTime: 2022-05-04 18:53:58
  6. * @FilePath: /mlmt-mini/src/mixin/base.js
  7. * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
  8. */
  9. export default {
  10. onShow() {
  11. this.$refs.pageRef && this.$refs.pageRef.refreshNotify()
  12. },
  13. methods: {
  14. showView(option) {
  15. let url = option.url
  16. if (option.login) {
  17. if (!this.$common.checkLogin()) return
  18. }
  19. if (option.param) {
  20. for (let x in option.param) {
  21. url += url.indexOf('?') < 0 ? '?' : '&'
  22. url += `&${x}=${option.param[x]}`
  23. }
  24. }
  25. if (option.prefun) {
  26. option.prefun()
  27. }
  28. uni.navigateTo({
  29. url: url,
  30. success: () => {
  31. if (option.callback) {
  32. option.callback()
  33. }
  34. }
  35. })
  36. },
  37. unDone() {
  38. this.$message.toast('敬请期待')
  39. },
  40. moveHandle() {}
  41. }
  42. }