Compare commits

..

No commits in common. '0ad4adf1a7f7d4d3d51ed37097085795cff84f8e' and '2cd4cca609b94fd0d3307b0e5de5671c9250b4de' have entirely different histories.

@ -43,7 +43,8 @@
:columns="columns1" :columns="columns1"
:data="data1" :data="data1"
class="table-store" class="table-store"
size="small"> size="small"
@on-row-dblclick="onDblClickRowLister">
<template slot="action" <template slot="action"
slot-scope="{row}"> slot-scope="{row}">
<i-col span="12"> <i-col span="12">
@ -243,10 +244,6 @@ export default {
width: 250, width: 250,
render: (h, params) => { render: (h, params) => {
let that = this; let that = this;
let color = "#3496EB"
if (parseInt(params.row.level) >= 3) {
color = "#999"
}
return h('div', [ return h('div', [
h('span', { h('span', {
style: { style: {
@ -258,9 +255,7 @@ export default {
}, },
on: { on: {
click: () => { click: () => {
if (parseInt(params.row.level) < 3) { that.show(params.row)
that.show(params.row)
}
} }
} }
}, '升级'), }, '升级'),

Loading…
Cancel
Save