Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-app-operator-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
lanbaoming
jiedao-app-operator-master
Commits
e8d2a089
Commit
e8d2a089
authored
Jun 12, 2022
by
houjn@hikoon.cn
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.品牌与商标关系
parent
82aecd13
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
385 additions
and
0 deletions
+385
-0
productBrandEmpower.js
src/api/ecw/productBrandEmpower.js
+54
-0
dict.js
src/utils/dict.js
+2
-0
index.vue
src/views/ecw/productBrandEmpower/index.vue
+329
-0
No files found.
src/api/ecw/productBrandEmpower.js
0 → 100644
View file @
e8d2a089
import
request
from
'
@/utils/request
'
// 创建商品品牌授权
export
function
createProductBrandEmpower
(
data
)
{
return
request
({
url
:
'
/ecw/product-brand-empower/create
'
,
method
:
'
post
'
,
data
:
data
})
}
// 更新商品品牌授权
export
function
updateProductBrandEmpower
(
data
)
{
return
request
({
url
:
'
/ecw/product-brand-empower/update
'
,
method
:
'
put
'
,
data
:
data
})
}
// 删除商品品牌授权
export
function
deleteProductBrandEmpower
(
id
)
{
return
request
({
url
:
'
/ecw/product-brand-empower/delete?id=
'
+
id
,
method
:
'
delete
'
})
}
// 获得商品品牌授权
export
function
getProductBrandEmpower
(
id
)
{
return
request
({
url
:
'
/ecw/product-brand-empower/get?id=
'
+
id
,
method
:
'
get
'
})
}
// 获得商品品牌授权分页
export
function
getProductBrandEmpowerPage
(
query
)
{
return
request
({
url
:
'
/ecw/product-brand-empower/page
'
,
method
:
'
get
'
,
params
:
query
})
}
// 导出商品品牌授权 Excel
export
function
exportProductBrandEmpowerExcel
(
query
)
{
return
request
({
url
:
'
/ecw/product-brand-empower/export-excel
'
,
method
:
'
get
'
,
params
:
query
,
responseType
:
'
blob
'
})
}
src/utils/dict.js
View file @
e8d2a089
...
@@ -80,6 +80,8 @@ export const DICT_TYPE = {
...
@@ -80,6 +80,8 @@ export const DICT_TYPE = {
ECW_MESSAGE_LEAVE_STATUS
:
'
ecw_message_leave_status
'
,
ECW_MESSAGE_LEAVE_STATUS
:
'
ecw_message_leave_status
'
,
PWD_TYPE
:
'
pwd_type
'
,
PWD_TYPE
:
'
pwd_type
'
,
BRAND_REG_TYPE
:
'
brand_registry_type
'
,
BRAND_REG_TYPE
:
'
brand_registry_type
'
,
BRAND_AUTH_STATUS
:
'
brand_authorization_status
'
,
BRAND_CUSTOMER_CHARGING_MODEL
:
'
customer_charging_model
'
,
}
}
...
...
src/views/ecw/productBrandEmpower/index.vue
0 → 100644
View file @
e8d2a089
This diff is collapsed.
Click to expand it.
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