1234567891011121314151617181920 |
- // 统计数据
- // 统计类型 1:首页banner;2:直播模块;3:最新活动;4:热门文章;5:新品橱窗;6:活动列表
- const cmsMixins = {
- computed: {
-
- },
- methods: {
- cmsSysStatistics(cmsSysType) {
- this.UserService.cmsSysStatistics({type:cmsSysType})
- .then(response => {
- console.log('<-------统计数据成功------>')
- })
- .catch(error => {
- console.log('<-------统计数据异常------>')
- })
- },
- }
- }
- export default cmsMixins
|