76 lines
1.8 KiB
Vue
76 lines
1.8 KiB
Vue
<!--本文件由FirstUI授权予新疆天衡创新研究院有限公司(手机号: 1 8614 0 7 2 54 9,身份证尾号:5A07X5)专用,请尊重知识产权,勿私下传播,违者追究法律责任。-->
|
||
<template>
|
||
<view class="fui-wrap">
|
||
<view class="fui-page__hd">
|
||
<view class="fui-page__title fui-align__center" @tap="vip">Drag <image
|
||
src="/static/images/index/light/icon_member_3x.png"></image>
|
||
</view>
|
||
<view class="fui-page__desc">Drag 拖拽排序,通过拖动列表元素以此来达到对数据的重新排列。长按列表开启拖拽。</view>
|
||
</view>
|
||
<view class="fui-page__bd">
|
||
<fui-drag :width="720" :itemList="itemList" :columns="4" square :styles="styles" @end="end"></fui-drag>
|
||
</view>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
export default {
|
||
data() {
|
||
return {
|
||
itemList: [{
|
||
id: 1,
|
||
src: '/static/images/common/logo.png'
|
||
}, {
|
||
id: 2,
|
||
src: '/static/images/common/img_logo.png'
|
||
}, {
|
||
id: 3,
|
||
src: '/static/images/qrcode/h5_qrcode.png'
|
||
}, {
|
||
id: 4,
|
||
src: '/static/images/qrcode/toutiao_qrcode.png'
|
||
}, {
|
||
id: 5,
|
||
src: '/static/images/qrcode/qq_qrcode.jpg'
|
||
}, {
|
||
id: 6,
|
||
src: '/static/images/qrcode/wx_qrcode.jpg'
|
||
}, {
|
||
id: 7,
|
||
src: '/static/images/qrcode/baidu_qrcode.png'
|
||
}, {
|
||
id: 8,
|
||
src: '/static/images/qrcode/ali_qrcode.png'
|
||
}, {
|
||
id: 9,
|
||
src: '/static/images/common/logo.png'
|
||
}, {
|
||
id: 10,
|
||
src: '/static/images/common/img_logo.png'
|
||
}],
|
||
styles: {
|
||
padding: 4
|
||
}
|
||
|
||
}
|
||
},
|
||
methods: {
|
||
vip() {
|
||
this.fui.href("/pages/my/qa/qa?index=2&title=VIP专属内容")
|
||
},
|
||
end(e){
|
||
//排序后列表
|
||
console.log(e.itemList)
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style>
|
||
.fui-page__bd {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
flex-direction: column;
|
||
}
|
||
</style> |