| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- var app = new Vue({
- el: '#app',
- data: {
- submitStatus: false,
- // 幻灯片列表
- advertList: [],
- // 资讯列表
- noticeList: [],
- // 详情
- info: {},
- },
- created: function () {
- this.getInfo();
- },
- updated: function(){
- // 顶部轮播图
- var mySwiper = new Swiper ('.swiper-container', {
- // 如果需要分页器
- autoplay:true,
- pagination: {
- el: '.swiper-pagination'
- }
- });
- },
- methods: {
- // 获取用户信息
- getInfo: function(){
- var _this = this;
- var id = getParam('id');
- $.showLoading("数据加载中");
- $.post('/weixin/goods/getInfo', {id: id}, function (res) {
- $.hideLoading();
- if (res.code == 'success') {
- _this.info = res.data
- }else if(res.code == 'login'){
- login(res.data.url);
- }else{
- $.toast(res.message, 'text');
- }
- }, "json");
- }
- }
- });
|