Commit a24e6bf7 by maxiaohan

任务号内的查询号条数展示

parent 8c53c6c0
...@@ -246,11 +246,8 @@ ...@@ -246,11 +246,8 @@
? scope.row.qid ? scope.row.qid
: scope.row.qqid : scope.row.qqid
}} }}
<div <div v-show="scope.row.children !== null" class="children-count">
v-show="scope.row.children || scope.row.children !== null" {{ scope.row.children ? scope.row.children.length : 0 }}
class="children-count"
>
11
</div> </div>
</template> </template>
</el-table-column> </el-table-column>
...@@ -519,7 +516,7 @@ export default { ...@@ -519,7 +516,7 @@ export default {
if (response.data.code === 0) { if (response.data.code === 0) {
this.list = response.data.ret.list; this.list = response.data.ret.list;
this.reqParam.page.total = response.data.ret.total; this.reqParam.page.total = response.data.ret.total;
// console.info("查询结果===>", this.list); console.info("查询结果===>", this.list);
this.userInfo = this.getUserInfo(this.list); this.userInfo = this.getUserInfo(this.list);
} else { } else {
this.$message.error(response.data.message); this.$message.error(response.data.message);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment