Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
phsl
/
admin
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
3471b5c5
authored
Jan 21, 2024
by
min
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CRM:线索表单去掉客户字段
parent
948ef085
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
23 deletions
+1
-23
src/views/crm/clue/ClueForm.vue
+1
-23
No files found.
src/views/crm/clue/ClueForm.vue
View file @
3471b5c5
...
@@ -10,17 +10,6 @@
...
@@ -10,17 +10,6 @@
<el-form-item
label=
"线索名称"
prop=
"name"
>
<el-form-item
label=
"线索名称"
prop=
"name"
>
<el-input
v-model=
"formData.name"
placeholder=
"请输入线索名称"
/>
<el-input
v-model=
"formData.name"
placeholder=
"请输入线索名称"
/>
</el-form-item>
</el-form-item>
<!-- TODO 芋艿:后续客户的选择 -->
<el-form-item
label=
"客户"
prop=
"customerId"
>
<el-select
v-model=
"formData.customerId"
clearable
placeholder=
"请选择客户"
>
<el-option
v-for=
"item in customerList"
:key=
"item.id"
:label=
"item.name"
:value=
"item.id"
/>
</el-select>
</el-form-item>
<el-form-item
label=
"下次联系时间"
prop=
"contactNextTime"
>
<el-form-item
label=
"下次联系时间"
prop=
"contactNextTime"
>
<el-date-picker
<el-date-picker
v-model=
"formData.contactNextTime"
v-model=
"formData.contactNextTime"
...
@@ -54,7 +43,6 @@
...
@@ -54,7 +43,6 @@
</template>
</template>
<
script
setup
lang=
"ts"
>
<
script
setup
lang=
"ts"
>
import
*
as
ClueApi
from
'@/api/crm/clue'
import
*
as
ClueApi
from
'@/api/crm/clue'
import
*
as
CustomerApi
from
'@/api/crm/customer'
const
{
t
}
=
useI18n
()
// 国际化
const
{
t
}
=
useI18n
()
// 国际化
const
message
=
useMessage
()
// 消息弹窗
const
message
=
useMessage
()
// 消息弹窗
...
@@ -63,11 +51,9 @@ const dialogVisible = ref(false) // 弹窗的是否展示
...
@@ -63,11 +51,9 @@ const dialogVisible = ref(false) // 弹窗的是否展示
const
dialogTitle
=
ref
(
''
)
// 弹窗的标题
const
dialogTitle
=
ref
(
''
)
// 弹窗的标题
const
formLoading
=
ref
(
false
)
// 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用
const
formLoading
=
ref
(
false
)
// 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用
const
formType
=
ref
(
''
)
// 表单的类型:create - 新增;update - 修改
const
formType
=
ref
(
''
)
// 表单的类型:create - 新增;update - 修改
const
customerList
=
ref
([])
// 客户列表
const
formData
=
ref
({
const
formData
=
ref
({
id
:
undefined
,
id
:
undefined
,
name
:
undefined
,
name
:
undefined
,
customerId
:
undefined
,
contactNextTime
:
undefined
,
contactNextTime
:
undefined
,
telephone
:
undefined
,
telephone
:
undefined
,
mobile
:
undefined
,
mobile
:
undefined
,
...
@@ -77,8 +63,7 @@ const formData = ref({
...
@@ -77,8 +63,7 @@ const formData = ref({
remark
:
undefined
remark
:
undefined
})
})
const
formRules
=
reactive
({
const
formRules
=
reactive
({
name
:
[{
required
:
true
,
message
:
'线索名称不能为空'
,
trigger
:
'blur'
}],
name
:
[{
required
:
true
,
message
:
'线索名称不能为空'
,
trigger
:
'blur'
}]
customerId
:
[{
required
:
true
,
message
:
'客户不能为空'
,
trigger
:
'blur'
}]
})
})
const
formRef
=
ref
()
// 表单 Ref
const
formRef
=
ref
()
// 表单 Ref
...
@@ -88,12 +73,6 @@ const open = async (type: string, id?: number) => {
...
@@ -88,12 +73,6 @@ const open = async (type: string, id?: number) => {
dialogTitle
.
value
=
t
(
'action.'
+
type
)
dialogTitle
.
value
=
t
(
'action.'
+
type
)
formType
.
value
=
type
formType
.
value
=
type
resetForm
()
resetForm
()
const
customerData
=
await
CustomerApi
.
getCustomerPage
({
pageNo
:
1
,
pageSize
:
100
,
pool
:
false
})
customerList
.
value
=
customerData
.
list
// 修改时,设置数据
// 修改时,设置数据
if
(
id
)
{
if
(
id
)
{
formLoading
.
value
=
true
formLoading
.
value
=
true
...
@@ -137,7 +116,6 @@ const resetForm = () => {
...
@@ -137,7 +116,6 @@ const resetForm = () => {
formData
.
value
=
{
formData
.
value
=
{
id
:
undefined
,
id
:
undefined
,
name
:
undefined
,
name
:
undefined
,
customerId
:
undefined
,
contactNextTime
:
undefined
,
contactNextTime
:
undefined
,
telephone
:
undefined
,
telephone
:
undefined
,
mobile
:
undefined
,
mobile
:
undefined
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment