Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
FlashMan
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
华国豪
FlashMan
Commits
14265875
Commit
14265875
authored
Jul 04, 2019
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加跳转
parent
6095ee5e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
9 deletions
+9
-9
GroupList.js
pages/GroupTour/GroupList/GroupList.js
+8
-1
GroupList.wxml
pages/GroupTour/GroupList/GroupList.wxml
+1
-8
No files found.
pages/GroupTour/GroupList/GroupList.js
View file @
14265875
...
...
@@ -185,7 +185,6 @@ Page({
dataList
:
res
.
pageData
,
ScreenStatus
:
false
})
}).
catch
(
err
=>
{
})
},
//点击重置
...
...
@@ -212,6 +211,14 @@ Page({
})
this
.
onLoad
();
},
//跳转至详情
Godetail
(
e
)
{
console
.
log
(
e
);
let
item
=
e
.
currentTarget
.
dataset
;
wx
.
navigateTo
({
url
:
'/pages/GroupTour/GroupDetails/GroupDetails?idDes='
+
encodeURIComponent
(
item
.
id
)
+
"&tcid="
+
item
.
tcid
,
})
},
ScreenOpen
()
{
this
.
setData
({
ScreenStatus
:
true
,
...
...
pages/GroupTour/GroupList/GroupList.wxml
View file @
14265875
...
...
@@ -35,7 +35,7 @@
<view wx:for="{{startCityList}}" bindtap='getStartCity' data-id="{{item.id}}" data-index="{{index}}" wx:key="index" class="{{ckedStartCity==index?'ScrollActive':''}}">{{item.startCityName}}</view>
</scroll-view>
<!-- 列表数据 -->
<view class="ListItem" wx:for="{{dataList}}" wx:key="index">
<view class="ListItem" wx:for="{{dataList}}" wx:key="index"
data-id="{{item.id}}" data-tcid="{{item.tcid}}" bindtap='Godetail'
>
<view class="imgView">
<image src="{{item.newImgCover[0].Url}}"></image>
</view>
...
...
@@ -62,13 +62,6 @@
<!-- 筛选多条件 -->
<view bindtap='CloseScreen' data-target="self" class="screen" hidden="{{!ScreenStatus}}">
<view>
<!-- <view class="title">系列</view>
<view class="xl">
<text>本州 147升级版</text>
<text>希尔顿假期系列</text>
<text>希尔顿假期系列</text>
<text>小王子x列</text>
</view> -->
<view class="title">出发日期</view>
<view class="DatePicker">
<picker class="pcikerView" mode="date" value="{{date}}" data-type="{{1}}" bindchange="bindDateChange">
...
...
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