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
b2f4df12
Commit
b2f4df12
authored
Jan 02, 2020
by
刘泽奇
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
123
parent
686bab32
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
66 additions
and
18 deletions
+66
-18
igirl-channel-web/app/front/entry/public/css/pagecom.css
+0
-0
igirl-channel-web/app/front/entry/public/js/index.js
+3
-2
igirl-channel-web/app/front/vues/pages/OAjdlist/OAjdlist.html
+1
-1
igirl-channel-web/app/front/vues/pages/companydetail/companydetail.css
+4
-1
igirl-channel-web/app/front/vues/pages/companydetail/companydetail.html
+0
-0
igirl-channel-web/app/front/vues/pages/companydetail/companydetail.js
+43
-2
igirl-channel-web/app/front/vues/pages/jdindentdetail/jdindentdetail.html
+4
-5
igirl-channel-web/app/front/vues/pages/jdindentlist/jdindentlist.css
+4
-1
igirl-channel-web/app/front/vues/pages/jdindentlist/jdindentlist.html
+7
-6
No files found.
igirl-channel-web/app/front/entry/public/css/pagecom.css
View file @
b2f4df12
This source diff could not be displayed because it is too large. You can
view the blob
instead.
igirl-channel-web/app/front/entry/public/js/index.js
View file @
b2f4df12
...
...
@@ -218,10 +218,11 @@ axios.get("/web/common/metaCtl/getRouteConfig").then(d => {
var
jdindentdetail
=
location
.
hash
.
includes
(
'/jdindentdetail'
);
var
OAjddetails
=
location
.
hash
.
includes
(
'/OAjddetails'
);
var
OAjdcompany
=
location
.
hash
.
includes
(
'/OAjdcompany'
);
if
(
OAjdlist
||
selftmreg
||
jdindentlist
||
jdindentdetail
||
OAjddetails
||
OAjdcompany
)
{
var
companydetail
=
location
.
hash
.
includes
(
'/companydetail'
);
if
(
OAjdlist
||
selftmreg
||
jdindentlist
||
jdindentdetail
||
OAjddetails
||
OAjdcompany
||
companydetail
)
{
this
.
selfFooterShow
=
false
;
}
if
(
OAjdlist
||
jdindentlist
||
jdindentdetail
||
OAjddetails
||
OAjdcompany
)
{
if
(
OAjdlist
||
jdindentlist
||
jdindentdetail
||
OAjddetails
||
OAjdcompany
||
companydetail
)
{
this
.
selfHeaderShow
=
false
;
}
break
;
...
...
igirl-channel-web/app/front/vues/pages/OAjdlist/OAjdlist.html
View file @
b2f4df12
...
...
@@ -399,7 +399,7 @@
</el-tab-pane>
<!-- channelFrom != \'gsbhome\' -->
<el-tab-pane
label=
"工商订单"
name=
"second"
v-if=
"0"
>
<div
class=
"jdindentlist"
>
<div
class=
"jdindentlist-inquire"
>
...
...
igirl-channel-web/app/front/vues/pages/companydetail/companydetail.css
View file @
b2f4df12
.companydetail-warpper
.jdindentdetail-main-step-row
>
div
{
min-height
:
0
;
}
.companydetail-warpper
{
width
:
1320px
;
margin
:
0
auto
;
}
.companydetail-warpper
>
.jdindentdetail
{
margin
:
0
auto
;
...
...
igirl-channel-web/app/front/vues/pages/companydetail/companydetail.html
View file @
b2f4df12
This diff is collapsed.
Click to expand it.
igirl-channel-web/app/front/vues/pages/companydetail/companydetail.js
View file @
b2f4df12
...
...
@@ -3,18 +3,59 @@
data
:
function
()
{
return
{
listPath
:
{
path
:
`/
${
this
.
$root
.
channelName
}
/jdindentlist`
,
query
:
{}
},
currentStep
:
1
,
companyData
:[],
currentStep
:
1
,
companyData
:
[],
channelFrom
:
null
,
user_Name
:
""
,
}
},
mounted
:
function
()
{
document
.
cookie
.
split
(
'; '
).
map
((
item
,
index
)
=>
{
if
(
item
.
includes
(
'pin='
))
{
this
.
user_Name
=
decodeURIComponent
(
item
.
substring
(
4
));
console
.
log
(
this
.
user_Name
,
"bbbbbbbbbbbbbbbbbbbbbbbb"
);
}
});
this
.
getChannelFrom
();
},
created
:
function
()
{
},
methods
:
{
getChannelFrom
(){
this
.
channelFrom
=
this
.
$root
.
getChannelPath
();
},
loginOut
(){
/*
var url = encodeURIComponent("http://tm.plus.jdcloud.com/#/jd/jdtrademark") ;
*/
/*
location.href = `http://login.jdcloud.com/logout?callback=http://tm.plus.jdcloud.com/#/jd/jdtrademark`;
*/
let
_this
=
this
;
$
.
ajax
({
async
:
true
,
url
:
"https://login.jdcloud.com/logout"
,
type
:
"GET"
,
dataType
:
"jsonp"
,
jsonp
:
'callback'
,
jsonpCallback
:
'handleResponse'
,
data
:
{
},
success
:
function
(
response
,
status
,
xhr
)
{
console
.
log
(
'状态为:'
+
status
+
',状态是:'
+
xhr
.
statusText
);
console
.
log
(
response
);
if
(
response
.
code
==
0
)
{
console
.
log
(
response
);
_this
.
$router
.
push
({
path
:
`/
${
_this
.
$root
.
channelName
}
/jdtrademark`
});
}
}
});
},
},
vname
:
"gsb-companydetail"
}
igirl-channel-web/app/front/vues/pages/jdindentdetail/jdindentdetail.html
View file @
b2f4df12
<div
class=
"wrapper-bg"
>
<div
class=
"jdindentdetail-warpper"
>
<div
class=
"jdindentlist-header"
v-if=
"channelFrom == \'jd\'"
>
<div
class=
"jdindentlist-header"
v-if=
"channelFrom == \'jd\'"
>
<div>
京东云PLUS工商、商标注册平台
</div>
<div
v-if=
"user_Name"
>
<span
v-if=
"user_Name"
><i
class=
"el-icon-user"
></i></span>
<span
v-if=
s
"user_Name"
><i
class=
"el-icon-user"
></i></span>
<span>
{{user_Name}}
</span>
<span
@
click=
"loginOut"
v-if=
"user_Name"
>
退出
</span>
</div>
...
...
@@ -17,6 +14,8 @@
line-height: 26px;"
>
免费注册
</a>
</div>
</div>
<div
class=
"jdindentdetail-warpper"
>
<div
class=
"jdindentdetail"
>
...
...
igirl-channel-web/app/front/vues/pages/jdindentlist/jdindentlist.css
View file @
b2f4df12
...
...
@@ -222,7 +222,10 @@
width
:
100%
;
height
:
100%
;
}
.jdindentlist-null
>
p
{
text-align
:
center
;
margin-top
:
10px
;
}
.jdindentlist-warpper
.demo-ruleForm
{
...
...
igirl-channel-web/app/front/vues/pages/jdindentlist/jdindentlist.html
View file @
b2f4df12
<div
class=
"jdindentlist-warpper"
>
<div
class=
"jdindentlist-header"
v-if=
"channelFrom == \'jd\'"
>
<div>
京东云PLUS工商、商标注册平台
</div>
...
...
@@ -82,11 +83,11 @@
</div>
</div>
<div
class=
"jdindentlist-null"
v-if=
"tableData.length == 0"
>
<div>
<img
src=
"/imgs/listnull.png"
alt=
""
>
</div>
<p>
很抱歉,没有查询到您要搜索的内容!您也可以减少筛选范围再尝试~
</p>
<div>
<img
src=
"/imgs/listnull.png"
alt=
""
>
</div>
<p>
很抱歉,没有查询到您要搜索的内容!您也可以减少筛选范围再尝试~
</p>
</div>
<div
class=
"jdindentlist-list"
v-else
>
<el-table
header-row-class-name=
"companydetail-name-header"
:data=
"tableData"
style=
"width: 100%"
>
<!-- <el-table-column prop="channelServiceNo" label="订单编号">
...
...
@@ -307,7 +308,7 @@
<div
v-if=
"toViewImgKey == 4"
class=
"toViewImg"
@
click=
"toViewImg(\'/imgs/sbzc/sfzD.png\')"
>
查看大图
</div>
</div>
</el-form-item>
<el-form-item
class=
"gsb_items"
>
<div
class=
"title special"
>
上传材料:代理委托书
...
...
@@ -399,7 +400,7 @@
</el-tab-pane>
<!-- channelFrom != \'gsbhome\' -->
<el-tab-pane
label=
"工商订单"
name=
"second"
v-if=
"0"
>
<div
class=
"jdindentlist"
>
<div
class=
"jdindentlist-inquire"
>
...
...
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