12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- Page({
- data: {
- elements: [
- { title: '布局', name: 'layout', color: 'cyan', icon: 'newsfill' },
- { title: '背景', name: 'background', color: 'blue', icon: 'colorlens' },
- { title: '文本', name: 'text', color: 'purple', icon: 'font' },
- { title: '图标 ', name: 'icon', color: 'mauve', icon: 'icon' },
- { title: '按钮', name: 'button', color: 'pink', icon: 'btn' },
- { title: '标签', name: 'tag', color: 'brown', icon: 'tagfill' },
- { title: '头像', name: 'avatar', color: 'red', icon: 'myfill' },
- { title: '进度条', name: 'progress', color: 'orange', icon: 'icloading' },
- { title: '边框阴影', name: 'shadow', color: 'olive', icon: 'copy' },
- { title: '加载', name: 'loading', color: 'green', icon: 'loading2' },
- ],
- },
- onLoad() {
- let that = this;
- // 获取用户信息
- wx.getSetting({
- success: res => {
- if (!res.authSetting['scope.userInfo']) {
- wx.redirectTo({
- url: '/pages/auth/auth'
- })
- }
- }
- })
- },
- showModal(e) {
- this.setData({
- modalName: e.currentTarget.dataset.target
- })
- },
- hideModal(e) {
- this.setData({
- modalName: null
- })
- },
- onShareAppMessage(){
- return {
- title: 'ColorUI-高颜值的小程序UI组件库',
- imageUrl:'https://image.weilanwl.com/color2.0/share2215.jpg',
- path: '/pages/basics/home/home'
- }
- }
- })
|