[Doc] support share demo (#409)

This commit is contained in:
neverland 2018-08-12 17:35:13 +08:00 committed by GitHub
parent d8284b3e71
commit 91eef9a596
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
24 changed files with 68 additions and 53 deletions

View File

@ -1,4 +1,3 @@
App({ App({
globalData: {} globalData: {}
}); });

10
example/common/page.js Normal file
View File

@ -0,0 +1,10 @@
export default function(options = {}) {
return Page({
onShareAppMessage() {
return {
title: 'Vant Weapp 组件库演示'
};
},
...options
});
}

View File

@ -1,3 +1,6 @@
import Page from '../../common/page';
Page({ Page({
data: { data: {
show1: false, show1: false,

View File

@ -1,3 +1,5 @@
import Page from '../../common/page';
Page({ Page({
onChange(event) { onChange(event) {
wx.showToast({ wx.showToast({

View File

@ -1 +1,3 @@
Page({}); import Page from '../../common/page';
Page();

View File

@ -1,3 +1,5 @@
import Page from '../../common/page';
Page({ Page({
data: { data: {
imageURL: '//img.yzcdn.cn/upload_files/2017/07/02/af5b9f44deaeb68000d7e4a711160c53.jpg' imageURL: '//img.yzcdn.cn/upload_files/2017/07/02/af5b9f44deaeb68000d7e4a711160c53.jpg'

View File

@ -1,31 +1,3 @@
var Zan = require('../../dist/index'); import Page from '../../common/page';
Page(Object.assign({}, Zan.Switch, { Page();
data: {
checked: false,
show: true,
date: ''
},
onLoad() {
},
onShow() {
},
handleZanSwitchChange(e) {
this.setData({
checked: e.checked
});
},
bindDateChange(e) {
this.setData({
date: e.detail.value
});
},
handleTap() {
console.log('cell tapped');
}
}));

View File

@ -1,7 +1,14 @@
import componentsConfig from './config'; import config from './config';
import Page from '../../common/page';
Page({ Page({
data: { data: {
list: componentsConfig list: config
},
onShareAppMessage() {
return {
title: 'Vant Weapp 组件库演示'
};
} }
}); });

View File

@ -1,3 +1,5 @@
import Page from '../../common/page';
Page({ Page({
data: { data: {
sms: '', sms: '',

View File

@ -1,3 +1,5 @@
import Page from '../../common/page';
Page({ Page({
data: { data: {
icons: [ icons: [

View File

@ -1 +1,3 @@
Page({}); import Page from '../../common/page';
Page();

View File

@ -1 +1,3 @@
Page({}); import Page from '../../common/page';
Page();

View File

@ -1,3 +1,5 @@
import Page from '../../common/page';
Page({ Page({
onTapLeft() { onTapLeft() {
wx.showToast({ title: '点击返回', icon: 'none' }); wx.showToast({ title: '点击返回', icon: 'none' });

View File

@ -1,3 +1,5 @@
import Page from '../../common/page';
Page({ Page({
data: { data: {
text: '足协杯战线连续第2年上演广州德比战上赛季半决赛上恒大以两回合5-3的总比分淘汰富力。' text: '足协杯战线连续第2年上演广州德比战上赛季半决赛上恒大以两回合5-3的总比分淘汰富力。'

View File

@ -1,4 +1,5 @@
const Notify = require('../../dist/notify/index'); import Page from '../../common/page';
import Notify from '../../dist/notify/index';
Page({ Page({
showNotify() { showNotify() {

View File

@ -1,11 +1,3 @@
Page({ import Page from '../../common/page';
data: {
},
onLoad: function () { Page();
},
onShow: function() {
},
})

View File

@ -1,3 +1,5 @@
import Page from '../../common/page';
Page({ Page({
data: { data: {
show: { show: {

View File

@ -1,3 +1,5 @@
import Page from '../../common/page';
Page({ Page({
data: { data: {
value: '' value: ''

View File

@ -1 +1,3 @@
Page({}); import Page from '../../common/page';
Page();

View File

@ -1,3 +1,5 @@
import Page from '../../common/page';
Page({ Page({
data: { data: {
active: 0, active: 0,

View File

@ -1,3 +1,5 @@
import Page from '../../common/page';
Page({ Page({
data: { data: {
checked: true, checked: true,

View File

@ -1 +1,3 @@
Page({}); import Page from '../../common/page';
Page();

View File

@ -1,4 +1,4 @@
module.exports = { export default {
pro1Name: '浙江', pro1Name: '浙江',
pro1: [{ pro1: [{
text: '杭州', text: '杭州',

View File

@ -1,4 +1,5 @@
const config = require('./config'); import Page from '../../common/page';
import config from './config';
Page({ Page({
data: { data: {
@ -22,13 +23,13 @@ Page({
activeId: 1002 activeId: 1002
}, },
onNavClick({ detail = {} }) { onNavClick({ detail }) {
this.setData({ this.setData({
mainActiveIndex: detail.index || 0 mainActiveIndex: detail.index || 0
}); });
}, },
onItemClick({ detail = {} }) { onItemClick({ detail }) {
this.setData({ this.setData({
activeId: detail.id activeId: detail.id
}); });