mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
[Doc] support share demo (#409)
This commit is contained in:
parent
d8284b3e71
commit
91eef9a596
@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
App({
|
App({
|
||||||
globalData: {}
|
globalData: {}
|
||||||
});
|
});
|
||||||
|
10
example/common/page.js
Normal file
10
example/common/page.js
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
export default function(options = {}) {
|
||||||
|
return Page({
|
||||||
|
onShareAppMessage() {
|
||||||
|
return {
|
||||||
|
title: 'Vant Weapp 组件库演示'
|
||||||
|
};
|
||||||
|
},
|
||||||
|
...options
|
||||||
|
});
|
||||||
|
}
|
@ -1,3 +1,6 @@
|
|||||||
|
|
||||||
|
import Page from '../../common/page';
|
||||||
|
|
||||||
Page({
|
Page({
|
||||||
data: {
|
data: {
|
||||||
show1: false,
|
show1: false,
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
import Page from '../../common/page';
|
||||||
|
|
||||||
Page({
|
Page({
|
||||||
onChange(event) {
|
onChange(event) {
|
||||||
wx.showToast({
|
wx.showToast({
|
||||||
|
@ -1 +1,3 @@
|
|||||||
Page({});
|
import Page from '../../common/page';
|
||||||
|
|
||||||
|
Page();
|
||||||
|
@ -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'
|
||||||
|
@ -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');
|
|
||||||
}
|
|
||||||
}));
|
|
||||||
|
@ -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 组件库演示'
|
||||||
|
};
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
import Page from '../../common/page';
|
||||||
|
|
||||||
Page({
|
Page({
|
||||||
data: {
|
data: {
|
||||||
sms: '',
|
sms: '',
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
import Page from '../../common/page';
|
||||||
|
|
||||||
Page({
|
Page({
|
||||||
data: {
|
data: {
|
||||||
icons: [
|
icons: [
|
||||||
|
@ -1 +1,3 @@
|
|||||||
Page({});
|
import Page from '../../common/page';
|
||||||
|
|
||||||
|
Page();
|
||||||
|
@ -1 +1,3 @@
|
|||||||
Page({});
|
import Page from '../../common/page';
|
||||||
|
|
||||||
|
Page();
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
import Page from '../../common/page';
|
||||||
|
|
||||||
Page({
|
Page({
|
||||||
onTapLeft() {
|
onTapLeft() {
|
||||||
wx.showToast({ title: '点击返回', icon: 'none' });
|
wx.showToast({ title: '点击返回', icon: 'none' });
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
import Page from '../../common/page';
|
||||||
|
|
||||||
Page({
|
Page({
|
||||||
data: {
|
data: {
|
||||||
text: '足协杯战线连续第2年上演广州德比战,上赛季半决赛上恒大以两回合5-3的总比分淘汰富力。'
|
text: '足协杯战线连续第2年上演广州德比战,上赛季半决赛上恒大以两回合5-3的总比分淘汰富力。'
|
||||||
|
@ -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() {
|
||||||
|
@ -1,11 +1,3 @@
|
|||||||
Page({
|
import Page from '../../common/page';
|
||||||
data: {
|
|
||||||
},
|
|
||||||
|
|
||||||
onLoad: function () {
|
Page();
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
onShow: function() {
|
|
||||||
},
|
|
||||||
})
|
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
import Page from '../../common/page';
|
||||||
|
|
||||||
Page({
|
Page({
|
||||||
data: {
|
data: {
|
||||||
show: {
|
show: {
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
import Page from '../../common/page';
|
||||||
|
|
||||||
Page({
|
Page({
|
||||||
data: {
|
data: {
|
||||||
value: ''
|
value: ''
|
||||||
|
@ -1 +1,3 @@
|
|||||||
Page({});
|
import Page from '../../common/page';
|
||||||
|
|
||||||
|
Page();
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
import Page from '../../common/page';
|
||||||
|
|
||||||
Page({
|
Page({
|
||||||
data: {
|
data: {
|
||||||
active: 0,
|
active: 0,
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
import Page from '../../common/page';
|
||||||
|
|
||||||
Page({
|
Page({
|
||||||
data: {
|
data: {
|
||||||
checked: true,
|
checked: true,
|
||||||
|
@ -1 +1,3 @@
|
|||||||
Page({});
|
import Page from '../../common/page';
|
||||||
|
|
||||||
|
Page();
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
module.exports = {
|
export default {
|
||||||
pro1Name: '浙江',
|
pro1Name: '浙江',
|
||||||
pro1: [{
|
pro1: [{
|
||||||
text: '杭州',
|
text: '杭州',
|
||||||
|
@ -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
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user