Commit a24e6bf7 by maxiaohan

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

parent 8c53c6c0
......@@ -246,11 +246,8 @@
? scope.row.qid
: scope.row.qqid
}}
<div
v-show="scope.row.children || scope.row.children !== null"
class="children-count"
>
11
<div v-show="scope.row.children !== null" class="children-count">
{{ scope.row.children ? scope.row.children.length : 0 }}
</div>
</template>
</el-table-column>
......@@ -519,7 +516,7 @@ export default {
if (response.data.code === 0) {
this.list = response.data.ret.list;
this.reqParam.page.total = response.data.ret.total;
// console.info("查询结果===>", this.list);
console.info("查询结果===>", this.list);
this.userInfo = this.getUserInfo(this.list);
} else {
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