|
@@ -6,11 +6,18 @@ export const lookInit = (that) => {
|
|
|
nav: [],
|
|
|
lookInd: 0,
|
|
|
lookList: [],
|
|
|
+ left: ''
|
|
|
}
|
|
|
})
|
|
|
//点击更改数据
|
|
|
that.lookChoice = ({ currentTarget }) => {
|
|
|
that.data.lookData.lookInd = currentTarget.dataset.index;
|
|
|
+ if (that.data.lookData.nav.length > 3 && currentTarget.dataset.index == 2) {
|
|
|
+ that.data.lookData.left = currentTarget.dataset.index * 225;
|
|
|
+ }
|
|
|
+ if (that.data.lookData.nav.length > 3 && currentTarget.dataset.index == 1) {
|
|
|
+ that.data.lookData.left = '';
|
|
|
+ }
|
|
|
that.setData({
|
|
|
lookData: that.data.lookData
|
|
|
})
|
|
@@ -20,6 +27,12 @@ export const lookInit = (that) => {
|
|
|
//滑动更改数据
|
|
|
that.lookSlide = ({ detail }) => {
|
|
|
that.data.lookData.lookInd = detail.current;
|
|
|
+ if (that.data.lookData.nav.length > 3 && detail.current == 2) {
|
|
|
+ that.data.lookData.left = detail.current * 225;
|
|
|
+ }
|
|
|
+ if (that.data.lookData.nav.length > 3 && detail.current == 1) {
|
|
|
+ that.data.lookData.left = '';
|
|
|
+ }
|
|
|
// console.log(detail.current);
|
|
|
that.setData({
|
|
|
lookData: that.data.lookData
|