12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- /*
- * @Author: error: git config user.name && git config user.email & please set dead value or install git
- * @Date: 2020-09-21 21:13:18
- * @LastEditors: error: git config user.name && git config user.email & please set dead value or install git
- * @LastEditTime: 2022-07-18 14:16:13
- * @FilePath: \renard-wx\pages\topicDetail\topicDetail.js
- * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
- */
- var app = getApp();
- var WxParse = require('../../lib/wxParse/wxParse.js');
- var util = require('../../utils/util.js');
- var api = require('../../config/api.js');
- Page({
- data: {
- id: 0,
- topic: {},
- topicList: []
- },
- onShareAppMessage: function() {
- return {
- title: '特惠商品',
- desc: '特惠商品',
- path: '/pages/topicDetail/topicDetail?id=' + this.data.id
- }
- },
- onLoad: function(options) {
- // 页面初始化 options为页面跳转所带来的参数
- var that = this;
- that.setData({
- id: options.id
- });
- util.request(api.TopicDetail, {
- id: that.data.id
- }).then(function(res) {
- if (res.errno === 0) {
- that.setData({
- topic: res.data.topic
- });
- WxParse.wxParse('topicDetail', 'html', res.data.topic.content, that);
- }
- });
- util.request(api.TopicRelated, {
- id: that.data.id
- }).then(function(res) {
- if (res.errno === 0) {
- that.setData({
- topicList: res.data.list
- });
- }
- });
- },
- onReady: function() {
- },
- onShow: function() {
- // 页面显示
- },
- onHide: function() {
- // 页面隐藏
- },
- onUnload: function() {
- // 页面关闭
- }
- })
|