赞
踩
- // api
-
- /* post请求 */
- /**
- * 收藏
- * param {Number} type 1,视频收藏,2,精品视频,3直播收藏,4课程点播收藏,5电子书收藏,默认1
- * param {Number} id
- */
- setCollect: params => post('User/set_collect?', params)
-
- // 页面调用接口
- // 收藏
- collectThis(id) {
- // post请求传对象
- let params = {
- type: this.type,
- id: id
- }
- this.$api.setCollect(params).then(res => {
- if (Number(res.data.status) === Number(this.$http_status.optSuccess)) {
- console.log(res, '响应成功')
- } else {
- console.log(res, '响应失败')
- // 响应失败报错
- uni.showToast({
- icon: 'none',
- title: res.data.msg
- })
- }
- })
- }
-
-
-
- /* get请求 */
- /**
- * 历史账单
- * param {Number} page
- * param {Number} limit
- */
- getPayOrder: params => get('Order/get_pay_order?', params)
-
- // 页面调用接口
- data() {
- return {
- page: 1,
- limit: 10,
- // 历史账单
- invoice: []
- };
- },
- // 历史账单
- getPayOrder() {
- // get请求传字符串
- this.$api.getPayOrder(`page=${this.page}&limit=${this.limit}`).then(res => {
- console.log(res, '响应打印')
- if (Number(res.data.status) === Number(this.$http_status.success)) {
- console.log(res, '响应成功打印')
- } else {
- console.log(res, '响应失败打印')
- uni.showToast({
- icon: 'none',
- title: res.data.msg
- })
- }
- })
- },
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。