Commit ba2af229 authored by 赵啸非's avatar 赵啸非

Merge remote-tracking branch 'origin/master'

parents 9f9ab895 a1dd531d
...@@ -367,7 +367,7 @@ export default { ...@@ -367,7 +367,7 @@ export default {
width: 100, width: 100,
formatter: (row) => { formatter: (row) => {
if (row.check) { if (row.check) {
return <span style="cursor:pointer;color:#ff0000">不选择</span>; return <span style="cursor:pointer;color:#ff0000">已选中</span>;
} else { } else {
return <span style="cursor:pointer;color:#1890ff">选择</span>; return <span style="cursor:pointer;color:#1890ff">选择</span>;
} }
......
...@@ -407,7 +407,7 @@ export default { ...@@ -407,7 +407,7 @@ export default {
width: 100, width: 100,
formatter: (row) => { formatter: (row) => {
if (row.check) { if (row.check) {
return <span style="cursor:pointer;color:#ff0000">不选择</span>; return <span style="cursor:pointer;color:#ff0000">已选中</span>;
} else { } else {
return <span style="cursor:pointer;color:#1890ff">选择</span>; return <span style="cursor:pointer;color:#1890ff">选择</span>;
} }
......
...@@ -193,7 +193,7 @@ export default { ...@@ -193,7 +193,7 @@ export default {
width: 100, width: 100,
formatter: (row) => { formatter: (row) => {
if (row.check) { if (row.check) {
return <span style="cursor:pointer;color:#ff0000">不选择</span>; return <span style="cursor:pointer;color:#ff0000">已选中</span>;
} else { } else {
return <span style="cursor:pointer;color:#1890ff">选择</span>; return <span style="cursor:pointer;color:#1890ff">选择</span>;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment