Commit cb483605 authored by 吴贤德's avatar 吴贤德

后台:酒店片库列表注入状态显示优化

parent d783f55e
...@@ -188,14 +188,14 @@ function InputAction(value, row, index) { ...@@ -188,14 +188,14 @@ function InputAction(value, row, index) {
} }
function StatusInjectAction(value, row, index){ function StatusInjectAction(value, row, index){
var str="--"; var str="--";
if (row.status==1){ if (row.status1==1){
if (value==1){ if (value==1){
str="已注入"; str="<font color=green>已注入</font>";
}else{ }else{
str="注入中:"+value; str="<font color=#ff8c00>注入中</font>:"+value;
} }
}else{ }else{
str="已删除:"+value; str="<font color=red>已删除</font>:"+value;
} }
return str; return str;
} }
......
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