whychdw
2021-04-19 650910fab2fbae19bc3038973df3c3b9e806f9ea
1
2
3
4
5
6
7
8
9
10
11
import axios from "axios";
 
export default {
    searchAllShow() {
        return axios({
            method: 'get',
            url: '/video/allShow',
            data: null
        });
    }
}