File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
src/views/crm/backlog/tables Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 119
119
</template >
120
120
121
121
<script lang="ts" setup name="TodayCustomer">
122
- import * as BacklogApi from ' @/api/crm/backlog '
122
+ import * as CustomerApi from ' @/api/crm/customer '
123
123
import { DICT_TYPE } from ' @/utils/dict'
124
124
import { dateFormatter } from ' @/utils/formatTime'
125
125
import { CONTACT_STATUS , SCENE_TYPES } from ' ./common'
@@ -133,15 +133,16 @@ const queryParams = ref({
133
133
pageNo: 1 ,
134
134
pageSize: 10 ,
135
135
contactStatus: 1 ,
136
- sceneType: 1
136
+ sceneType: 1 ,
137
+ pool: null // 是否公海数据
137
138
})
138
139
const queryFormRef = ref () // 搜索的表单
139
140
140
141
/** 查询列表 */
141
142
const getList = async () => {
142
143
loading .value = true
143
144
try {
144
- const data = await BacklogApi . getTodayCustomerPage (queryParams .value )
145
+ const data = await CustomerApi . getCustomerPage (queryParams .value )
145
146
list .value = data .list
146
147
total .value = data .total
147
148
} finally {
You can’t perform that action at this time.
0 commit comments