|
@@ -6,10 +6,11 @@
|
|
|
<div class="customerSearch">
|
|
|
<div>
|
|
|
<el-select
|
|
|
- v-model="searchData.customerType"
|
|
|
+ v-model="customerType"
|
|
|
placeholder="类型"
|
|
|
style="width: 120px"
|
|
|
clearable
|
|
|
+ @change="changeCustomerType"
|
|
|
>
|
|
|
<el-option
|
|
|
v-for="item in userTypeList"
|
|
@@ -23,11 +24,16 @@
|
|
|
<el-input
|
|
|
v-model="userJson.name"
|
|
|
style="max-width: 600px"
|
|
|
- placeholder="联系人"
|
|
|
+ placeholder="请输入客户名称"
|
|
|
class="input-with-select"
|
|
|
+ clearable
|
|
|
+ @clear="clearCustomerName"
|
|
|
>
|
|
|
<template #append>
|
|
|
- <el-button icon="Search" />
|
|
|
+ <el-button
|
|
|
+ icon="Search"
|
|
|
+ @click="queryCustomerList"
|
|
|
+ />
|
|
|
</template>
|
|
|
</el-input>
|
|
|
</div>
|
|
@@ -141,13 +147,13 @@
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
<el-pagination
|
|
|
- :current-page="pageSet.page"
|
|
|
- :page-size="pageSet.pageSize"
|
|
|
+ :current-page="userJson.pageInfo.page"
|
|
|
+ :page-size="userJson.pageInfo.pageSize"
|
|
|
:page-sizes="[10, 30, 50, 100]"
|
|
|
- :total="pageSet.total"
|
|
|
+ :total="customerTotal"
|
|
|
layout="total, sizes, prev, pager, next, jumper"
|
|
|
- @current-change="handleCurrentChange"
|
|
|
- @size-change="handleSizeChange"
|
|
|
+ @current-change="changeCurrentPage"
|
|
|
+ @size-change="changeCurrentPageSize"
|
|
|
/>
|
|
|
</el-card>
|
|
|
</el-col>
|
|
@@ -377,21 +383,12 @@ defineOptions({
|
|
|
name: 'Customer'
|
|
|
})
|
|
|
const customerData = useCustomer()
|
|
|
-const searchData = reactive({
|
|
|
- contacts: '',
|
|
|
- customerType: ''
|
|
|
-})
|
|
|
-
|
|
|
-const pageSet = reactive({
|
|
|
- page: 1,
|
|
|
- pageSize: 10,
|
|
|
- total: 100
|
|
|
-})
|
|
|
-
|
|
|
-const handleCurrentChange = () => {}
|
|
|
|
|
|
-const handleSizeChange = () => {}
|
|
|
+const customerType = ref('')
|
|
|
|
|
|
+const changeCustomerType = (val) => {
|
|
|
+ console.log(val)
|
|
|
+}
|
|
|
// 客户类型
|
|
|
const userTypeList = reactive([])
|
|
|
|
|
@@ -466,10 +463,19 @@ const userJson = reactive({
|
|
|
},
|
|
|
name: ''
|
|
|
})
|
|
|
+
|
|
|
+const customerTotal = ref(0)
|
|
|
+
|
|
|
const customerList = reactive([])
|
|
|
+
|
|
|
+const clearCustomerName = () => {
|
|
|
+ userJson.name = ''
|
|
|
+ queryCustomerList()
|
|
|
+}
|
|
|
const queryCustomerList = () => {
|
|
|
getCustomerList(userJson).then(res => {
|
|
|
if (res.code === 0) {
|
|
|
+ customerTotal.value = res.data.total
|
|
|
const list = res.data.list
|
|
|
customerList.length = 0
|
|
|
customerList.push(...list)
|
|
@@ -477,6 +483,15 @@ const queryCustomerList = () => {
|
|
|
})
|
|
|
}
|
|
|
|
|
|
+const changeCurrentPage = (val) => {
|
|
|
+ userJson.pageInfo.page = val
|
|
|
+ queryCustomerList()
|
|
|
+}
|
|
|
+
|
|
|
+const changeCurrentPageSize = (val) => {
|
|
|
+ userJson.pageInfo.pageSize = val
|
|
|
+ queryCustomerList()
|
|
|
+}
|
|
|
// 新增客户
|
|
|
const addCustomerShow = ref(false)
|
|
|
const addCustomerJson = reactive({
|
|
@@ -590,7 +605,9 @@ const demandShow = ref(false)
|
|
|
const demandTitle = ref('')
|
|
|
|
|
|
const openDemandEdit = (row) => {
|
|
|
- console.log(row)
|
|
|
+ demandTitle.value = '客户需求信息:' + row.name
|
|
|
+ customerData.getDemandList(row.ID)
|
|
|
+ customerData.changeCustomerId(row.ID)
|
|
|
demandShow.value = true
|
|
|
}
|
|
|
|