一对一聊天重构,期待群聊开发

This commit is contained in:
2024-11-21 17:31:08 +08:00
parent 446b669c75
commit d6b81d4559
185 changed files with 5034 additions and 88 deletions

View File

@@ -138,32 +138,10 @@ export default {
},
created() {
this.getList();
this.getFinishedCount()
this.getTodoListCount()
this.getOwnCount()
this.getListNotice()
},
methods: {
/**我待流程统计**/
getOwnCount(){
getOwnCount().then(res => {
this.ownCount = res.data
})
},
/**待办任务统计**/
getTodoListCount(){
getTodoListCount().then(res => {
// console.log(3333,res.data)
this.todoListCount = res.data
})
},
/**已办任务统计**/
getFinishedCount(){
getFinishedCount().then(res => {
this.finishedCount = res.data
})
},
/** 查缓存询信息 */
getList() {

View File

@@ -82,7 +82,6 @@
icon="el-icon-upload2"
size="mini"
@click="handleImport"
v-hasPermi="['complaint:complaint:import']"
>导入</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>