123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589 |
- <template>
- <view class="box">
-
- <!-- 自定义导航 -->
- <view class="zdyNavBox">
- <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
- <view class="zdyNav">
- <view class="zdyNavLeft">
- <image src="../../static/img/nav_icon_back.png" mode="aspectFit" class="backImg" @click="goback">
- </image>
-
- </view>
- <view class="zdyNavTitle">订单管理</view>
- <view style="width: 50px;"></view>
- </view>
- </view>
- <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
- <view style="height: 44px;"></view>
- <!-- 搜索框 -->
- <view class="newtop">
- <view class="searchBox">
- <view class="searchInputBox">
- <image src="../../static/img/icon_search.png" mode="" class="iconSimg"></image>
- <input type="text" v-model="name" placeholder="订单号、手机号、联系人" class="searchInput" @confirm="searchCf">
- </view>
- <image @click="screenSHowBtn" src="../../static/img/icon_shai.png" mode="" class="iconShai"></image>
- </view>
- <view class="tab">
- <view class="tabLine" :class="{tabActive:tabIndex==0}" @click="tabClick(0)">全部</view>
- <view class="tabLine" :class="{tabActive:tabIndex==1}" @click="tabClick(1)">待付款</view>
- <view class="tabLine" :class="{tabActive:tabIndex==2}" @click="tabClick(2)">待服务</view>
- <view class="tabLine" :class="{tabActive:tabIndex==3}" @click="tabClick(3)">已完成</view>
-
- </view>
- </view>
-
-
- <view class="main">
- <view class="itemBg" v-for="(item,index) in items" @click="goDetail(item)">
- <view class="itemTop">
- <view class="itemType" v-if="item.SheetType==1">商城-商品订单</view>
- <view class="itemType" v-if="item.SheetType==2">商城-项目订单</view>
- <view class="itemType" v-if="item.SheetType==3">商城-套餐订单</view>
- <view class="itemType" v-if="item.SheetType==4">救援订单</view>
- <view class="itemType" v-if="item.SheetType==5">钣喷订单</view>
- <view class="itemType" v-if="item.SheetType==6">集客订单</view>
- <view class="itemSheetState redColor" v-if="item.SheetState==1">待付款</view>
- <view class="itemSheetState orangeColor" v-if="item.SheetState==2">待服务</view>
- <view class="itemSheetState greenColor" v-if="item.SheetState==3">已完成</view>
- <view class="itemSheetState" v-if="item.SheetState==4">已取消</view>
- </view>
- <view class="itemShopBg">
- <view class="shopName">{{item.SheetContent}}</view>
- <view style="color: #333333;font-size: 22rpx;">¥<span class="price">{{item.RealMoney}}</span></view>
- </view>
- <view class="itemName">{{item.CreateTime}}</view>
- </view>
-
- <nodata v-show="items==''&&isload"></nodata>
- </view>
- <!-- 筛选弹框 -->
- <view class="screenBox" v-if="screenSHow" @click="screenHide">
- <view class="screenCont" @click.stop="">
- <view class="screenTitle">筛选</view>
- <view class="screenBt">订单类型</view>
- <view class="typelineBox">
- <view class="typeLine " :class="{typeactive:typeLineIndex==0}" @click="typeLineCk(0)">全部</view>
- <view class="typeLine" :class="{typeactive:typeLineIndex==1}" @click="typeLineCk(1)">商城订单</view>
- <view class="typeLine" :class="{typeactive:typeLineIndex==2}" @click="typeLineCk(2)">集客订单</view>
- <view class="typeLine" :class="{typeactive:typeLineIndex==3}" @click="typeLineCk(3)">救援订单</view>
- <view class="typeLine":class="{typeactive:typeLineIndex==4}" @click="typeLineCk(4)">钣喷订单</view>
- </view>
- <view class="screenBt">门店</view>
- <view class="">
- <picker @change="bindPickerChange" :value="pickerindex" :range-key="'shopName'" :range="pickerarray">
- <view class="uniPicker">
- <view class="uniPickerName">
- {{shopName}}
- </view>
- <image src="../../static/img/jt.png" mode=" " class="jtShopImg"></image>
- </view>
- </picker>
- </view>
- <view class="screenBt">下单时间</view>
- <view class="sdTimeBox">
- <picker mode="date" :value="date1" @change="bindDateChange1">
- <view class="dateinput">{{date1?date1:'选择日期'}}</view>
- </picker>
- <view class="timeHx">-</view>
- <picker mode="date" :value="date2" @change="bindDateChange2">
- <view class="dateinput">{{date2?date2:'选择日期'}}</view>
- </picker>
- </view>
- <view class="screenBottom">
- <view class="screenCz">重置</view>
- <view class="screenY">确定</view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import nodata from '@/components/nodata/nodata.vue'
- export default {
- components: {
- nodata
- },
- data() {
- return {
- page: 1,
- tabIndex: 0,
- items: [],
- isload: false,
- name:'',
- pickerindex:0,
- pickerarray: [],
- screenSHow:true,
- shopName:'',
- date1:'',
- date2:'',
- typeLineIndex:0,
- }
- },
- onLoad(opt) {
-
- this.getData();
- this.getShopinfo();
- this.getShopList();
- },
- onShow() {
- console.log(this.tabIndex)
- this.getData();
-
- },
-
- methods: {
- typeLineCk(num){
- this.typeLineIndex=num;
- },
- screenSHowBtn(){
- this.screenSHow=true;
- },
- screenHide(){
- this.screenSHow=false;
- },
- bindDateChange1(e){
- console.log(e)
- this.date1=e.detail.value
- },
- bindDateChange2(e){
- this.date2=e.detail.value
- },
- bindPickerChange(e){
- console.log(e)
- this.shopName=this.pickerarray[e.detail.value].shopName
- },
- getShopinfo(){
- this.$http('openH5SetTheGuest/getShopInfo',{},'GET').then(res => {
- this.shopName=res.data.shopName;
-
- })
- },
- getShopList(){
-
- this.$http('openH5SetTheGuest/getShopList', {
-
- },'GET').then(res => {
-
- this.pickerarray=res.data;
- console.log(this.pickerarray[this.pickerindex])
- })
- },
- goback(){
-
- //app交互
- var standalone = window.navigator.standalone
- var userAgent = window.navigator.userAgent.toLowerCase()
- var safari = /safari/.test(userAgent)
- var ios = /iphone|ipod|ipad|mac/.test(userAgent)
- var android = /android/.test(userAgent)
- if (ios) {
- if ( true) {//!standalone&& !safari
- window.webkit.messageHandlers.goMyNav.postMessage(null)
- }
- } else if (android) {
- window.android.postMessage()
- }
-
-
- },
- tabClick(num) {
- this.tabIndex = num;
- this.page = 1;
- this.getData()
- },
- goDetail(item) {
- //SheetType 1 商品2项目3套餐4救援5钣喷6集客
- if((item.SheetType==1)||(item.SheetType==2)||(item.SheetType==3)){
- uni.navigateTo({
- url: "mallOrderDetail?id=" + item.ID +"&SheetType=" + item.SheetType
- })
- }
- else if (item.SheetType==5){
- uni.navigateTo({
- url: "paintOrderDetail?id=" + item.ID
- })
- }
- else if (item.SheetType==6){
- uni.navigateTo({
- url: "activityOrderDetail?id=" + item.ID
- })
- }
- },
- searchCf(){
- this.getData()
- },
- getData() {
- uni.showLoading({
- title: '加载中'
- });
- this.isload = false;
- var padata = {
- page: this.page,
- limit: 10,
- sheetState: this.tabIndex > 0 ? this.tabIndex : '',
- name:this.name
- }
- this.$http('openH5Indent/getOpenSheetList', padata, 'GET').then(res => {
- uni.hideLoading();
- this.isload = true;
- var list = res.data.Items;
- if (this.page == 1) {
- this.items = list
- } else {
- this.items = this.items.concat(list)
- }
- })
- },
- },
- onReachBottom() {
- this.page++;
- this.getData()
- },
- onPullDownRefresh() {
- this.page = 1;
- this.getData()
- setTimeout(function() {
- uni.stopPullDownRefresh();
- }, 1000);
- }
- }
- </script>
- <style scoped>
- .screenBox{
- width: 100%;
- height: 100%;
- position: fixed;
- left: 0;
- top: 0;
- background: rgba(0 ,0,0,0.5);
- z-index: 999;
- }
- .screenBottom{
- width: 649rpx;
- height: 120rpx;
- background: #FFFFFF;
- box-shadow: 0rpx -2rpx 10rpx 0rpx rgba(153,153,153,0.2);
- position: absolute;
- bottom: 0;
- right: 0;
- display: flex;
- justify-content: space-around;
- }
- .screenCz{
- width: 291rpx;text-align: center;margin-top: 22rpx;
- height: 74rpx;line-height: 74rpx;
- background: #F4F5F7;color: #000000;
- border-radius: 37rpx;font-size: 28rpx;
- }
- .screenY{
- width: 291rpx;text-align: center;margin-top: 22rpx;
- height: 74rpx;line-height: 74rpx;
- background: #D53533;color: #FFFFFF;
- border-radius: 37rpx;font-size: 28rpx;
- }
- .screenCont{
- width: 650rpx;
- height: 100%;
- background: #FFFFFF;
- margin-left: 100rpx;
- }
- .screenTitle{
- font-weight: 400;font-size: 24rpx;padding-top: 70rpx;padding-left: 20rpx;
- color: #333333;
- }
- .screenBt{
- font-weight: 400;font-size: 24rpx;
- color: #333333;padding-left: 20rpx;padding-top: 30rpx;
- }
- .iconShai{
- width: 36rpx;height: 39rpx;margin-top: 17rpx;
- margin-left: 30rpx;
- }
- .iconSimg{
- width: 40rpx;height: 40rpx;margin-top: 16rpx;margin-left: 20rpx;
- }
- .searchBox{
- display: flex;background: #FFFFFF;padding: 24rpx;
- left: 0;
- }
- .typeLine{
- width: 179rpx;color: #3C3C3C;
- height: 64rpx;font-size: 24rpx;
- background: #F4F5F7;margin-top: 20rpx;
- border-radius: 36rpx;margin-right: 30rpx;
- text-align: center;
- line-height: 64rpx;
- }
- .typeactive{
- border: 2rpx solid #D53533;height: 60rpx;color: #D53533;background: #FFFFFF;
- }
- .typelineBox{
- display: flex;flex-wrap: wrap;padding-left: 20rpx;
- }
- .uniPicker{
- width: 606rpx;
- height: 64rpx;
- background: #F4F5F7;font-size: 24rpx;
- border-radius: 36rpx;color: #3C3C3C;
- display: flex;justify-content: space-between;
- margin-top: 20rpx;margin-left: 20rpx;
- }
- .jtShopImg{
- width: 24rpx;height: 24rpx;margin-top: 20rpx;margin-right: 26rpx;
- }
- .uniPickerName{
- padding-left: 20rpx;line-height: 64rpx;
- overflow:hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- -o-text-overflow:ellipsis;
- width: 500rpx;
- }
- .dateinput{
- width: 270rpx;color: #999999;
- height: 64rpx;font-size: 24rpx;line-height: 64rpx;
- background: #F4F5F7;padding-left: 20rpx;
- border-radius: 36rpx;
- }
- .sdTimeBox{
- display: flex;
- padding-top: 20rpx;padding-left: 20rpx;
- }
- .timeHx{
- font-weight: 400;line-height: 64rpx;padding: 0 4rpx;
- color: #DDDDDD;font-size: 24rpx;
- }
- .newtop{
- position: fixed;z-index: 11;
- }
- .searchInputBox{
- width: 630rpx;
- height: 72rpx;
- background: #F4F5F7;
- border-radius: 36rpx;
- display: flex;
- }
- .searchInput{
- font-size: 28rpx;padding-left: 16rpx;height: 72rpx;line-height: 72rpx;
- }
- .box {
- min-height: 100vh;
- background: #F4F5F7;
- }
-
- .zdyNavBox {
- width: 100vw;
- background: #FFFFFF;
- position: fixed;
- top: 0;
- left: 0;
- z-index: 99;
-
-
- }
-
- .zdyNav {
- height: 44px;
- display: flex;
- justify-content: space-between;
-
- align-items: center;
-
- }
-
- .backImg {
- width: 44rpx;
- height: 44rpx;
- margin-left: 10rpx;
- margin-right: 20rpx;
- }
-
- .homeImg {
- width: 44rpx;
- height: 44rpx;
-
- }
-
- .zdyNavLeft {
- display: flex;
- align-items: center;
- }
-
- .zdyNavTitle {
-
- height: 44px;
- background: #FFFFFF;
- text-align: center;
- font-size: 34rpx;
- line-height: 44px;
- }
-
-
- .tab {
- background: #FFFFFF;
- display: flex;
- justify-content: space-between;
- line-height: 92rpx;
- /* position: fixed; */
- width: calc(100vw - 100rpx);
- padding-left: 50rpx;
- padding-right: 50rpx;
- height: 92rpx;
- z-index: 11;
- }
- .tabLine {
- font-size: 28rpx;
- color: #333333;
- text-align: center;
- }
- .tabActive {
- color: #FF0000;
- font-weight: bold;
- border-bottom: 4rpx solid #FF0000;
- }
- .main {
- padding-top: 210rpx;
- padding-bottom: 20rpx;
- background-color: #F4F5F7;
- }
- .itemBg {
- margin: 20rpx 24rpx;
- background-color: #FFFFFF;
- border-radius: 10rpx;
- padding: 20rpx;
- }
- .itemTop {
- display: flex;
- justify-content: space-between;
- }
- .itemType {
- color: #999999;
- font-size: 24rpx;
- }
- .itemSheetState {
- font-size: 24rpx;
- color: #999999
- }
- .redColor {
- color: #FF0000;
- }
- .orangeColor {
- color: #F19D01;
- }
- .greenColor {
- color: #00A040;
- }
-
- .itemShopBg {
- display: flex;
- justify-content: space-between;
- margin-top: 20rpx;
- }
- .shopName {
- color: #333333;
- font-size: 30rpx;
- font-weight: bold;
- /* 隐藏文字显示 ...不换行 */
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .price {
- color: #333333;
- font-weight: bold;
- font-size: 32rpx;
- }
- .itemName {
- color: #666666;
- font-size: 24rpx;
- padding: 16rpx 0;
- height: 30rpx;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .plateBg {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .plateNumber {
- color: #666666;
- font-size: 24rpx;
- margin-bottom: 20rpx;
- display: flex;
- }
- .itemLineBottom {
- display: flex;
- justify-content: flex-end;
- }
- .itemBtn1 {
- width: 150rpx;
- height: 56rpx;
- border-radius: 36rpx;
- border: 2rpx solid #DDDDDD;
- text-align: center;
- line-height: 56rpx;
- font-size: 28rpx;
- color: #3C3C3C;
- margin-left: 40rpx;
- }
- .itemBtn2 {
- width: 150rpx;
- height: 56rpx;
- border-radius: 36rpx;
- border: 2rpx solid #FF4F00;
- text-align: center;
- line-height: 56rpx;
- font-size: 28rpx;
- color: #FF4F00;
- margin-left: 40rpx;
- }
- .orderState {
- color: #F19D01;
- font-size: 24rpx;
- padding-left: 20rpx;
- }
- </style>
|