|
@@ -143,9 +143,9 @@
|
|
|
$(item).text('(' + '-' + cnMoneyFormat(txt) + ')')
|
|
|
} else if (txt > 0 && txt > 10000) {
|
|
|
$(item).text('(' + cnMoneyFormat(txt) + ')')
|
|
|
- } else if (txt >= 0 && txt < 10000) {
|
|
|
+ } else if (txt > 0 && txt < 10000) {
|
|
|
$(this).css('color','green')
|
|
|
- $(item).text(txt)
|
|
|
+ $(item).text(txt + ',不足一万')
|
|
|
} else {
|
|
|
$(item).text(cnMoneyFormat(txt))
|
|
|
}
|