history.js 261 B

12345678910111213141516
  1. import { history } from '@/api/public.js'
  2. export default {
  3. data() {
  4. return {
  5. };
  6. },
  7. methods: {
  8. getHistory() {
  9. console.log(this.$util.getNowUrl(),'page')
  10. history({
  11. page:this.$util.getNowUrl()
  12. }).then(res=>{})
  13. },
  14. }
  15. };