Commit ddd65033 authored by 姬鋆屾's avatar 姬鋆屾

parent bcd3e645
...@@ -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