|
@@ -162,6 +162,9 @@ export default {
|
|
|
});
|
|
|
if (this.main && this.main.length && this.main[0].RoomID) {
|
|
|
this.copyMain = tools.deepCopy(this.main);
|
|
|
+ if (this.onlyRead) {
|
|
|
+ this.getBatch(this.main)
|
|
|
+ }
|
|
|
}
|
|
|
this.isLoading = false
|
|
|
this.getMain()
|
|
@@ -481,6 +484,9 @@ export default {
|
|
|
});
|
|
|
if (param.data.criterias.length) {
|
|
|
BeatchQueryParam(param, res => {
|
|
|
+ if (!this.onlyRead) {
|
|
|
+ return false
|
|
|
+ }
|
|
|
this.main = data.map(item => {
|
|
|
res.Content.map(child => {
|
|
|
if (item.RoomID == child.id) {
|