| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- Component({
- externalClasses: ['i-class', 'i-class-mask'],
- properties: {
- visible: {
- type: Boolean,
- value: false
- },
- title: {
- type: String,
- value: ''
- },
- showOk: {
- type: Boolean,
- value: true
- },
- showCancel: {
- type: Boolean,
- value: true
- },
- okText: {
- type: String,
- value: '确定'
- },
- cancelText: {
- type: String,
- value: '取消'
- },
- okColor: {
- type: String,
- value: ''
- },
- cancelColor: {
- type: String,
- value: ''
- },
- // 按钮组,有此值时,不显示 ok 和 cancel 按钮
- actions: {
- type: Array,
- value: []
- },
- // horizontal || vertical
- actionMode: {
- type: String,
- value: 'horizontal'
- }
- },
- methods: {
- handleClickItem({
- currentTarget = {}
- }) {
- const dataset = currentTarget.dataset || {};
- const {
- index
- } = dataset;
- this.triggerEvent('click', {
- index
- });
- },
- handleClickOk() {
- this.triggerEvent('ok');
- },
- handleClickCancel() {
- this.triggerEvent('cancel');
- }
- }
- });
|