家政小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.js 381B

1234567891011121314
  1. const WxParse = require('../../wxParse/wxParse.js')
  2. const $ = global
  3. new $.Page({
  4. onLoad(options) {
  5. const id = options.id;
  6. if (id) {
  7. $.request(`server_info/${id}`, 'GET', {}).then((res) => {
  8. var article = res.data.content || '';
  9. WxParse.wxParse('article', 'html', article, this, 5)
  10. });
  11. }
  12. }
  13. })