Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
P
pda-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
pda
pda-ui
Commits
d3fbe43a
Commit
d3fbe43a
authored
Jan 18, 2024
by
全洪江
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
拜访信息,订单信息
parent
18fc74c9
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
604 additions
and
603 deletions
+604
-603
brandIndex.vue
src/views/mes/md/brand/brandIndex.vue
+597
-0
index.vue
src/views/mes/md/brand/index.vue
+0
-596
quantity.vue
src/views/mes/md/brand/quantity.vue
+3
-3
visit.vue
src/views/mes/md/brand/visit.vue
+4
-4
No files found.
src/views/mes/md/brand/brandIndex.vue
0 → 100644
View file @
d3fbe43a
<
template
>
<div
class=
"app-container"
>
<el-form
:model=
"queryParams"
ref=
"queryForm"
size=
"small"
:inline=
"true"
v-show=
"showSearch"
label-width=
"100px"
>
<el-form-item
label=
"品牌编码"
prop=
"brandCode"
>
<el-input
v-model=
"queryParams.brandCode"
placeholder=
"请输入品牌编码"
clearable
@
keyup
.
enter
.
native=
"handleQuery"
/>
</el-form-item>
<el-form-item
label=
"品牌名称"
prop=
"brandName"
>
<el-input
v-model=
"queryParams.brandName"
placeholder=
"请输入品牌名称"
clearable
@
keyup
.
enter
.
native=
"handleQuery"
/>
</el-form-item>
<el-form-item
label=
"集团"
prop=
"groupName"
>
<el-input
v-model=
"queryParams.groupName"
placeholder=
"请输入集团"
clearable
@
keyup
.
enter
.
native=
"handleQuery"
/>
</el-form-item>
<el-form-item
label=
"是否启用"
prop=
"enableFlag"
>
<el-select
v-model=
"queryParams.enableFlag"
placeholder=
"是否启用"
clearable
style=
"width: 215px"
>
<el-option
v-for=
"dict in dict.type.sys_yes_no"
:key=
"dict.value"
:label=
"dict.label"
:value=
"dict.value"
/>
</el-select>
</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=
"['mes:md:brand: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=
"['mes:md:brand: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=
"['mes:md:brand: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=
"['mes:md:brand:export']"
>
导出
</el-button
>
</el-col>
<right-toolbar
:showSearch
.
sync=
"showSearch"
@
queryTable=
"getList"
></right-toolbar>
</el-row>
<el-table
v-loading=
"loading"
:data=
"brandList"
@
selection-change=
"handleSelectionChange"
>
<el-table-column
type=
"selection"
width=
"55"
align=
"center"
/>
<el-table-column
label=
"品牌编码"
align=
"center"
prop=
"brandCode"
>
<template
slot-scope=
"scope"
>
<el-button
type=
"text"
@
click=
"handleView(scope.row)"
v-hasPermi=
"['mes:md:brand:query']"
>
{{
scope
.
row
.
brandCode
}}
</el-button
>
</
template
>
</el-table-column>
<el-table-column
label=
"品牌名称"
align=
"center"
prop=
"brandName"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"集团"
align=
"center"
prop=
"groupName"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"地址"
align=
"center"
prop=
"address"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"销售对接人"
align=
"center"
prop=
"salesContact"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"开发对接人"
align=
"center"
prop=
"devContact"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"品牌背景"
align=
"center"
prop=
"background"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"经营范围"
align=
"center"
prop=
"scope"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"潜力项目"
align=
"center"
prop=
"potentialProject"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"廉洁规定"
align=
"center"
prop=
"integrityRegulations"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"是否启用"
align=
"center"
prop=
"enableFlag"
>
<
template
slot-scope=
"scope"
>
<dict-tag
:options=
"dict.type.sys_yes_no"
:value=
"scope.row.enableFlag"
/>
</
template
>
</el-table-column>
<el-table-column
label=
"备注"
align=
"center"
prop=
"remark"
:show-overflow-tooltip=
"true"
/>
<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=
"['mes:md:brand:edit']"
>
修改
</el-button
>
<el-button
size=
"mini"
type=
"text"
icon=
"el-icon-delete"
@
click=
"handleDelete(scope.row)"
v-hasPermi=
"['mes:md:brand: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=
"100px"
>
<el-row>
<el-col
:span=
"8"
>
<el-form-item
label=
"品牌编码"
prop=
"brandCode"
>
<el-input
v-model=
"form.brandCode"
placeholder=
"请输入品牌编码"
/>
</el-form-item>
</el-col>
<el-col
:span=
"3"
>
<el-form-item
label-width=
"80"
>
<el-switch
v-model=
"autoGenFlag"
active-color=
"#13ce66"
active-text=
"自动生成"
@
change=
"handleAutoGenChange(autoGenFlag)"
v-if=
"optType != 'view'"
>
</el-switch>
</el-form-item>
</el-col>
<el-col
:span=
"7"
>
<el-form-item
label=
"品牌名称"
prop=
"brandName"
>
<el-input
v-model=
"form.brandName"
placeholder=
"请输入品牌名称"
/>
</el-form-item>
</el-col>
<el-col
:span=
"6"
>
<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-col
:span=
"8"
>
<el-form-item
label=
"集团"
prop=
"groupName"
>
<el-input
v-model=
"form.groupName"
placeholder=
"请输入所属集团名称"
/>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"销售对接人"
prop=
"salesContact"
>
<el-input
v-model=
"form.salesContact"
placeholder=
"请输入销售对接人"
/>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"开发对接人"
prop=
"devContact"
>
<el-input
v-model=
"form.devContact"
placeholder=
"请输入开发对接人"
/>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col
:span=
"24"
>
<el-form-item
label=
"地址"
prop=
"address"
>
<el-input
v-model=
"form.address"
placeholder=
"请输入地址"
/>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col
:span=
"24"
>
<el-form-item
label=
"品牌背景"
prop=
"background"
>
<el-input
v-model=
"form.background"
placeholder=
"请输入品牌背景"
/>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col
:span=
"24"
>
<el-form-item
label=
"经营范围"
prop=
"scope"
>
<el-input
v-model=
"form.scope"
placeholder=
"请输入经营范围"
/>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col
:span=
"24"
>
<el-form-item
label=
"潜力项目"
prop=
"potentialProject"
>
<el-input
v-model=
"form.potentialProject"
placeholder=
"请输入潜力项目"
/>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col
:span=
"24"
>
<el-form-item
label=
"廉洁规定"
prop=
"integrityRegulations"
>
<el-input
v-model=
"form.integrityRegulations"
placeholder=
"请输入廉洁规定"
/>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col
:span=
"24"
>
<el-form-item
label=
"备注"
prop=
"remark"
>
<el-input
v-model=
"form.remark"
type=
"textarea"
placeholder=
"请输入内容"
/>
</el-form-item>
</el-col>
</el-row>
</el-form>
<div
slot=
"footer"
class=
"dialog-footer"
>
<el-button
type=
"primary"
@
click=
"cancel"
v-if=
"optType == 'view'"
>
返回
</el-button
>
<el-button
type=
"primary"
@
click=
"submitForm"
v-else
>
确 定
</el-button>
<el-button
@
click=
"cancel"
>
取 消
</el-button>
</div>
</el-dialog>
</div>
</template>
<
script
>
import
{
listBrand
,
getBrand
,
delBrand
,
addBrand
,
updateBrand
,
}
from
"@/api/mes/md/brand"
;
import
{
genCode
}
from
"@/api/system/autocode/rule"
;
export
default
{
name
:
"Brand"
,
dicts
:
[
"sys_yes_no"
],
data
()
{
return
{
//自动生成编码
autoGenFlag
:
false
,
optType
:
undefined
,
// 遮罩层
loading
:
true
,
// 选中数组
ids
:
[],
// 非单个禁用
single
:
true
,
// 非多个禁用
multiple
:
true
,
// 显示搜索条件
showSearch
:
true
,
// 总条数
total
:
0
,
// 生产工序表格数据
UsageList
:
[],
// 弹出层标题
title
:
""
,
// 是否显示弹出层
open
:
false
,
// 查询参数
queryParams
:
{
pageNum
:
1
,
pageSize
:
10
,
brandCode
:
null
,
brandName
:
null
,
groupName
:
null
,
enableFlag
:
null
,
},
// 表单参数
form
:
{},
brandList
:
[],
// 表单校验
rules
:
{
brandCode
:
[
{
required
:
true
,
message
:
"品牌编码不能为空"
,
trigger
:
"blur"
},
],
brandName
:
[
{
required
:
true
,
message
:
"品牌名称不能为空"
,
trigger
:
"blur"
},
],
groupName
:
[
{
required
:
true
,
message
:
"集团不能为空"
,
trigger
:
"blur"
},
],
enableFlag
:
[
{
required
:
true
,
message
:
"是否启用不能为空"
,
trigger
:
"blur"
},
],
},
};
},
created
()
{
this
.
getList
();
},
methods
:
{
/** 查询品牌列表 */
getList
()
{
this
.
loading
=
true
;
listBrand
(
this
.
queryParams
).
then
((
response
)
=>
{
this
.
brandList
=
response
.
rows
;
this
.
total
=
response
.
total
;
this
.
loading
=
false
;
});
},
// 取消按钮
cancel
()
{
this
.
open
=
false
;
this
.
reset
();
},
// 表单重置
reset
()
{
this
.
form
=
{
brandId
:
null
,
brandCode
:
null
,
brandName
:
null
,
groupName
:
null
,
address
:
null
,
salesContact
:
null
,
devContact
:
null
,
background
:
null
,
scope
:
null
,
potentialProject
:
null
,
integrityRegulations
:
null
,
enableFlag
:
"Y"
,
remark
:
null
,
createBy
:
null
,
createTime
:
null
,
updateBy
:
null
,
updateTime
:
null
,
};
this
.
autoGenFlag
=
false
;
this
.
resetForm
(
"form"
);
},
/** 搜索按钮操作 */
handleQuery
()
{
this
.
queryParams
.
pageNum
=
1
;
this
.
getList
();
},
/** 重置按钮操作 */
resetQuery
()
{
this
.
resetForm
(
"queryForm"
);
this
.
handleQuery
();
},
// 多选框选中数据
handleSelectionChange
(
selection
)
{
this
.
ids
=
selection
.
map
((
item
)
=>
item
.
brandId
);
this
.
single
=
selection
.
length
!==
1
;
this
.
multiple
=
!
selection
.
length
;
},
/** 新增按钮操作 */
handleAdd
()
{
this
.
reset
();
this
.
open
=
true
;
this
.
title
=
"添加品牌"
;
this
.
optType
=
"add"
;
},
// 查询明细按钮操作
handleView
(
row
)
{
this
.
reset
();
const
brandId
=
row
.
brandId
||
this
.
ids
;
getBrand
(
brandId
).
then
((
response
)
=>
{
this
.
form
=
response
.
data
;
this
.
open
=
true
;
this
.
title
=
"查看品牌信息"
;
this
.
optType
=
"view"
;
});
},
/** 修改按钮操作 */
handleUpdate
(
row
)
{
this
.
reset
();
const
brandId
=
row
.
brandId
||
this
.
ids
;
getBrand
(
brandId
).
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
.
brandId
!=
null
)
{
updateBrand
(
this
.
form
).
then
((
response
)
=>
{
this
.
$modal
.
msgSuccess
(
"修改成功"
);
this
.
open
=
false
;
this
.
getList
();
});
}
else
{
addBrand
(
this
.
form
).
then
((
response
)
=>
{
this
.
$modal
.
msgSuccess
(
"新增成功"
);
this
.
open
=
false
;
this
.
getList
();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete
()
{
const
brandIds
=
this
.
ids
.
join
(
","
);
console
.
log
(
brandIds
);
this
.
$modal
.
confirm
(
"是否确认删除品牌?"
)
.
then
(
function
()
{
return
delBrand
(
brandIds
);
})
.
then
(()
=>
{
this
.
getList
();
this
.
$modal
.
msgSuccess
(
"删除成功"
);
})
.
catch
(()
=>
{});
},
/** 导出按钮操作 */
handleExport
()
{
this
.
download
(
"mes/md/brand/export"
,
{
...
this
.
queryParams
,
},
`usage_
${
new
Date
().
getTime
()}
.xlsx`
);
},
//自动生成编码
handleAutoGenChange
(
autoGenFlag
)
{
if
(
autoGenFlag
)
{
genCode
(
"BRAND_CODE"
).
then
((
response
)
=>
{
this
.
form
.
brandCode
=
response
;
});
}
else
{
this
.
form
.
brandCode
=
null
;
}
},
},
};
</
script
>
\ No newline at end of file
src/views/mes/md/brand/index.vue
deleted
100644 → 0
View file @
18fc74c9
<
template
>
<div
class=
"app-container"
>
<el-form
:model=
"queryParams"
ref=
"queryForm"
size=
"small"
:inline=
"true"
v-show=
"showSearch"
label-width=
"100px"
>
<el-form-item
label=
"品牌编码"
prop=
"brandCode"
>
<el-input
v-model=
"queryParams.brandCode"
placeholder=
"请输入品牌编码"
clearable
@
keyup
.
enter
.
native=
"handleQuery"
/>
</el-form-item>
<el-form-item
label=
"品牌名称"
prop=
"brandName"
>
<el-input
v-model=
"queryParams.brandName"
placeholder=
"请输入品牌名称"
clearable
@
keyup
.
enter
.
native=
"handleQuery"
/>
</el-form-item>
<el-form-item
label=
"集团"
prop=
"groupName"
>
<el-input
v-model=
"queryParams.groupName"
placeholder=
"请输入集团"
clearable
@
keyup
.
enter
.
native=
"handleQuery"
/>
</el-form-item>
<el-form-item
label=
"是否启用"
prop=
"enableFlag"
>
<el-select
v-model=
"queryParams.enableFlag"
placeholder=
"是否启用"
clearable
style=
"width: 215px"
>
<el-option
v-for=
"dict in dict.type.sys_yes_no"
:key=
"dict.value"
:label=
"dict.label"
:value=
"dict.value"
/>
</el-select>
</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=
"['mes:md:brand: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=
"['mes:md:brand: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=
"['mes:md:brand: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=
"['mes:md:brand:export']"
>
导出
</el-button
>
</el-col>
<right-toolbar
:showSearch
.
sync=
"showSearch"
@
queryTable=
"getList"
></right-toolbar>
</el-row>
<el-table
v-loading=
"loading"
:data=
"brandList"
@
selection-change=
"handleSelectionChange"
>
<el-table-column
type=
"selection"
width=
"55"
align=
"center"
/>
<el-table-column
label=
"品牌编码"
align=
"center"
prop=
"brandCode"
>
<template
slot-scope=
"scope"
>
<el-button
type=
"text"
@
click=
"handleView(scope.row)"
v-hasPermi=
"['mes:md:brand:query']"
>
{{
scope
.
row
.
brandCode
}}
</el-button
>
</
template
>
</el-table-column>
<el-table-column
label=
"品牌名称"
align=
"center"
prop=
"brandName"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"集团"
align=
"center"
prop=
"groupName"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"地址"
align=
"center"
prop=
"address"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"销售对接人"
align=
"center"
prop=
"salesContact"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"开发对接人"
align=
"center"
prop=
"devContact"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"品牌背景"
align=
"center"
prop=
"background"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"经营范围"
align=
"center"
prop=
"scope"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"潜力项目"
align=
"center"
prop=
"potentialProject"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"廉洁规定"
align=
"center"
prop=
"integrityRegulations"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"是否启用"
align=
"center"
prop=
"enableFlag"
>
<
template
slot-scope=
"scope"
>
<dict-tag
:options=
"dict.type.sys_yes_no"
:value=
"scope.row.enableFlag"
/>
</
template
>
</el-table-column>
<el-table-column
label=
"备注"
align=
"center"
prop=
"remark"
:show-overflow-tooltip=
"true"
/>
<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=
"['mes:md:brand:edit']"
>
修改
</el-button
>
<el-button
size=
"mini"
type=
"text"
icon=
"el-icon-delete"
@
click=
"handleDelete(scope.row)"
v-hasPermi=
"['mes:md:brand: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=
"100px"
>
<el-row>
<el-col
:span=
"8"
>
<el-form-item
label=
"品牌编码"
prop=
"brandCode"
>
<el-input
v-model=
"form.brandCode"
placeholder=
"请输入品牌编码"
/>
</el-form-item>
</el-col>
<el-col
:span=
"3"
>
<el-form-item
label-width=
"80"
>
<el-switch
v-model=
"autoGenFlag"
active-color=
"#13ce66"
active-text=
"自动生成"
@
change=
"handleAutoGenChange(autoGenFlag)"
v-if=
"optType != 'view'"
>
</el-switch>
</el-form-item>
</el-col>
<el-col
:span=
"7"
>
<el-form-item
label=
"品牌名称"
prop=
"brandName"
>
<el-input
v-model=
"form.brandName"
placeholder=
"请输入品牌名称"
/>
</el-form-item>
</el-col>
<el-col
:span=
"6"
>
<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-col
:span=
"8"
>
<el-form-item
label=
"集团"
prop=
"groupName"
>
<el-input
v-model=
"form.groupName"
placeholder=
"请输入所属集团名称"
/>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"销售对接人"
prop=
"salesContact"
>
<el-input
v-model=
"form.salesContact"
placeholder=
"请输入销售对接人"
/>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"开发对接人"
prop=
"devContact"
>
<el-input
v-model=
"form.devContact"
placeholder=
"请输入开发对接人"
/>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col
:span=
"24"
>
<el-form-item
label=
"地址"
prop=
"address"
>
<el-input
v-model=
"form.address"
placeholder=
"请输入地址"
/>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col
:span=
"24"
>
<el-form-item
label=
"品牌背景"
prop=
"background"
>
<el-input
v-model=
"form.background"
placeholder=
"请输入品牌背景"
/>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col
:span=
"24"
>
<el-form-item
label=
"经营范围"
prop=
"scope"
>
<el-input
v-model=
"form.scope"
placeholder=
"请输入经营范围"
/>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col
:span=
"24"
>
<el-form-item
label=
"潜力项目"
prop=
"potentialProject"
>
<el-input
v-model=
"form.potentialProject"
placeholder=
"请输入潜力项目"
/>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col
:span=
"24"
>
<el-form-item
label=
"廉洁规定"
prop=
"integrityRegulations"
>
<el-input
v-model=
"form.integrityRegulations"
placeholder=
"请输入廉洁规定"
/>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col
:span=
"24"
>
<el-form-item
label=
"备注"
prop=
"remark"
>
<el-input
v-model=
"form.remark"
type=
"textarea"
placeholder=
"请输入内容"
/>
</el-form-item>
</el-col>
</el-row>
</el-form>
<div
slot=
"footer"
class=
"dialog-footer"
>
<el-button
type=
"primary"
@
click=
"cancel"
v-if=
"optType == 'view'"
>
返回
</el-button
>
<el-button
type=
"primary"
@
click=
"submitForm"
v-else
>
确 定
</el-button>
<el-button
@
click=
"cancel"
>
取 消
</el-button>
</div>
</el-dialog>
</div>
</template>
<
script
>
import
{
listBrand
,
getBrand
,
delBrand
,
addBrand
,
updateBrand
,
}
from
"@/api/mes/md/brand"
;
import
{
genCode
}
from
"@/api/system/autocode/rule"
;
export
default
{
name
:
"Brand"
,
dicts
:
[
"sys_yes_no"
],
data
()
{
return
{
//自动生成编码
autoGenFlag
:
false
,
optType
:
undefined
,
// 遮罩层
loading
:
true
,
// 选中数组
ids
:
[],
// 非单个禁用
single
:
true
,
// 非多个禁用
multiple
:
true
,
// 显示搜索条件
showSearch
:
true
,
// 总条数
total
:
0
,
// 生产工序表格数据
UsageList
:
[],
// 弹出层标题
title
:
""
,
// 是否显示弹出层
open
:
false
,
// 查询参数
queryParams
:
{
pageNum
:
1
,
pageSize
:
10
,
brandCode
:
null
,
brandName
:
null
,
groupName
:
null
,
enableFlag
:
null
,
},
// 表单参数
form
:
{},
brandList
:
[],
// 表单校验
rules
:
{
brandCode
:
[
{
required
:
true
,
message
:
"品牌编码不能为空"
,
trigger
:
"blur"
},
],
brandName
:
[
{
required
:
true
,
message
:
"品牌名称不能为空"
,
trigger
:
"blur"
},
],
groupName
:
[
{
required
:
true
,
message
:
"集团不能为空"
,
trigger
:
"blur"
},
],
enableFlag
:
[
{
required
:
true
,
message
:
"是否启用不能为空"
,
trigger
:
"blur"
},
],
},
};
},
created
()
{
this
.
getList
();
},
methods
:
{
/** 查询品牌列表 */
getList
()
{
this
.
loading
=
true
;
listBrand
(
this
.
queryParams
).
then
((
response
)
=>
{
this
.
brandList
=
response
.
rows
;
this
.
total
=
response
.
total
;
this
.
loading
=
false
;
});
},
// 取消按钮
cancel
()
{
this
.
open
=
false
;
this
.
reset
();
},
// 表单重置
reset
()
{
this
.
form
=
{
brandId
:
null
,
brandCode
:
null
,
brandName
:
null
,
groupName
:
null
,
address
:
null
,
salesContact
:
null
,
devContact
:
null
,
background
:
null
,
scope
:
null
,
potentialProject
:
null
,
integrityRegulations
:
null
,
enableFlag
:
"Y"
,
remark
:
null
,
createBy
:
null
,
createTime
:
null
,
updateBy
:
null
,
updateTime
:
null
,
};
this
.
autoGenFlag
=
false
;
this
.
resetForm
(
"form"
);
},
/** 搜索按钮操作 */
handleQuery
()
{
this
.
queryParams
.
pageNum
=
1
;
this
.
getList
();
},
/** 重置按钮操作 */
resetQuery
()
{
this
.
resetForm
(
"queryForm"
);
this
.
handleQuery
();
},
// 多选框选中数据
handleSelectionChange
(
selection
)
{
this
.
ids
=
selection
.
map
((
item
)
=>
item
.
brandId
);
this
.
single
=
selection
.
length
!==
1
;
this
.
multiple
=
!
selection
.
length
;
},
/** 新增按钮操作 */
handleAdd
()
{
this
.
reset
();
this
.
open
=
true
;
this
.
title
=
"添加品牌"
;
this
.
optType
=
"add"
;
},
// 查询明细按钮操作
handleView
(
row
)
{
this
.
reset
();
const
brandId
=
row
.
brandId
||
this
.
ids
;
getBrand
(
brandId
).
then
((
response
)
=>
{
this
.
form
=
response
.
data
;
this
.
open
=
true
;
this
.
title
=
"查看品牌信息"
;
this
.
optType
=
"view"
;
});
},
/** 修改按钮操作 */
handleUpdate
(
row
)
{
this
.
reset
();
const
brandId
=
row
.
brandId
||
this
.
ids
;
getBrand
(
brandId
).
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
.
brandId
!=
null
)
{
updateBrand
(
this
.
form
).
then
((
response
)
=>
{
this
.
$modal
.
msgSuccess
(
"修改成功"
);
this
.
open
=
false
;
this
.
getList
();
});
}
else
{
addBrand
(
this
.
form
).
then
((
response
)
=>
{
this
.
$modal
.
msgSuccess
(
"新增成功"
);
this
.
open
=
false
;
this
.
getList
();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete
()
{
const
brandIds
=
this
.
ids
.
join
(
","
);
console
.
log
(
brandIds
);
this
.
$modal
.
confirm
(
"是否确认删除品牌?"
)
.
then
(
function
()
{
return
delBrand
(
brandIds
);
})
.
then
(()
=>
{
this
.
getList
();
this
.
$modal
.
msgSuccess
(
"删除成功"
);
})
.
catch
(()
=>
{});
},
/** 导出按钮操作 */
handleExport
()
{
this
.
download
(
"mes/md/brand/export"
,
{
...
this
.
queryParams
,
},
`usage_
${
new
Date
().
getTime
()}
.xlsx`
);
},
//自动生成编码
handleAutoGenChange
(
autoGenFlag
)
{
if
(
autoGenFlag
)
{
genCode
(
"BRAND_CODE"
).
then
((
response
)
=>
{
this
.
form
.
brandCode
=
response
;
});
}
else
{
this
.
form
.
brandCode
=
null
;
}
},
},
};
</
script
>
src/views/mes/md/
quantity/index
.vue
→
src/views/mes/md/
brand/quantity
.vue
View file @
d3fbe43a
...
...
@@ -130,7 +130,7 @@
@
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>
...
...
@@ -274,7 +274,7 @@
// 表单重置
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
};
brandOrderQuantityId
:
null
,
brandId
:
null
,
brandName
:
null
,
time
:
null
,
region
:
null
,
orderQuantity
:
null
,
enableFlag
:
null
,
remark
:
null
,
createBy
:
null
,
createTime
:
null
,
updateBy
:
null
,
updateTime
:
null
};
this
.
resetForm
(
"form"
);
},
/** 搜索按钮操作 */
...
...
@@ -297,7 +297,7 @@
handleAdd
()
{
this
.
reset
();
this
.
open
=
true
;
this
.
title
=
"添加
【请填写功能名称】
"
;
this
.
title
=
"添加
订单量信息
"
;
},
/** 修改按钮操作 */
handleUpdate
(
row
)
{
...
...
src/views/mes/md/
visit/index
.vue
→
src/views/mes/md/
brand/visit
.vue
View file @
d3fbe43a
...
...
@@ -296,7 +296,7 @@ export default {
// 表单重置
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
}
;
brandVisitId
:
null
,
brandId
:
null
,
brandName
:
null
,
contactName
:
null
,
visitPerson
:
null
,
visitTime
:
null
,
visitSummary
:
null
,
enableFlag
:
null
,
remark
:
null
,
createBy
:
null
,
createTime
:
null
,
updateBy
:
null
,
updateTime
:
null
}
;
this
.
resetForm
(
"form"
);
}
,
/** 搜索按钮操作 */
...
...
@@ -319,7 +319,7 @@ export default {
handleAdd
()
{
this
.
reset
();
this
.
open
=
true
;
this
.
title
=
"添加
【请填写功能名称】
"
;
this
.
title
=
"添加
品牌访问信息
"
;
this
.
optType
=
"add"
;
}
,
/** 修改按钮操作 */
...
...
@@ -329,7 +329,7 @@ export default {
getVisit
(
brandVisitId
).
then
(
response
=>
{
this
.
form
=
response
.
data
;
this
.
open
=
true
;
this
.
title
=
"修改
【请填写功能名称】
"
;
this
.
title
=
"修改
品牌访问信息
"
;
this
.
optType
=
"edit"
;
}
);
}
,
...
...
@@ -357,7 +357,7 @@ export default {
/** 删除按钮操作 */
handleDelete
(
row
)
{
const
brandVisitIds
=
row
.
brandVisitId
||
this
.
ids
;
this
.
$modal
.
confirm
(
'是否确认删除
【请填写功能名称】
编号为"'
+
brandVisitIds
+
'"的数据项?'
).
then
(
function
()
{
this
.
$modal
.
confirm
(
'是否确认删除
品牌访问
编号为"'
+
brandVisitIds
+
'"的数据项?'
).
then
(
function
()
{
return
delVisit
(
brandVisitIds
);
}
).
then
(()
=>
{
this
.
getList
();
...
...
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