Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Z
zhichan
Overview
Overview
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
蒋勇
zhichan
Commits
118f77e8
Commit
118f77e8
authored
Jan 07, 2020
by
尹亚亭
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make selftmreg
parent
59aee7a0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
8 deletions
+33
-8
channel-access/src/views/pages/selftmreg/ApplicationInfo.vue
+4
-2
channel-access/src/views/pages/selftmreg/ModifyTrademark.vue
+29
-6
No files found.
channel-access/src/views/pages/selftmreg/ApplicationInfo.vue
View file @
118f77e8
<!-- 第二步:填写申请人信息 -->
<!-- 第二步:填写申请人信息 -->
<
template
>
<
template
>
<div
class=
"infomation"
>
<div
class=
"infomation"
>
<!-- 申请人信息 -->
<!--
标题:
申请人信息 -->
<div
class=
"info-title"
>
<div
class=
"info-title"
>
<i
class=
"selftmreg_shuxian"
></i>
<i
class=
"selftmreg_shuxian"
></i>
<h4>
填写申请人信息
</h4>
<h4>
填写申请人信息
</h4>
</div>
</div>
<!-- 申请人信息 -->
<div
class=
"applicantInfo"
>
<div
class=
"applicantInfo"
>
<el-form
<el-form
:model=
"ruleForm"
:model=
"ruleForm"
...
@@ -101,6 +101,7 @@
...
@@ -101,6 +101,7 @@
</div>
</div>
</el-form>
</el-form>
</div>
</div>
<!-- 订单联系人 -->
<!-- 订单联系人 -->
<div
class=
"info-title"
>
<div
class=
"info-title"
>
<i
class=
"selftmreg_shuxian"
></i>
<i
class=
"selftmreg_shuxian"
></i>
...
@@ -376,6 +377,7 @@ export default {
...
@@ -376,6 +377,7 @@ export default {
}
}
}
}
}
}
/* 订单联系人 */
/* 订单联系人 */
.orderContact
{
.orderContact
{
width
:
100%
;
width
:
100%
;
...
...
channel-access/src/views/pages/selftmreg/ModifyTrademark.vue
View file @
118f77e8
...
@@ -141,14 +141,16 @@
...
@@ -141,14 +141,16 @@
<div
class=
"classTrademark-right"
>
<div
class=
"classTrademark-right"
>
<div
class=
"classTrademark-right-top"
>
<div
class=
"classTrademark-right-top"
>
<p>
已选择的商品/服务项
</p>
<p>
已选择的商品/服务项
</p>
<span
class=
"el-icon-delete"
>
清除全部
</span>
<span
class=
"el-icon-delete"
@
click=
"deleteClassData()"
>
清除全部
</span
>
</div>
</div>
<div
class=
"classTrademark-right-main"
>
<div
class=
"classTrademark-right-main"
>
<div
class=
"notData"
v-if=
"classDataList.length == 0"
>
<div
class=
"notData"
v-if=
"classDataList.length == 0"
>
<img
src=
"@/assets/imgs/kong-2.png"
alt
/>
<img
src=
"@/assets/imgs/kong-2.png"
alt
/>
<span>
请点击左侧选择商标类别
</span>
<span>
请点击左侧选择商标类别
</span>
</div>
</div>
<div
class=
"classData"
>
<div
class=
"classData"
v-else
>
<div
class=
"classData-top"
>
<div
class=
"classData-top"
>
<h4>
第02类 颜料油漆
</h4>
<h4>
第02类 颜料油漆
</h4>
<p>
<p>
...
@@ -270,6 +272,7 @@ export default {
...
@@ -270,6 +272,7 @@ export default {
};
};
},
},
methods
:
{
methods
:
{
// 抽屉展示
lookImg
(
title
,
index
)
{
lookImg
(
title
,
index
)
{
this
.
drawerTitle
=
title
;
this
.
drawerTitle
=
title
;
this
.
lookIndex
=
index
;
this
.
lookIndex
=
index
;
...
@@ -279,18 +282,38 @@ export default {
...
@@ -279,18 +282,38 @@ export default {
handleClose
(
tag
)
{
handleClose
(
tag
)
{
console
.
log
(
tag
);
console
.
log
(
tag
);
this
.
classDataList
.
splice
(
this
.
classDataList
.
indexOf
(
tag
),
1
);
this
.
classDataList
.
splice
(
this
.
classDataList
.
indexOf
(
tag
),
1
);
},
deleteClassData
()
{
this
.
$confirm
(
"确定清空所有已选商品/服务项吗?"
,
"提示"
,
{
confirmButtonText
:
"确定"
,
cancelButtonText
:
"取消"
,
type
:
"warning"
})
.
then
(()
=>
{
this
.
classDataList
=
[];
this
.
$message
({
type
:
"success"
,
message
:
"删除成功!"
});
})
.
catch
(()
=>
{
this
.
$message
({
type
:
"info"
,
message
:
"已取消删除"
});
});
}
}
},
},
mounted
()
{
mounted
()
{
// getJdbycdetailtmData().then(res => {
getJdbycdetailtmData
().
then
(
res
=>
{
// // 请求数据并装填到datalist里面
console
.
log
(
res
.
data
);
// this.dataList = res.data.data;
});
// });
}
}
};
};
</
script
>
</
script
>
<
style
lang=
"scss"
>
<
style
lang=
"scss"
>
//
基本信息填写
.modifyTrademark
{
.modifyTrademark
{
width
:
100%
;
width
:
100%
;
.el-drawer__container
{
.el-drawer__container
{
...
...
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