Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
U
uni-pdtravel
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
panyongping
uni-pdtravel
Commits
8e35f636
Commit
8e35f636
authored
Aug 20, 2021
by
cc_inu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
相册拖拽排序BUG处理
parent
ce564048
Changes
17
Hide whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
91 additions
and
70 deletions
+91
-70
App.vue
App.vue
+3
-3
pages.json
pages.json
+3
-3
index.vue
pages/index/index.vue
+5
-3
dragImg.vue
pages/vlog/components/dragImg/dragImg.vue
+53
-4
pictureFormat.vue
pages/vlog/pictureFormat/pictureFormat.vue
+27
-57
empty.png
static/images/empty/empty.png
+0
-0
delete.png
static/images/icon/delete.png
+0
-0
search.png
static/images/icon/search.png
+0
-0
shop-cart.png
static/images/icon/shop-cart.png
+0
-0
logo.png
static/images/logo.png
+0
-0
date.png
static/images/main/date.png
+0
-0
drag.png
static/images/main/drag.png
+0
-0
index-list.png
static/images/main/index-list.png
+0
-0
list.png
static/images/main/list.png
+0
-0
side-slip.png
static/images/main/side-slip.png
+0
-0
qrcode.jpeg
static/images/qrcode.jpeg
+0
-0
share.png
static/images/share.png
+0
-0
No files found.
App.vue
View file @
8e35f636
...
...
@@ -10,9 +10,9 @@
let
openid
=
uni
.
getStorageSync
(
"openid"
)
if
(
!
openid
&&
path
.
indexOf
(
"pages/ourPayment/ourPayment"
)
==-
1
){
//扫码支付页面不需要在此登录
setTimeout
(()
=>
{
//解决关联普通二维码扫码首次进入时一直显示登录中
uni
.
navigateTo
({
url
:
"/pages/login/login"
})
//
uni.navigateTo({
//
url: "/pages/login/login"
//
})
},
300
)
}
//#ifdef MP-ALIPAY
...
...
pages.json
View file @
8e35f636
...
...
@@ -211,12 +211,12 @@
"style"
:
{
"navigationBarTitleText"
:
"照片调整"
,
"enablePullDownRefresh"
:
false
"enablePullDownRefresh"
:
false
,
"navigationBarBackgroundColor"
:
"#ffffff"
,
"navigationBarTextStyle"
:
"black"
}
}
],
"globalStyle"
:
{
"navigationBarTextStyle"
:
"white"
,
...
...
pages/index/index.vue
View file @
8e35f636
<
template
>
<view
>
<!-- #ifdef MP-ALIPAY -->
<view
class=
"top"
>
<
!--
<
view
class=
"top"
>
<view
class=
"top-search"
>
</view>
<view
class=
"top-content"
>
...
...
@@ -63,11 +63,13 @@
<view
class=
"top-img"
>
</view>
</view>
</view>
-->
<!--#endif-->
<!--
<button
@
click=
"getUserInfo()"
>
授权获取头像昵称
</button>
-->
<view
class=
"bottom"
>
<navigator
url=
"../vlog/vlogIndex/vlogIndex"
>
<button
type=
"default"
>
vlog
</button>
</navigator>
<!--
<web-view
src=
"https://wx.pangdly.com"
></web-view>
-->
</view>
</view>
...
...
pages/vlog/components/dragImg/dragImg.vue
View file @
8e35f636
...
...
@@ -5,16 +5,26 @@
:class=
"['item', cur == index ? 'cur' : '', curZ == index ? 'zIndex' : '', itemTransition && index !== cur ? 'itemTransition' : '']"
v-for=
"(item, index) in list"
:key=
"index"
:id=
"'item' + index"
:data-key=
"item.key"
:data-index=
"index"
:style=
"
{ transform: `translate3d(${index === cur ? tranX : item.tranX}px, ${index === cur ? tranY : item.tranY}px, 0px)`, width: `${100 / columns}%` }"
@tap="itemClick(index)" @longpress="longPress" @touchmove.stop="touchMove" @touchend.stop="touchEnd">
@tap="itemClick(index
,item.data.images
)" @longpress="longPress" @touchmove.stop="touchMove" @touchend.stop="touchEnd">
<!-- start:请在该区域编写自己的渲染逻辑 -->
<view
class=
"info"
>
<view
class=
"info__item"
>
<image
class=
"image"
:src=
"item.data.images"
></image>
<image
class=
"image"
:src=
"item.data.images"
mode=
"widthFix"
></image>
</view>
<view
class=
"info__item_btn"
@
click
.
stop=
"replace(item.key)"
>
更换
</view>
</view>
<!-- end:请在该区域编写自己的渲染逻辑 -->
</view>
</view>
<u-popup
v-model=
"show"
mode=
"bottom"
height=
"50%"
>
<view
style=
"display: flex;flex-wrap: wrap;width: 100%;"
>
<view
style=
"width: 25%;padding: 10rpx;"
v-for=
"(item,index) in listData"
:key=
"index"
>
<image
:src=
"item.images"
style=
"width: 100%;"
mode=
"widthFix"
@
click=
"changeImglist(item.images)"
></image>
</view>
</view>
</u-popup>
</view>
</
template
>
...
...
@@ -34,6 +44,8 @@
},
data
()
{
return
{
alterKey
:
""
,
//点击更改图片的key
show
:
false
,
//照片图库弹出层
cur
:
-
1
,
// 当前激活的元素
curZ
:
-
1
,
// 当前激活的元素, 用于控制激活元素z轴显示
tranX
:
0
,
// 当前激活元素的 X轴 偏移量
...
...
@@ -56,6 +68,25 @@
this
.
init
()
},
methods
:
{
changeImglist
(
src
){
this
.
list
[
this
.
alterKey
].
data
.
images
=
src
this
.
alterKey
=
""
this
.
show
=
false
let
list
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
list
))
let
listData
=
[]
list
.
forEach
(
item
=>
{
listData
[
item
.
key
]
=
item
.
data
})
this
.
$emit
(
'change'
,
{
//给父组件传递数据
listData
:
listData
})
},
replace
(
key
){
//更换图片
this
.
show
=
true
this
.
alterKey
=
key
console
.
log
(
this
.
alterKey
);
},
init
()
{
// 空值判断, 避免获取不到节点信息报错问题
if
(
this
.
listData
.
length
==
0
)
{
...
...
@@ -315,7 +346,13 @@
},
0
)
},
//点击每一项后触发事件
itemClick
(
index
)
{
itemClick
(
index
,
src
)
{
let
urls
=
[]
urls
.
push
(
src
)
console
.
log
(
urls
);
uni
.
previewImage
({
urls
:
urls
,
})
let
item
=
this
.
list
[
index
]
this
.
$emit
(
'click'
,
{
oldKey
:
index
,
...
...
@@ -398,12 +435,24 @@
overflow
:
hidden
;
padding
:
10rpx
;
box-sizing
:
border-box
;
.image
{
width
:
100%
;
height
:
100%
;
}
}
&
__item_btn
{
height
:
50rpx
;
width
:
50rpx
;
position
:
absolute
;
right
:
12rpx
;
bottom
:
12rpx
;
background-color
:
rgba
(
$color
:
#000000
,
$alpha
:
0
.5
);
border-radius
:
10rpx
;
color
:
#fff
;
text-align
:
center
;
line-height
:
50rpx
;
font-size
:
20rpx
;
}
}
.cell
{
...
...
pages/vlog/pictureFormat/pictureFormat.vue
View file @
8e35f636
<
template
>
<view
class=
"content"
>
<view
class=
"title"
>
<u-icon
name=
"bell-fill"
color=
"#6C8EF3"
></u-icon><text
style=
"margin-left: 20rpx;"
>
提醒:长按拖拽排序
</text>
</view>
<view
class=
"top"
>
<dragImg
:listData=
"imgList"
@
change=
"changeImgList"
:columns=
"4"
@
click=
"clickItem"
></dragImg>
</view>
<view
class=
"bottom"
@
click=
"next"
>
下一步
</view>
</view>
</
template
>
...
...
@@ -43,62 +49,9 @@
},
{
images
:
'/static/images/swipe/10.png'
},
{
images
:
'/static/images/swipe/1.png'
},
{
images
:
'/static/images/swipe/2.png'
},
{
images
:
'/static/images/swipe/3.png'
},
{
images
:
'/static/images/swipe/4.png'
},
{
images
:
'/static/images/swipe/5.png'
},
{
images
:
'/static/images/swipe/6.png'
},
{
images
:
'/static/images/swipe/7.png'
},
{
images
:
'/static/images/swipe/8.png'
},
{
images
:
'/static/images/swipe/9.png'
},
{
images
:
'/static/images/swipe/10.png'
},
{
images
:
'/static/images/swipe/1.png'
},
{
images
:
'/static/images/swipe/2.png'
},
{
images
:
'/static/images/swipe/3.png'
},
{
images
:
'/static/images/swipe/4.png'
},
{
images
:
'/static/images/swipe/5.png'
},
{
images
:
'/static/images/swipe/6.png'
},
{
images
:
'/static/images/swipe/7.png'
},
{
images
:
'/static/images/swipe/8.png'
}
]
],
sortImglist
:[]
}
},
onLoad
()
{
//代替 vue 里面的 created
...
...
@@ -107,10 +60,14 @@
},
methods
:
{
changeImgList
(
res
)
{
console
.
log
(
res
);
this
.
sortImglist
=
res
console
.
log
(
this
.
sortImglist
);
},
clickItem
(
res
){
console
.
log
(
res
);
},
next
(){
//下一步
}
}
}
...
...
@@ -121,7 +78,20 @@
padding
:
0
20rpx
;
height
:
100%
;
width
:
100%
;
text-align
:
center
;
position
:
relative
;
.title
{
width
:
100%
;
height
:
50rpx
;
line-height
:
50rpx
;
color
:
#ABABAB
;
background-color
:
#fff
;
position
:
fixed
;
top
:
0
;
z-index
:
10
;
}
.top
{
margin-top
:
50rpx
;
border-top
:
1px
dashed
#ccc
;
margin-bottom
:
100rpx
;
}
.bottom
{
position
:
fixed
;
bottom
:
0
;
width
:
100%
;
height
:
100rpx
;
background-color
:
#FFE600
;
right
:
0
;
line-height
:
100rpx
;
font-size
:
32rpx
;
font-weight
:
bold
;
border-top-left-radius
:
10rpx
;
border-top-right-radius
:
10rpx
;
z-index
:
10
;
text-align
:
center
;}
}
</
style
>
static/images/empty/empty.png
deleted
100644 → 0
View file @
ce564048
8.58 KB
static/images/icon/delete.png
deleted
100644 → 0
View file @
ce564048
1.47 KB
static/images/icon/search.png
deleted
100644 → 0
View file @
ce564048
2.7 KB
static/images/icon/shop-cart.png
deleted
100644 → 0
View file @
ce564048
6.24 KB
static/images/logo.png
deleted
100644 → 0
View file @
ce564048
2.4 KB
static/images/main/date.png
deleted
100644 → 0
View file @
ce564048
2.26 KB
static/images/main/drag.png
deleted
100644 → 0
View file @
ce564048
3.69 KB
static/images/main/index-list.png
deleted
100644 → 0
View file @
ce564048
3.64 KB
static/images/main/list.png
deleted
100644 → 0
View file @
ce564048
2.82 KB
static/images/main/side-slip.png
deleted
100644 → 0
View file @
ce564048
2.66 KB
static/images/qrcode.jpeg
deleted
100644 → 0
View file @
ce564048
50.3 KB
static/images/share.png
deleted
100644 → 0
View file @
ce564048
4.87 KB
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