12345678910111213141516171819202122232425262728293031323334353637383940 |
- const WxParse = require('../../wxParse/wxParse.js')
- const $ = global
-
- new $.Page({
- onLoad(options) {
- const id = options.id;
- const name = options.name || '';
- if (id) {
- $.request(`server_info/${id}`, 'GET', {}, true).then((res) => {
- var article = res.data && res.data.content || '';
- /**
- * WxParse.wxParse(bindName , type, data, target,imagePadding)
- * 1.bindName绑定的数据名(必填)
- * 2.type可以为html或者md(必填)
- * 3.data为传入的具体数据(必填)
- * 4.target为Page对象,一般为this(必填)
- * 5.imagePadding为当图片自适应是左右的单一padding(默认为0,可选)
- */
- WxParse.wxParse('article', 'html', article, this, 5)
- });
- }
- this.setData({
- name
- });
- },
- bookServer() {
- const {
- name
- } = this.data;
- if (name && name.includes('月嫂')) {
- $.router.goto({
- path: '/pages/yuesao/index'
- });
- } else {
- $.router.goto({
- path: '/pages/bookService/index'
- });
- }
- }
- })
|