| 1234567891011121314151617181920212223242526272829303132333435 |
- Page({
- data: {
- loading: false,
- color: '#000',
- background: '#f8f8f8',
- show: true,
- animated: false
- },
- toggleLoading() {
- this.setData({
- loading: !this.data.loading
- })
- },
- changeColor() {
- this.setData({
- color: '#07C160'
- })
- },
- changeBgColor() {
- this.setData({
- background: '#ededed'
- })
- },
- toggleShow() {
- this.setData({
- show: !this.data.show
- })
- },
- toggleAnimated() {
- this.setData({
- animated: !this.data.animated,
- show: !this.data.show
- })
- }
- })
|