1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- const $ = global;
- const WxParse = require('../../wxParse/wxParse.js');
- new $.Page({
- data: {
- imgUrls: [
- '/img/demo/banner.jpg',
- '/img/demo/banner.jpg',
- '/img/demo/banner.jpg'
- ]
- },
- onLoad() {
- $.request('server_infos', 'GET', {}).then((res) => {
- const {
- bottom,
- top,
- introduce
- } = res;
- WxParse.wxParse('article', 'html', introduce, this);
- for (let item of top) {
- item.topPhoto = item.photo.split(';')[0];
- }
- this.setData({
- bottom,
- top,
- introduce
- });
- });
-
- },
- handleJump(e) {
- const {
- route,
- type,
- target
- } = e.currentTarget.dataset;
- if (route) {
- $.router.goto({
- path: `/pages/${route}/index`,
- type: type && parseInt(type),
- params: {
- type: target || ''
- }
- });
- }
- },
- toDetail(e) {
- const {
- id,
- name,
- type
- } = e.currentTarget.dataset;
- if (type && type == 'bottom') {
- return $.router.goto({
- path: `/pages/detail/index`,
- params: {
- content: this.data.bottom.content || ''
- }
- });
- }
- if (id) {
- $.router.goto({
- path: `/pages/introduce/index`,
- query: {
- id,
- name
- }
- });
- }
- },
- toConsult() {
- // $.wx.showToast({
- // title: '持续开发中'
- // });
- },
- // 页面分享
- onShareAppMessage() {
- return {
- title: '玥子轩母婴家政',
- desc: '首页',
- path: '/pages/home/index'
- }
- }
- });
|