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
2dc42964
Commit
2dc42964
authored
Mar 11, 2020
by
刘泽奇
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
123
parent
86662d43
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
10 additions
and
9 deletions
+10
-9
igirl-channel-web/app/front/entry/public/css/pagecom.css
+0
-0
igirl-channel-web/app/front/entry/public/imgs/jdcloud/jdicbc/banner.png
+0
-0
igirl-channel-web/app/front/vues/pages/companydetail/companydetail.html
+0
-0
igirl-channel-web/app/front/vues/pages/icorder/icorder.html
+4
-4
igirl-channel-web/app/front/vues/pages/icorder/icorder.js
+2
-0
igirl-channel-web/app/front/vues/pages/jdindentlist/jdindentlist.css
+2
-0
igirl-channel-web/app/front/vues/pages/jdindentlist/jdindentlist.js
+1
-4
igirl-channel-web/app/front/vues/pages/jdindustry/jdindustry.html
+1
-1
No files found.
igirl-channel-web/app/front/entry/public/css/pagecom.css
View file @
2dc42964
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/imgs/jdcloud/jdicbc/banner.png
View file @
2dc42964
332 KB
|
W:
|
H:
275 KB
|
W:
|
H:
2-up
Swipe
Onion skin
igirl-channel-web/app/front/vues/pages/companydetail/companydetail.html
View file @
2dc42964
igirl-channel-web/app/front/vues/pages/icorder/icorder.html
View file @
2dc42964
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
<div
class=
"icorder-breadcrumb"
>
<div
class=
"icorder-breadcrumb"
>
<el-breadcrumb
separator-class=
"el-icon-arrow-right"
>
<el-breadcrumb
separator-class=
"el-icon-arrow-right"
>
<el-breadcrumb-item
:to=
"path"
>
公司注册
</el-breadcrumb-item>
<el-breadcrumb-item
:to=
"path"
>
公司注册
</el-breadcrumb-item>
<el-breadcrumb-item>
公司
域
名查询
</el-breadcrumb-item>
<el-breadcrumb-item>
公司
核
名查询
</el-breadcrumb-item>
</el-breadcrumb>
</el-breadcrumb>
</div>
</div>
<div
class=
"icorder-header"
>
<div
class=
"icorder-header"
>
...
@@ -46,10 +46,10 @@
...
@@ -46,10 +46,10 @@
</div>
</div>
</div>
</div>
<div
class=
"icorder-main-con1"
>
<div
class=
"icorder-main-con1"
>
<div
class=
"con1-title"
>
发现相同或相似名称企业 共有
<span>
0
</span>
个结果
</div>
<div
class=
"con1-title"
>
发现相同或相似名称企业 共有
<span>
{{count}}
</span>
个结果
</div>
<div
class=
"icorder-main-con1-anv"
>
<div
class=
"icorder-main-con1-anv"
>
<div
style=
"width:
399px
;float:left;"
>
企业名
</div>
<div
style=
"width:
50%
;float:left;"
>
企业名
</div>
<div
style=
"width:
240px
;float:right;"
>
相似度
</div>
<div
style=
"width:
50%
;float:right;"
>
相似度
</div>
</div>
</div>
<div
style=
"width:100%;display:flex;padding: 14px 0px;"
v-for=
"item in company.similarCityList"
<div
style=
"width:100%;display:flex;padding: 14px 0px;"
v-for=
"item in company.similarCityList"
v-if=
"company.similarCityList && company.similarCityList.length != 0"
>
v-if=
"company.similarCityList && company.similarCityList.length != 0"
>
...
...
igirl-channel-web/app/front/vues/pages/icorder/icorder.js
View file @
2dc42964
...
@@ -90,6 +90,7 @@
...
@@ -90,6 +90,7 @@
/** 判断返回数据是否有key值*/
/** 判断返回数据是否有key值*/
nuans
:
null
,
nuans
:
null
,
showBtm
:
false
,
showBtm
:
false
,
count
:
0
,
}
}
},
},
mounted
:
function
()
{
mounted
:
function
()
{
...
@@ -144,6 +145,7 @@
...
@@ -144,6 +145,7 @@
this_
.
nuans
=
Object
.
keys
(
d
.
data
).
length
;
this_
.
nuans
=
Object
.
keys
(
d
.
data
).
length
;
if
(
this_
.
nuans
>
0
)
{
if
(
this_
.
nuans
>
0
)
{
d
.
data
.
similarCityList
.
length
==
0
?
this_
.
showBtm
=
true
:
this_
.
showBtm
=
false
;
d
.
data
.
similarCityList
.
length
==
0
?
this_
.
showBtm
=
true
:
this_
.
showBtm
=
false
;
this_
.
count
=
d
.
data
.
similarCityList
.
length
;
}
}
}
}
...
...
igirl-channel-web/app/front/vues/pages/jdindentlist/jdindentlist.css
View file @
2dc42964
...
@@ -114,6 +114,7 @@
...
@@ -114,6 +114,7 @@
.jdindentlist-inquire
>
div
:nth-child
(
2
)
{
.jdindentlist-inquire
>
div
:nth-child
(
2
)
{
flex
:
1
;
flex
:
1
;
padding-top
:
66px
;
padding-top
:
66px
;
min-width
:
3%
;
}
}
.jdindentlist-inquire
>
div
:nth-child
(
2
)>
button
{
.jdindentlist-inquire
>
div
:nth-child
(
2
)>
button
{
...
@@ -307,6 +308,7 @@
...
@@ -307,6 +308,7 @@
.jdindentlist-icbc-warpper
.jdindentlist-inquire
.jdicbc-find
{
.jdindentlist-icbc-warpper
.jdindentlist-inquire
.jdicbc-find
{
padding-top
:
4px
;
padding-top
:
4px
;
min-width
:
3%
;
}
}
...
...
igirl-channel-web/app/front/vues/pages/jdindentlist/jdindentlist.js
View file @
2dc42964
...
@@ -473,10 +473,7 @@
...
@@ -473,10 +473,7 @@
value
:
''
,
value
:
''
,
label
:
'全部'
label
:
'全部'
},
},
{
value
:
'1'
,
label
:
'待付款'
},
{
{
value
:
'2'
,
value
:
'2'
,
label
:
'已付款'
label
:
'已付款'
...
...
igirl-channel-web/app/front/vues/pages/jdindustry/jdindustry.html
View file @
2dc42964
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
<div
class=
"jdtrademark"
>
<div
class=
"jdtrademark"
>
<div
class=
"jdicbc-banner"
:style=
"channelBanner"
>
<div
class=
"jdicbc-banner"
:style=
"channelBanner"
>
<div>
<div>
<div
style=
"
left:43px;
"
@
click=
"goIndentList"
>
我的订单
</div>
<div
style=
""
@
click=
"goIndentList"
>
我的订单
</div>
</div>
</div>
</div>
</div>
<div
class=
"jdtrademark-warpper"
>
<div
class=
"jdtrademark-warpper"
>
...
...
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