Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
mes-ui
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
mes
mes-ui
Commits
c6961f10
Commit
c6961f10
authored
Jan 18, 2024
by
全洪江
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
品牌拜访,订单信息
parent
099ae42b
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
877 additions
and
0 deletions
+877
-0
quantity.js
src/api/mes/md/quantity.js
+59
-0
visit.js
src/api/mes/md/visit.js
+55
-0
index.vue
src/views/mes/md/quantity/index.vue
+369
-0
index.vue
src/views/mes/md/visit/index.vue
+394
-0
No files found.
src/api/mes/md/quantity.js
0 → 100644
View file @
c6961f10
import
request
from
'@/utils/request'
// 查询【请填写功能名称】列表
export
function
listQuantity
(
query
)
{
return
request
({
url
:
'/md/quantity/list'
,
method
:
'get'
,
params
:
query
})
}
// 查询【请填写功能名称】详细
export
function
getQuantity
(
brandOrderQuantityId
)
{
return
request
({
url
:
'/md/quantity/'
+
brandOrderQuantityId
,
method
:
'get'
})
}
// 新增【请填写功能名称】
export
function
addQuantity
(
data
)
{
return
request
({
url
:
'/md/quantity'
,
method
:
'post'
,
data
:
data
})
}
// 修改【请填写功能名称】
export
function
updateQuantity
(
data
)
{
return
request
({
url
:
'/md/quantity'
,
method
:
'put'
,
data
:
data
})
}
// 删除【请填写功能名称】
export
function
delQuantity
(
brandOrderQuantityId
)
{
return
request
({
url
:
'/md/quantity/'
+
brandOrderQuantityId
,
method
:
'delete'
})
}
//商品id下拉框
export
function
listAllbrand
(){
return
request
({
url
:
'/mes/md/quantity/listBrand'
,
method
:
'get'
})
}
// 查询品牌列表
export
function
listBrand
(
query
)
{
return
request
({
url
:
'/md/quantity/listBrand'
,
method
:
'get'
,
params
:
query
})
}
\ No newline at end of file
src/api/mes/md/visit.js
0 → 100644
View file @
c6961f10
import
request
from
'@/utils/request'
// 查询【请填写功能名称】列表
export
function
listVisit
(
query
)
{
return
request
({
url
:
'/md/visit/list'
,
method
:
'get'
,
params
:
query
})
}
// 查询【请填写功能名称】详细
export
function
getVisit
(
brandVisitId
)
{
return
request
({
url
:
'/md/visit/'
+
brandVisitId
,
method
:
'get'
})
}
// 新增【请填写功能名称】
export
function
addVisit
(
data
)
{
return
request
({
url
:
'/md/visit'
,
method
:
'post'
,
data
:
data
})
}
// 修改【请填写功能名称】
export
function
updateVisit
(
data
)
{
return
request
({
url
:
'/md/visit'
,
method
:
'put'
,
data
:
data
})
}
// 删除【请填写功能名称】
export
function
delVisit
(
brandVisitId
)
{
return
request
({
url
:
'/md/visit/'
+
brandVisitId
,
method
:
'delete'
})
}
// 查询品牌列表
export
function
listBrand
(
query
)
{
return
request
({
url
:
'/md/visit/listBrand'
,
method
:
'get'
,
params
:
query
})
}
\ No newline at end of file
src/views/mes/md/quantity/index.vue
0 → 100644
View file @
c6961f10
<
template
>
<div
class=
"app-container"
>
<el-form
:model=
"queryParams"
ref=
"queryForm"
size=
"small"
:inline=
"true"
v-show=
"showSearch"
label-width=
"68px"
>
<el-form-item
label=
"品牌id"
prop=
"brandId"
>
<el-input
v-model=
"queryParams.brandId"
placeholder=
"请输入品牌id"
clearable
@
keyup
.
enter
.
native=
"handleQuery"
/>
</el-form-item>
<el-form-item
label=
"年份"
prop=
"time"
>
<el-input
v-model=
"queryParams.time"
placeholder=
"请输入年份"
clearable
@
keyup
.
enter
.
native=
"handleQuery"
/>
</el-form-item>
<el-form-item
label=
"区域"
prop=
"region"
>
<el-input
v-model=
"queryParams.region"
placeholder=
"请输入区域"
clearable
@
keyup
.
enter
.
native=
"handleQuery"
/>
</el-form-item>
<el-form-item
label=
"订单量"
prop=
"orderQuantity"
>
<el-input
v-model=
"queryParams.orderQuantity"
placeholder=
"请输入订单量"
clearable
@
keyup
.
enter
.
native=
"handleQuery"
/>
</el-form-item>
<el-form-item
label=
"是否启用"
prop=
"enableFlag"
>
<el-input
v-model=
"queryParams.enableFlag"
placeholder=
"请输入是否启用"
clearable
@
keyup
.
enter
.
native=
"handleQuery"
/>
</el-form-item>
<el-form-item>
<el-button
type=
"primary"
icon=
"el-icon-search"
size=
"mini"
@
click=
"handleQuery"
>
搜索
</el-button>
<el-button
icon=
"el-icon-refresh"
size=
"mini"
@
click=
"resetQuery"
>
重置
</el-button>
</el-form-item>
</el-form>
<el-row
:gutter=
"10"
class=
"mb8"
>
<el-col
:span=
"1.5"
>
<el-button
type=
"primary"
plain
icon=
"el-icon-plus"
size=
"mini"
@
click=
"handleAdd"
v-hasPermi=
"['md:quantity:add']"
>
新增
</el-button>
</el-col>
<el-col
:span=
"1.5"
>
<el-button
type=
"success"
plain
icon=
"el-icon-edit"
size=
"mini"
:disabled=
"single"
@
click=
"handleUpdate"
v-hasPermi=
"['md:quantity:edit']"
>
修改
</el-button>
</el-col>
<el-col
:span=
"1.5"
>
<el-button
type=
"danger"
plain
icon=
"el-icon-delete"
size=
"mini"
:disabled=
"multiple"
@
click=
"handleDelete"
v-hasPermi=
"['md:quantity:remove']"
>
删除
</el-button>
</el-col>
<el-col
:span=
"1.5"
>
<el-button
type=
"warning"
plain
icon=
"el-icon-download"
size=
"mini"
@
click=
"handleExport"
v-hasPermi=
"['md:quantity:export']"
>
导出
</el-button>
</el-col>
<right-toolbar
:showSearch
.
sync=
"showSearch"
@
queryTable=
"getList"
></right-toolbar>
</el-row>
<el-table
v-loading=
"loading"
:data=
"quantityList"
@
selection-change=
"handleSelectionChange"
>
<el-table-column
type=
"selection"
width=
"55"
align=
"center"
/>
<el-table-column
label=
"id"
align=
"center"
prop=
"brandOrderQuantityId"
/>
<el-table-column
label=
"品牌id"
align=
"center"
prop=
"brandId"
/>
<el-table-column
label=
"年份"
align=
"center"
prop=
"time"
/>
<el-table-column
label=
"区域"
align=
"center"
prop=
"region"
/>
<el-table-column
label=
"订单量"
align=
"center"
prop=
"orderQuantity"
/>
<el-table-column
label=
"是否启用"
align=
"center"
prop=
"enableFlag"
/>
<el-table-column
label=
"备注"
align=
"center"
prop=
"remark"
/>
<el-table-column
label=
"操作"
align=
"center"
class-name=
"small-padding fixed-width"
>
<template
slot-scope=
"scope"
>
<el-button
size=
"mini"
type=
"text"
icon=
"el-icon-edit"
@
click=
"handleUpdate(scope.row)"
v-hasPermi=
"['md:quantity:edit']"
>
修改
</el-button>
<el-button
size=
"mini"
type=
"text"
icon=
"el-icon-delete"
@
click=
"handleDelete(scope.row)"
v-hasPermi=
"['md:quantity:remove']"
>
删除
</el-button>
</
template
>
</el-table-column>
</el-table>
<pagination
v-show=
"total>0"
:total=
"total"
:page
.
sync=
"queryParams.pageNum"
:limit
.
sync=
"queryParams.pageSize"
@
pagination=
"getList"
/>
<!-- 添加或修改【请填写功能名称】对话框 -->
<el-dialog
:title=
"title"
:visible
.
sync=
"open"
width=
"960px"
append-to-body
>
<el-form
ref=
"form"
:model=
"form"
:rules=
"rules"
label-width=
"80px"
>
<el-row>
<el-col
:span=
"12"
>
<!-- <el-form-item label="品牌id" prop="brandId">
<el-input v-model="form.brandId" placeholder="请输入品牌id" />
</el-form-item> -->
<el-form-item
label=
"品牌"
prop=
"brandName"
>
<el-input
v-model=
"form.brandName"
placeholder=
"请选择品牌"
>
<el-button
slot=
"append"
icon=
"el-icon-search"
@
click=
"handleBrandSelect"
></el-button>
</el-input>
<BrandSelect
ref=
"brSelect"
@
onSelected=
"onBrandSelected"
></BrandSelect>
</el-form-item>
</el-col>
<el-col
:span=
"12"
>
<el-form-item
label=
"年份"
prop=
"time"
>
<el-input
v-model=
"form.time"
placeholder=
"请输入年份"
/>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col
:span=
"12"
>
<el-form-item
label=
"区域"
prop=
"region"
>
<el-input
v-model=
"form.region"
placeholder=
"请输入区域"
/>
</el-form-item>
</el-col>
<el-col
:span=
"12"
>
<el-form-item
label=
"订单量"
prop=
"orderQuantity"
>
<el-input
v-model=
"form.orderQuantity"
placeholder=
"请输入订单量"
/>
</el-form-item>
</el-col>
</el-row>
<el-row>
<!-- <el-col :span="12">
<el-form-item label="是否启用" prop="enableFlag">
<el-input v-model="form.enableFlag" placeholder="请输入是否启用" />
</el-form-item> </el-col>-->
<el-col
:span=
"12"
>
<el-form-item
label=
"是否启用"
prop=
"enableFlag"
>
<el-radio-group
v-model=
"form.enableFlag"
disabled
v-if=
"optType=='view'"
>
<el-radio
v-for=
"dict in dict.type.sys_yes_no"
:key=
"dict.value"
:label=
"dict.value"
>
{{dict.label}}
</el-radio>
</el-radio-group>
<el-radio-group
v-model=
"form.enableFlag"
v-else
>
<el-radio
v-for=
"dict in dict.type.sys_yes_no"
:key=
"dict.value"
:label=
"dict.value"
>
{{dict.label}}
</el-radio>
</el-radio-group>
</el-form-item>
</el-col>
</el-row>
<el-form-item
label=
"备注"
prop=
"remark"
>
<el-input
v-model=
"form.remark"
type=
"textarea"
placeholder=
"请输入内容"
/>
</el-form-item>
</el-form>
<div
slot=
"footer"
class=
"dialog-footer"
>
<el-button
type=
"primary"
@
click=
"submitForm"
>
确 定
</el-button>
<el-button
@
click=
"cancel"
>
取 消
</el-button>
</div>
</el-dialog>
</div>
</template>
<
script
>
import
{
listQuantity
,
getQuantity
,
delQuantity
,
addQuantity
,
updateQuantity
,
listAllbrand
}
from
"@/api/mes/md/quantity"
;
import
BrandSelect
from
"@/components/brandSelect/single.vue"
export
default
{
components
:{
BrandSelect
},
dicts
:
[
'sys_yes_no,mes_order_status'
,
'mes_feedback_type'
,
'sys_yes_no'
],
name
:
"Quantity"
,
data
()
{
return
{
// 遮罩层
loading
:
true
,
// 选中数组
ids
:
[],
// 非单个禁用
single
:
true
,
// 非多个禁用
multiple
:
true
,
// 显示搜索条件
showSearch
:
true
,
//品牌选项
mdbrand
:[],
// 总条数
total
:
0
,
// 【请填写功能名称】表格数据
quantityList
:
[],
// 弹出层标题
title
:
""
,
// 是否显示弹出层
open
:
false
,
// 查询参数
queryParams
:
{
pageNum
:
1
,
pageSize
:
10
,
brandId
:
null
,
time
:
null
,
region
:
null
,
orderQuantity
:
null
,
enableFlag
:
null
,
},
// 表单参数
form
:
{},
// 表单校验
rules
:
{
brandId
:
[
{
required
:
true
,
message
:
"品牌id不能为空"
,
trigger
:
"blur"
}
],
time
:
[
{
required
:
true
,
message
:
"年份不能为空"
,
trigger
:
"blur"
}
],
region
:
[
{
required
:
true
,
message
:
"区域不能为空"
,
trigger
:
"blur"
}
],
}
};
},
created
()
{
this
.
getList
();
},
methods
:
{
/** 查询【请填写功能名称】列表 */
getList
()
{
this
.
loading
=
true
;
listQuantity
(
this
.
queryParams
).
then
(
response
=>
{
this
.
quantityList
=
response
.
rows
;
this
.
total
=
response
.
total
;
this
.
loading
=
false
;
});
},
// 取消按钮
cancel
()
{
this
.
open
=
false
;
this
.
reset
();
},
// 表单重置
reset
()
{
this
.
form
=
{
brandOrderQuantityId
:
null
,
brandId
:
null
,
time
:
null
,
region
:
null
,
orderQuantity
:
null
,
enableFlag
:
null
,
remark
:
null
,
createBy
:
null
,
createTime
:
null
,
updateBy
:
null
,
updateTime
:
null
};
this
.
resetForm
(
"form"
);
},
/** 搜索按钮操作 */
handleQuery
()
{
this
.
queryParams
.
pageNum
=
1
;
this
.
getList
();
},
/** 重置按钮操作 */
resetQuery
()
{
this
.
resetForm
(
"queryForm"
);
this
.
handleQuery
();
},
// 多选框选中数据
handleSelectionChange
(
selection
)
{
this
.
ids
=
selection
.
map
(
item
=>
item
.
brandOrderQuantityId
)
this
.
single
=
selection
.
length
!==
1
this
.
multiple
=
!
selection
.
length
},
/** 新增按钮操作 */
handleAdd
()
{
this
.
reset
();
this
.
open
=
true
;
this
.
title
=
"添加【请填写功能名称】"
;
},
/** 修改按钮操作 */
handleUpdate
(
row
)
{
this
.
reset
();
const
brandOrderQuantityId
=
row
.
brandOrderQuantityId
||
this
.
ids
getQuantity
(
brandOrderQuantityId
).
then
(
response
=>
{
this
.
form
=
response
.
data
;
this
.
open
=
true
;
this
.
title
=
"修改【请填写功能名称】"
;
});
},
/** 提交按钮 */
submitForm
()
{
this
.
$refs
[
"form"
].
validate
(
valid
=>
{
if
(
valid
)
{
if
(
this
.
form
.
brandOrderQuantityId
!=
null
)
{
updateQuantity
(
this
.
form
).
then
(
response
=>
{
this
.
$modal
.
msgSuccess
(
"修改成功"
);
this
.
open
=
false
;
this
.
getList
();
});
}
else
{
addQuantity
(
this
.
form
).
then
(
response
=>
{
this
.
$modal
.
msgSuccess
(
"新增成功"
);
this
.
open
=
false
;
this
.
getList
();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete
(
row
)
{
const
brandOrderQuantityIds
=
row
.
brandOrderQuantityId
||
this
.
ids
;
this
.
$modal
.
confirm
(
'是否确认删除【请填写功能名称】编号为"'
+
brandOrderQuantityIds
+
'"的数据项?'
).
then
(
function
()
{
return
delQuantity
(
brandOrderQuantityIds
);
}).
then
(()
=>
{
this
.
getList
();
this
.
$modal
.
msgSuccess
(
"删除成功"
);
}).
catch
(()
=>
{});
},
/** 导出按钮操作 */
handleExport
()
{
this
.
download
(
'md/quantity/export'
,
{
...
this
.
queryParams
},
`quantity_
${
new
Date
().
getTime
()}
.xlsx`
)
},
//选择生产工单
handleBrandSelect
(){
this
.
$refs
.
brSelect
.
showFlag
=
true
;
},
onBrandSelected
(
row
){
if
(
row
!=
undefined
&&
row
!=
null
){
this
.
form
.
brandId
=
row
.
brandId
;
this
.
form
.
brandCode
=
row
.
brandCode
;
this
.
form
.
brandName
=
row
.
brandName
;
this
.
form
.
groupName
=
row
.
groupName
;
this
.
form
.
address
=
row
.
address
;
this
.
form
.
salesContact
=
row
.
salesContact
;
this
.
form
.
devContact
=
row
.
devContact
;
this
.
form
.
background
=
row
.
background
;
this
.
form
.
scope
=
row
.
scope
;
this
.
form
.
potentialProject
=
row
.
potentialProject
;
this
.
form
.
integrityRegulations
=
row
.
integrityRegulations
;
}
},
}
};
</
script
>
\ No newline at end of file
src/views/mes/md/visit/index.vue
0 → 100644
View file @
c6961f10
<
template
>
<div
class=
"app-container"
>
<el-form
:model=
"queryParams"
ref=
"queryForm"
size=
"small"
:inline=
"true"
v-show=
"showSearch"
label-width=
"68px"
>
<el-form-item
label=
"品牌id"
prop=
"brandId"
>
<el-input
v-model=
"queryParams.brandOrderQuantityId"
placeholder=
"请输入品牌id"
clearable
@
keyup
.
enter
.
native=
"handleQuery"
/>
</el-form-item>
<el-form-item
label=
"访问客户"
prop=
"contactName"
>
<el-input
v-model=
"queryParams.contactName"
placeholder=
"请输入访问客户"
clearable
@
keyup
.
enter
.
native=
"handleQuery"
/>
</el-form-item>
<el-form-item
label=
"访问人"
prop=
"visitPerson"
>
<el-input
v-model=
"queryParams.visitPerson"
placeholder=
"请输入访问人"
clearable
@
keyup
.
enter
.
native=
"handleQuery"
/>
</el-form-item>
<el-form-item
label=
"拜访时间"
prop=
"visitTime"
>
<el-date-picker
clearable
v-model=
"queryParams.visitTime"
type=
"date"
value-format=
"yyyy-MM-dd"
placeholder=
"请选择拜访时间"
>
</el-date-picker>
</el-form-item>
<el-form-item
label=
"是否启用"
prop=
"enableFlag"
>
<el-input
v-model=
"queryParams.enableFlag"
placeholder=
"请输入是否启用"
clearable
@
keyup
.
enter
.
native=
"handleQuery"
/>
</el-form-item>
<el-form-item>
<el-button
type=
"primary"
icon=
"el-icon-search"
size=
"mini"
@
click=
"handleQuery"
>
搜索
</el-button>
<el-button
icon=
"el-icon-refresh"
size=
"mini"
@
click=
"resetQuery"
>
重置
</el-button>
</el-form-item>
</el-form>
<el-row
:gutter=
"10"
class=
"mb8"
>
<el-col
:span=
"1.5"
>
<el-button
type=
"primary"
plain
icon=
"el-icon-plus"
size=
"mini"
@
click=
"handleAdd"
v-hasPermi=
"['md:visit:add']"
>
新增
</el-button>
</el-col>
<el-col
:span=
"1.5"
>
<el-button
type=
"success"
plain
icon=
"el-icon-edit"
size=
"mini"
:disabled=
"single"
@
click=
"handleUpdate"
v-hasPermi=
"['md:visit:edit']"
>
修改
</el-button>
</el-col>
<el-col
:span=
"1.5"
>
<el-button
type=
"danger"
plain
icon=
"el-icon-delete"
size=
"mini"
:disabled=
"multiple"
@
click=
"handleDelete"
v-hasPermi=
"['md:visit:remove']"
>
删除
</el-button>
</el-col>
<el-col
:span=
"1.5"
>
<el-button
type=
"warning"
plain
icon=
"el-icon-download"
size=
"mini"
@
click=
"handleExport"
v-hasPermi=
"['md:visit:export']"
>
导出
</el-button>
</el-col>
<right-toolbar
:showSearch
.
sync=
"showSearch"
@
queryTable=
"getList"
></right-toolbar>
</el-row>
<el-table
v-loading=
"loading"
:data=
"visitList"
@
selection-change=
"handleSelectionChange"
>
<el-table-column
type=
"selection"
width=
"55"
align=
"center"
/>
<el-table-column
label=
"id"
align=
"center"
prop=
"brandVisitId"
/>
<el-table-column
label=
"品牌id"
align=
"center"
prop=
"brandId"
/>
<el-table-column
label=
"访问客户"
align=
"center"
prop=
"contactName"
/>
<el-table-column
label=
"访问人"
align=
"center"
prop=
"visitPerson"
/>
<el-table-column
label=
"拜访时间"
align=
"center"
prop=
"visitTime"
width=
"180"
>
<template
slot-scope=
"scope"
>
<span>
{{
parseTime
(
scope
.
row
.
visitTime
,
'{y
}
-{m
}
-{d
}
'
)
}}
<
/span
>
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
label
=
"拜访纪要"
align
=
"center"
prop
=
"visitSummary"
/>
<
el
-
table
-
column
label
=
"是否启用"
align
=
"center"
prop
=
"enableFlag"
/>
<
el
-
table
-
column
label
=
"备注"
align
=
"center"
prop
=
"remark"
/>
<
el
-
table
-
column
label
=
"操作"
align
=
"center"
class
-
name
=
"small-padding fixed-width"
>
<
template
slot
-
scope
=
"scope"
>
<
el
-
button
size
=
"mini"
type
=
"text"
icon
=
"el-icon-edit"
@
click
=
"handleUpdate(scope.row)"
v
-
hasPermi
=
"['md:visit:edit']"
>
修改
<
/el-button
>
<
el
-
button
size
=
"mini"
type
=
"text"
icon
=
"el-icon-delete"
@
click
=
"handleDelete(scope.row)"
v
-
hasPermi
=
"['md:visit:remove']"
>
删除
<
/el-button
>
<
/template
>
<
/el-table-column
>
<
/el-table
>
<
pagination
v
-
show
=
"total>0"
:
total
=
"total"
:
page
.
sync
=
"queryParams.pageNum"
:
limit
.
sync
=
"queryParams.pageSize"
@
pagination
=
"getList"
/>
<!--
添加或修改【请填写功能名称】对话框
-->
<
el
-
dialog
:
title
=
"title"
:
visible
.
sync
=
"open"
width
=
"960px"
append
-
to
-
body
>
<
el
-
form
ref
=
"form"
:
model
=
"form"
:
rules
=
"rules"
label
-
width
=
"80px"
>
<
el
-
row
>
<
el
-
col
:
span
=
"12"
>
<!--
<
el
-
form
-
item
label
=
"品牌id"
prop
=
"brandId"
>
<
el
-
input
v
-
model
=
"form.brandId"
placeholder
=
"请输入品牌id"
/>
<
/el-form-item> --
>
<
el
-
form
-
item
label
=
"品牌"
prop
=
"brandName"
>
<
el
-
input
v
-
model
=
"form.brandName"
placeholder
=
"请选择品牌"
>
<
el
-
button
slot
=
"append"
icon
=
"el-icon-search"
@
click
=
"handleBrandSelect"
><
/el-button
>
<
/el-input
>
<
BrandSelect
ref
=
"brSelect"
@
onSelected
=
"onBrandSelected"
><
/BrandSelect
>
<
/el-form-item
>
<
/el-col
>
<
el
-
col
:
span
=
"12"
>
<
el
-
form
-
item
label
=
"访问客户"
prop
=
"contactName"
>
<
el
-
input
v
-
model
=
"form.contactName"
placeholder
=
"请输入访问客户"
/>
<
/el-form-item
>
<
/el-col
>
<
/el-row
>
<
el
-
row
>
<
el
-
col
:
span
=
"12"
>
<
el
-
form
-
item
label
=
"访问人"
prop
=
"visitPerson"
>
<
el
-
input
v
-
model
=
"form.visitPerson"
placeholder
=
"请输入访问人"
/>
<
/el-form-item
>
<
/el-col
>
<
el
-
col
:
span
=
"12"
>
<
el
-
form
-
item
label
=
"拜访时间"
prop
=
"visitTime"
>
<
el
-
date
-
picker
clearable
v
-
model
=
"form.visitTime"
type
=
"date"
value
-
format
=
"yyyy-MM-dd"
placeholder
=
"请选择拜访时间"
>
<
/el-date-picker
>
<
/el-form-item
>
<
/el-col
>
<
/el-row
>
<
el
-
row
>
<
el
-
col
:
span
=
"12"
>
<
el
-
form
-
item
label
=
"拜访纪要"
prop
=
"visitSummary"
>
<
el
-
input
v
-
model
=
"form.visitSummary"
type
=
"textarea"
placeholder
=
"请输入内容"
/>
<
/el-form-item
>
<
/el-col
>
<
/el-row
>
<
el
-
row
>
<!--
<
el
-
col
:
span
=
"12"
>
<
el
-
form
-
item
label
=
"是否启用"
prop
=
"enableFlag"
>
<
el
-
input
v
-
model
=
"form.enableFlag"
placeholder
=
"请输入是否启用"
/>
<
/el-form-item> </
el
-
col
>-->
<
el
-
col
:
span
=
"12"
>
<
el
-
form
-
item
label
=
"是否启用"
prop
=
"enableFlag"
>
<
el
-
radio
-
group
v
-
model
=
"form.enableFlag"
disabled
v
-
if
=
"optType=='view'"
>
<
el
-
radio
v
-
for
=
"dict in dict.type.sys_yes_no"
:
key
=
"dict.value"
:
label
=
"dict.value"
>
{{
dict
.
label
}}
<
/el-radio
>
<
/el-radio-group
>
<
el
-
radio
-
group
v
-
model
=
"form.enableFlag"
v
-
else
>
<
el
-
radio
v
-
for
=
"dict in dict.type.sys_yes_no"
:
key
=
"dict.value"
:
label
=
"dict.value"
>
{{
dict
.
label
}}
<
/el-radio
>
<
/el-radio-group
>
<
/el-form-item
>
<
/el-col
>
<
/el-row
>
<
el
-
row
>
<
el
-
form
-
item
label
=
"备注"
prop
=
"remark"
>
<
el
-
input
v
-
model
=
"form.remark"
type
=
"textarea"
placeholder
=
"请输入内容"
/>
<
/el-form-item
>
<
/el-row
>
<
/el-form
>
<
div
slot
=
"footer"
class
=
"dialog-footer"
>
<
el
-
button
type
=
"primary"
@
click
=
"submitForm"
>
确
定
<
/el-button
>
<
el
-
button
@
click
=
"cancel"
>
取
消
<
/el-button
>
<
/div
>
<
/el-dialog
>
<
/div
>
<
/template
>
<
script
>
import
{
listVisit
,
getVisit
,
delVisit
,
addVisit
,
updateVisit
}
from
"@/api/mes/md/visit"
;
import
BrandSelect
from
"@/components/brandSelect/single.vue"
export
default
{
name
:
"Visit"
,
components
:{
BrandSelect
}
,
dicts
:
[
'sys_yes_no,mes_order_status'
,
'mes_feedback_type'
,
'sys_yes_no'
],
data
()
{
return
{
optType
:
undefined
,
// 遮罩层
loading
:
true
,
// 选中数组
ids
:
[],
// 非单个禁用
single
:
true
,
// 非多个禁用
multiple
:
true
,
// 显示搜索条件
showSearch
:
true
,
// 总条数
total
:
0
,
// 【请填写功能名称】表格数据
visitList
:
[],
// 弹出层标题
title
:
""
,
// 是否显示弹出层
open
:
false
,
// 查询参数
queryParams
:
{
pageNum
:
1
,
pageSize
:
10
,
brandId
:
null
,
contactName
:
null
,
visitPerson
:
null
,
visitTime
:
null
,
visitSummary
:
null
,
enableFlag
:
null
,
}
,
// 表单参数
form
:
{
}
,
// 表单校验
rules
:
{
brandId
:
[
{
required
:
true
,
message
:
"品牌id不能为空"
,
trigger
:
"blur"
}
],
contactName
:
[
{
required
:
true
,
message
:
"访问客户不能为空"
,
trigger
:
"blur"
}
],
visitPerson
:
[
{
required
:
true
,
message
:
"访问人不能为空"
,
trigger
:
"blur"
}
],
visitTime
:
[
{
required
:
true
,
message
:
"拜访时间不能为空"
,
trigger
:
"blur"
}
],
}
}
;
}
,
created
()
{
this
.
getList
();
}
,
methods
:
{
/** 查询【请填写功能名称】列表 */
getList
()
{
this
.
loading
=
true
;
listVisit
(
this
.
queryParams
).
then
(
response
=>
{
this
.
visitList
=
response
.
rows
;
this
.
total
=
response
.
total
;
this
.
loading
=
false
;
}
);
}
,
// 取消按钮
cancel
()
{
this
.
open
=
false
;
this
.
reset
();
}
,
// 表单重置
reset
()
{
this
.
form
=
{
brandVisitId
:
null
,
brandId
:
null
,
contactName
:
null
,
visitPerson
:
null
,
visitTime
:
null
,
visitSummary
:
null
,
enableFlag
:
null
,
remark
:
null
,
createBy
:
null
,
createTime
:
null
,
updateBy
:
null
,
updateTime
:
null
}
;
this
.
resetForm
(
"form"
);
}
,
/** 搜索按钮操作 */
handleQuery
()
{
this
.
queryParams
.
pageNum
=
1
;
this
.
getList
();
}
,
/** 重置按钮操作 */
resetQuery
()
{
this
.
resetForm
(
"queryForm"
);
this
.
handleQuery
();
}
,
// 多选框选中数据
handleSelectionChange
(
selection
)
{
this
.
ids
=
selection
.
map
(
item
=>
item
.
brandVisitId
)
this
.
single
=
selection
.
length
!==
1
this
.
multiple
=
!
selection
.
length
}
,
/** 新增按钮操作 */
handleAdd
()
{
this
.
reset
();
this
.
open
=
true
;
this
.
title
=
"添加【请填写功能名称】"
;
this
.
optType
=
"add"
;
}
,
/** 修改按钮操作 */
handleUpdate
(
row
)
{
this
.
reset
();
const
brandVisitId
=
row
.
brandVisitId
||
this
.
ids
getVisit
(
brandVisitId
).
then
(
response
=>
{
this
.
form
=
response
.
data
;
this
.
open
=
true
;
this
.
title
=
"修改【请填写功能名称】"
;
this
.
optType
=
"edit"
;
}
);
}
,
/** 提交按钮 */
submitForm
()
{
this
.
$refs
[
"form"
].
validate
(
valid
=>
{
if
(
valid
)
{
if
(
this
.
form
.
brandVisitId
!=
null
)
{
updateVisit
(
this
.
form
).
then
(
response
=>
{
this
.
$modal
.
msgSuccess
(
"修改成功"
);
this
.
open
=
false
;
this
.
getList
();
}
);
}
else
{
addVisit
(
this
.
form
).
then
(
response
=>
{
this
.
$modal
.
msgSuccess
(
"新增成功"
);
this
.
open
=
false
;
this
.
getList
();
}
);
}
}
}
);
}
,
/** 删除按钮操作 */
handleDelete
(
row
)
{
const
brandVisitIds
=
row
.
brandVisitId
||
this
.
ids
;
this
.
$modal
.
confirm
(
'是否确认删除【请填写功能名称】编号为"'
+
brandVisitIds
+
'"的数据项?'
).
then
(
function
()
{
return
delVisit
(
brandVisitIds
);
}
).
then
(()
=>
{
this
.
getList
();
this
.
$modal
.
msgSuccess
(
"删除成功"
);
}
).
catch
(()
=>
{
}
);
}
,
/** 导出按钮操作 */
handleExport
()
{
this
.
download
(
'md/visit/export'
,
{
...
this
.
queryParams
}
,
`visit_${new Date().getTime()
}
.xlsx`
)
}
,
//选择生产工单
handleBrandSelect
(){
this
.
$refs
.
brSelect
.
showFlag
=
true
;
}
,
onBrandSelected
(
row
){
if
(
row
!=
undefined
&&
row
!=
null
){
this
.
form
.
brandId
=
row
.
brandId
;
this
.
form
.
brandCode
=
row
.
brandCode
;
this
.
form
.
brandName
=
row
.
brandName
;
this
.
form
.
groupName
=
row
.
groupName
;
this
.
form
.
address
=
row
.
address
;
this
.
form
.
salesContact
=
row
.
salesContact
;
this
.
form
.
devContact
=
row
.
devContact
;
this
.
form
.
background
=
row
.
background
;
this
.
form
.
scope
=
row
.
scope
;
this
.
form
.
potentialProject
=
row
.
potentialProject
;
this
.
form
.
integrityRegulations
=
row
.
integrityRegulations
;
}
}
,
}
}
;
<
/script>
\ No newline at end of file
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