feature_0521
zhenghuang 5 years ago
parent 2cd4cca609
commit 7e2d085286

@ -244,6 +244,10 @@ export default {
width: 250,
render: (h, params) => {
let that = this;
let color = "#3496EB"
if (parseInt(params.row.level) >= 3) {
color = "#999"
}
return h('div', [
h('span', {
style: {
@ -255,7 +259,9 @@ export default {
},
on: {
click: () => {
that.show(params.row)
if (parseInt(params.row.level) < 3) {
that.show(params.row)
}
}
}
}, '升级'),

Loading…
Cancel
Save