|
|
|
@ -1,15 +1,17 @@ |
|
|
|
<template> |
|
|
|
<view> |
|
|
|
<scroll-view scroll-y="true"> |
|
|
|
<view> |
|
|
|
<view |
|
|
|
:id="'cu-' + index" |
|
|
|
class="cu-item flex-col" |
|
|
|
v-for="(item, index) in data.itemList" |
|
|
|
:key="item.id" |
|
|
|
:style="{ 'background-color': item.color }" |
|
|
|
> |
|
|
|
<view |
|
|
|
:id="'cu-' + index" |
|
|
|
class="cu-item flex-col" |
|
|
|
v-for="(item, index) in data.itemList" |
|
|
|
:key="item.id" |
|
|
|
:style="{ 'background-color': item.color }" |
|
|
|
class="w-full" |
|
|
|
@touchend="stops($event, index)" |
|
|
|
@touchmove.stop.prevent="move" |
|
|
|
@touchmove="move" |
|
|
|
@longpress="start($event, index)" |
|
|
|
> |
|
|
|
|
|
|
|
|