Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mallapp
Project
Project
Details
Activity
Releases
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
viitto
mallapp
Commits
bde7954a
Commit
bde7954a
authored
Feb 25, 2021
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
a4f7a6d3
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
168 additions
and
7 deletions
+168
-7
pages.json
pages.json
+2
-0
fat.vue
pages/kotra/fat.vue
+1
-1
investmentDetail.vue
pages/kotra/investmentDetail.vue
+1
-1
procurementDetail.vue
pages/kotra/procurementDetail.vue
+1
-1
zixunList.vue
pages/kotra/zixunList.vue
+163
-4
No files found.
pages.json
View file @
bde7954a
...
...
@@ -591,6 +591,8 @@
"path"
:
"investmentDetail"
//投资详情
},{
"path"
:
"activityList"
//我的活动
},{
"path"
:
"zixunDetail"
//咨询详情
}]
}
],
"globalStyle"
:
{
...
...
pages/kotra/fat.vue
View file @
bde7954a
...
...
@@ -7,7 +7,7 @@
.fatContent
.compInfoList
{
width
:
100%
;
display
:
flex
;
height
:
6
0px
;
height
:
5
0px
;
align-items
:
center
;
padding
:
0
20px
;
border-bottom
:
1px
solid
#F2F3F6
;
...
...
pages/kotra/investmentDetail.vue
View file @
bde7954a
...
...
@@ -14,7 +14,7 @@
.proDeList
{
display
:
flex
;
width
:
100%
;
border-bottom
:
1px
solid
#
E9E9E9
;
border-bottom
:
1px
solid
#
F2F3F6
;
height
:
50px
;
font-size
:
14px
;
align-items
:
center
;
...
...
pages/kotra/procurementDetail.vue
View file @
bde7954a
...
...
@@ -14,7 +14,7 @@
.proDeList
{
display
:
flex
;
width
:
100%
;
border-bottom
:
1px
solid
#
E9E9E9
;
border-bottom
:
1px
solid
#
F2F3F6
;
height
:
50px
;
font-size
:
14px
;
align-items
:
center
;
...
...
pages/kotra/zixunList.vue
View file @
bde7954a
<
style
>
.activityList
{
background-color
:
#F3F5F7
;
padding
:
15px
;
}
.activityList
.activeList
{
background-color
:
#fff
;
margin-bottom
:
15px
;
padding
:
15px
;
}
.activityList
.activeTop
{
display
:
flex
;
justify-content
:
space-between
;
align-items
:
center
;
}
.activityList
.zixunLeftTitle
{
color
:
#111111
;
font-size
:
14px
;
font-weight
:
bold
;
overflow
:
hidden
;
white-space
:
nowrap
;
text-overflow
:
ellipsis
;
}
.activityList
.activeBtm
{
display
:
flex
;
margin-top
:
10px
;
font-size
:
12px
;
color
:
#B9B9B9
;
justify-content
:
space-between
;
}
.zixunComLeft
{
display
:
inline-block
;
width
:
60px
;
text-align
:
right
;
flex-shrink
:
0
;
}
.zixunMainList
{
display
:
flex
;
width
:
50%
;
}
.zixunRight
{
width
:
100%
;
overflow
:
hidden
;
white-space
:
nowrap
;
text-overflow
:
ellipsis
;
}
</
style
>
<
template
>
<view
class=
"activityList"
style=
"height:100vh;"
>
<u-empty
v-if=
"dataList.length==0"
text=
"暂无数据"
mode=
"data"
></u-empty>
<scroll-view
v-else
:scroll-y=
"true"
:enable-back-to-top=
"true"
:enable-flex=
"true"
@
scrolltolower=
"lower"
:style=
"
{ 'height': `calc(100%)`}">
<view>
<view
class=
"activeList"
v-for=
"(item,index) in dataList"
:key=
"index"
@
click=
"goZixunDetail(item)"
>
<view
class=
"activeTop"
>
<view
class=
"zixunLeftTitle"
>
{{
item
.
FatQuestion
}}
</view>
<view>
<image
style=
"width:20px;height:20px;"
src=
"https://viitto-1301420277.cos.ap-chengdu.myqcloud.com/Static/arrow_right.png"
mode=
""
></image>
</view>
</view>
<view
class=
"activeBtm"
>
<view
class=
"zixunMainList"
>
<view
class=
"zixunComLeft"
>
公司名称:
</view>
<view
class=
"zixunRight"
>
{{
item
.
CompanyName
}}
</view>
</view>
<view
class=
"zixunMainList"
>
<view
class=
"zixunComLeft"
>
海关编码:
</view>
<view
class=
"zixunRight"
>
{{
item
.
FatCode
}}
</view>
</view>
</view>
<view
class=
"activeBtm"
>
<view
class=
"zixunMainList"
>
<view
class=
"zixunComLeft"
>
联系人:
</view>
<view
class=
"zixunRight"
>
{{
item
.
Principal
}}
</view>
</view>
<view
class=
"zixunMainList"
>
<view
class=
"zixunComLeft"
>
联系电话:
</view>
<view
class=
"zixunRight"
>
{{
item
.
Mobile
}}
</view>
</view>
</view>
<view
class=
"activeBtm"
>
<view
class=
"zixunMainList"
>
<view
class=
"zixunComLeft"
>
邮箱:
</view>
<view
class=
"zixunRight"
>
{{
item
.
EMail
}}
</view>
</view>
<view
class=
"zixunMainList"
>
<view
class=
"zixunComLeft"
>
咨询标题:
</view>
<view
class=
"zixunRight"
>
{{
item
.
FatTitle
}}
</view>
</view>
</view>
</view>
</view>
<view
style=
"padding:10px 0;"
>
<u-loadmore
:status=
"status"
:load-text=
"loadText"
bg-color=
"#F3F5F7"
:font-size=
"24"
:margin-top=
"0"
:margin-bottom=
"0"
/>
</view>
</scroll-view>
</view>
</
template
>
<
script
>
export
default
{
data
()
{
return
{
pageTitle
:
'咨询信息'
,
qmsg
:
{
pageIndex
:
1
,
pageSize
:
10
},
pageCount
:
1
,
dataList
:
[],
loadText
:
{
loadmore
:
"轻轻上拉,加载更多"
,
loading
:
"努力加载中"
,
nomore
:
"没有更多了"
,
},
status
:
''
,
}
},
created
()
{},
mounted
()
{
uni
.
setNavigationBarTitle
({
title
:
this
.
pageTitle
,
});
},
onLoad
(
option
)
{
this
.
getList
(
1
);
},
methods
:
{
getList
(
num
)
{
if
(
num
==
1
)
{
this
.
dataList
=
[];
}
this
.
request2
({
url
:
"/api/AppletTrade/GetCommerceAskPage"
,
data
:
this
.
qmsg
,
},
(
res
)
=>
{
if
(
res
.
resultCode
==
1
)
{
this
.
dataList
=
res
.
data
.
pageData
;
this
.
pageCount
=
res
.
data
.
pageCount
;
console
.
log
(
res
,
'咨询数据'
);
}
}
);
},
//滚动加载
lower
(
e
)
{
if
(
this
.
msg
.
pageIndex
<
this
.
pageCount
)
{
this
.
msg
.
pageIndex
++
;
this
.
status
=
"loading"
;
this
.
getList
();
}
else
{
this
.
status
=
"nomore"
;
}
},
//跳转至活动详情
goZixunDetail
(
item
){
uni
.
navigateTo
({
url
:
'/pages/kotra/zixunDetail?Id='
+
item
.
Id
,
});
}
}
}
</
script
>
<
style
>
</
style
>
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