問題描述:
PC端直播的回放目錄序列號不正確。

解決方法:
application/web/view/special/detail.html,找到這個(gè)文件。
1、搜索“回放目錄”,修改這段代碼。

2、添加計(jì)算屬性。
computed: {
serialNumber: function () {
return function (index) {
var number = (this.coursePage - 1) * this.limit + index + 1;
return number > 9 ? number : ('0' + number);
}
}
},
修改完成后,清除緩存。

