Compare commits
No commits in common. "f6faa871ebc1afec5ca109bd2152242776f1fed8" and "65c5ada66f2c79a5d0ca42cd6b4b10ef82b47152" have entirely different histories.
f6faa871eb
...
65c5ada66f
@ -2122,7 +2122,7 @@ input {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
height: 87rpx;
|
height: 87rpx;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
bottom: 35rpx;
|
bottom: 10rpx;
|
||||||
left: 0;
|
left: 0;
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<view>
|
<view>
|
||||||
<!-- <view class="m-tips" style="margin: 0rpx 0" v-if="titleText">
|
<view class="m-tips" style="margin: 0rpx 0" v-if="titleText">
|
||||||
<view
|
<view
|
||||||
class="m-tips-str"
|
class="m-tips-str"
|
||||||
:style="
|
:style="
|
||||||
@ -9,10 +9,53 @@
|
|||||||
"
|
"
|
||||||
>{{ titleText }}</view
|
>{{ titleText }}</view
|
||||||
>
|
>
|
||||||
</view> -->
|
</view>
|
||||||
|
<view
|
||||||
|
class="m-tips"
|
||||||
|
style="margin: 0rpx 0; color: #000000"
|
||||||
|
v-if="titleText"
|
||||||
|
>
|
||||||
|
<!-- table切换start -->
|
||||||
|
<scroll-view
|
||||||
|
class="scroll-view_S"
|
||||||
|
scroll-x
|
||||||
|
show-scrollbar="false"
|
||||||
|
:style="{ backgroundColor: bgColor }"
|
||||||
|
>
|
||||||
|
<view class="scroll-view-item_S">
|
||||||
|
<label
|
||||||
|
:class="['m-navbar-item', tapindex == -1 ? 'm-navbar-item-on' : '']"
|
||||||
|
style="padding: 0"
|
||||||
|
:data-index="-1"
|
||||||
|
:data-id="0"
|
||||||
|
@click="setTab"
|
||||||
|
>{{ __("推荐") }}</label
|
||||||
|
>
|
||||||
|
</view>
|
||||||
|
<view
|
||||||
|
class="scroll-view-item_S"
|
||||||
|
v-for="(items, index) in store_category_lists"
|
||||||
|
:key="index"
|
||||||
|
>
|
||||||
|
<label
|
||||||
|
:class="[
|
||||||
|
'm-navbar-item',
|
||||||
|
tapindex == index ? 'm-navbar-item-on' : '',
|
||||||
|
]"
|
||||||
|
style="padding: 0"
|
||||||
|
:data-index="index"
|
||||||
|
:data-id="items.store_category_id"
|
||||||
|
@click="setTab"
|
||||||
|
>{{ items.store_category_name }}</label
|
||||||
|
>
|
||||||
|
</view>
|
||||||
|
</scroll-view>
|
||||||
|
<!-- table切换end -->
|
||||||
|
<!-- 全部订单start -->
|
||||||
|
</view>
|
||||||
<view v-if="loadComplete">
|
<view v-if="loadComplete">
|
||||||
<block v-if="true">
|
<block v-if="true">
|
||||||
<!-- <view class="flex-container">
|
<view class="flex-container">
|
||||||
<HMfilterDropdown
|
<HMfilterDropdown
|
||||||
:filterData="filterData"
|
:filterData="filterData"
|
||||||
:defaultSelected="filterDropdownValue"
|
:defaultSelected="filterDropdownValue"
|
||||||
@ -22,7 +65,7 @@
|
|||||||
v-if="isShowFilter"
|
v-if="isShowFilter"
|
||||||
>></HMfilterDropdown
|
>></HMfilterDropdown
|
||||||
>
|
>
|
||||||
</view> -->
|
</view>
|
||||||
<block v-if="isdata && !issshow">
|
<block v-if="isdata && !issshow">
|
||||||
<scroll-view
|
<scroll-view
|
||||||
class="order-list"
|
class="order-list"
|
||||||
|
|||||||
@ -117,7 +117,7 @@
|
|||||||
<view class="m-icon-warn uni-icon uni-icon-info" type="warn"></view>
|
<view class="m-icon-warn uni-icon uni-icon-info" type="warn"></view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<!-- <view class="m-cell m-cell-vcode hide">
|
<view class="m-cell m-cell-vcode hide">
|
||||||
<view class="m-cell-hd">
|
<view class="m-cell-hd">
|
||||||
<label class="u-label">{{ __("验证码") }}</label>
|
<label class="u-label">{{ __("验证码") }}</label>
|
||||||
</view>
|
</view>
|
||||||
@ -131,7 +131,7 @@
|
|||||||
btntext
|
btntext
|
||||||
}}</view>
|
}}</view>
|
||||||
<view v-else class="m-vcode-btn">{{ btntext }}</view>
|
<view v-else class="m-vcode-btn">{{ btntext }}</view>
|
||||||
</view> -->
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<mpvue-city-picker :themeColor="themeColor" ref="mpvueCityPicker" :pickerValueDefault="cityPickerValueDefault"
|
<mpvue-city-picker :themeColor="themeColor" ref="mpvueCityPicker" :pickerValueDefault="cityPickerValueDefault"
|
||||||
@onCancel="onCancel" @onConfirm="onConfirm"></mpvue-city-picker>
|
@onCancel="onCancel" @onConfirm="onConfirm"></mpvue-city-picker>
|
||||||
|
|||||||
@ -2227,7 +2227,7 @@ export default {
|
|||||||
content: "";
|
content: "";
|
||||||
width: 50%;
|
width: 50%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background: #ff4f28;
|
background: #f9dd49;
|
||||||
}
|
}
|
||||||
|
|
||||||
.iconfontAili {
|
.iconfontAili {
|
||||||
@ -2263,7 +2263,7 @@ export default {
|
|||||||
.satisfy {
|
.satisfy {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: #000;
|
color: #000;
|
||||||
background: #ff4f28;
|
background: #f7dd4a;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2273,7 +2273,7 @@ export default {
|
|||||||
content: "";
|
content: "";
|
||||||
width: 80%;
|
width: 80%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background: #ff4f28;
|
background: #f9dd49;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user