Compare commits

..

No commits in common. 'b01b735ab82ef6f79d535e30bf21d494d02ec412' and '4813635a78606bd731f047f9a208b9ada71739d8' have entirely different histories.

  1. 2
      packageIntegral/productList/index.vue
  2. 20
      packageOrders/pages/orderList/orderList.vue

@ -598,4 +598,4 @@
}
}
</style>
</style>

@ -109,21 +109,19 @@
<input v-model="params.email" class="card_item_input" placeholder="请输入邮箱" />
</view>
<view class="popup_card_from_item">
<view class="popup_card_from_item_left_text" style="margin-top: 32rpx;">开始时间</view>
<view class="popup_card_from_item_left_text">开始时间</view>
<view class="uni-list-cell-db">
<uni-datetime-picker type="datetime" :value="startDate" @change="startDateChange" />
<!-- <picker mode="date" :value="startDate" @change="startDateChange" class="uni-picker">
<picker mode="date" :value="startDate" @change="startDateChange" class="uni-picker">
<view class="uni-input">{{startDate}}</view>
</picker> -->
</picker>
</view>
</view>
<view class="popup_card_from_item">
<view class="popup_card_from_item_left_text" style="margin-top: 32rpx;">结束时间</view>
<view class="popup_card_from_item_left_text">结束时间</view>
<view class="uni-list-cell-db">
<uni-datetime-picker type="datetime" :value="endDate" @change="endDateChange" :start="endStartDate" :end="endEndDate" />
<!-- <picker mode="date" :value="endDate" @change="endDateChange" :start="endStartDate" :end="endEndDate" class="uni-picker">
<picker mode="date" :value="endDate" @change="endDateChange" :start="endStartDate" :end="endEndDate" class="uni-picker">
<view class="uni-input">{{endDate}}</view>
</picker> -->
</picker>
</view>
</view>
</view>
@ -454,10 +452,10 @@
}
},
startDateChange:function(e){
this.startDate = e
this.startDate = e.detail.value
let data=this.startDate
this.endStartDate = data
this.endEndDate = this.getEndDate(Date.parse(data)+ 3600 * 1000 * 24 * 31)
this.endEndDate = this.getEndDate(Date.parse(data)+ 3600 * 1000 * 24 * 30)
this.params.startTime = this.startDate
},
endDateChange:function(e){
@ -467,7 +465,7 @@
icon: 'none'
});
}else{
this.endDate = e
this.endDate = e.detail.value
this.params.endTime = this.endDate
}

Loading…
Cancel
Save