1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
| export default { data() { return { gridData: [ { time: '工作日', restriction: '无', amount: '5万及以下', cost: '2.5元/笔', account: '2小时内' }, { time: '工作日', restriction: '无', amount: '5万以上<br>(仅支持9:00-17:00)', cost: '2.5元/笔', account: '2小时内' }, { time: '非工作日', restriction: '无', amount: '仅支持5万及以下', cost: '2.5元/笔', account: '2小时内' }, { time: '<p class="special_text">温馨提示:无投资用户按提现金额的0.5%收取(单笔费用不足3元,按3元/笔收取)</p>' } ] } }, methods: { arraySpanMethod({ row, column, rowIndex, columnIndex }) { if (rowIndex == 0 && (columnIndex == 0 || columnIndex == 1 || columnIndex == 3 || columnIndex == 4)) { return [2, 1]; } else if(rowIndex == 3 && columnIndex == 0) { return [1, 5]; } else if(rowIndex == 1 && columnIndex != 2) { return [0, 0]; } } } }
|