|
@@ -229,7 +229,7 @@ export default {
|
|
|
*/
|
|
|
handleRowContent(row, key) {
|
|
|
if (key == "PublishStatus") {
|
|
|
- let status = row["PublishStatus"] == 1 ? "已发布" : "未发布";
|
|
|
+ let status = row["PublishStatus"] == 1 ? "已发布" : row["PublishStatus"] == 3 ? "已取消" : "未发布";
|
|
|
return status;
|
|
|
} else if (key == "VideoDuration" || key == "VoicePlaySeconds") {
|
|
|
let m = parseInt(row[key] / 60);
|