history.js 892 B

12345678910111213141516171819202122232425
  1. // +----------------------------------------------------------------------
  2. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  3. // +----------------------------------------------------------------------
  4. // | Copyright (c) 2016~2024 https://www.crmeb.com All rights reserved.
  5. // +----------------------------------------------------------------------
  6. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  7. // +----------------------------------------------------------------------
  8. // | Author: CRMEB Team <admin@crmeb.com>
  9. // +----------------------------------------------------------------------
  10. import { history } from '@/api/public.js'
  11. export default {
  12. data() {
  13. return {
  14. };
  15. },
  16. methods: {
  17. getHistory() {
  18. console.log(this.$util.getNowUrl(),'page')
  19. history({
  20. page:this.$util.getNowUrl()
  21. }).then(res=>{})
  22. },
  23. }
  24. };