拆分代码

This commit is contained in:
mabo
2021-07-08 09:24:42 +08:00
parent 9ff4197ec4
commit 0504592f7d
5 changed files with 13 additions and 41 deletions

View File

@@ -121,7 +121,7 @@ export default {
render: (h, params) => {
return h(
"div",
params.row.receivedNum + "/" + params.row.publishNum
params.row.receivedNum + "/" + (params.row.publishNum === 0 ? '不限制' : params.row.publishNum)
);
},