| 123456789101112131415161718192021222324252627282930313233343536373839 |
- Page({
- data: {
- typeF: false,
- typeS: false,
- typeT: false,
- buttons: [
- {
- type: 'default',
- className: '',
- text: '辅助操作',
- value: 0
- },
- {
- type: 'primary',
- className: '',
- text: '主操作',
- value: 1
- }
- ]
- },
- openTypeF: function () {
- this.setData({
- typeF: true
- })
- },
- openTypeS: function () {
- this.setData({
- typeS: true
- })
- },
- openTypeT: function() {
- this.setData({
- typeT: true
- })
- },
- buttontap(e) {
- console.log(e.detail)
- }
- });
|