1234567891011121314151617181920212223242526272829303132333435363738 |
- const app = getApp();
- Page({
- data: {
- StatusBar: app.globalData.StatusBar,
- CustomBar: app.globalData.CustomBar,
- ColorList: app.globalData.ColorList,
- color:'red',
- },
- onLoad() {
- let that = this;
- setTimeout(function() {
- that.setData({
- loading: true
- })
- }, 500)
- },
- showModal(e) {
- this.setData({
- modalName: e.currentTarget.dataset.target
- })
- },
- hideModal(e) {
- this.setData({
- modalName: null
- })
- },
- SetColor(e) {
- this.setData({
- color: e.currentTarget.dataset.color,
- modalName: null
- })
- },
- SetActive(e) {
- this.setData({
- active: e.detail.value
- })
- },
- });
|