|
|
@@ -3,11 +3,11 @@
|
|
|
<app-tabs :tabs="tabs" :isFixed="true" :currentTab="tabIndex" :height="100" @change="change" itemWidth="20%" />
|
|
|
<view class="input-wrap" >
|
|
|
<view class="search-bar">
|
|
|
- <app-search-module v-model="py" placeholder="输入订花人 / 编号" @input="searchFn" />
|
|
|
+ <app-search-module v-model="py" placeholder="输入价格搜索" @input="searchFn" />
|
|
|
</view>
|
|
|
<view style="float:right">
|
|
|
<button class="admin-button-com middle blue" style="margin-right:10upx;" @click="selectStaffFn()">开单人</button>
|
|
|
- <button class="admin-button-com middle blue" style="margin-right:10upx;" @click="debtChangeFn()">有尾款</button>
|
|
|
+ <button class="admin-button-com middle blue" style="margin-right:10upx;" @click="debtChangeFn()">有欠款</button>
|
|
|
<button class="admin-button-com middle blue" @click="cancelFn()">取消</button>
|
|
|
</view>
|
|
|
</view>
|
|
|
@@ -16,7 +16,7 @@
|
|
|
<view class="list" v-for="(item, index) in list.data" :key="index" @click="pageTo({ url: '/admin/order/detail', query: { id: item.id } })" >
|
|
|
<view class="list-top flex-center-between" style="border-bottom:1upx solid #EEEEEE;">
|
|
|
<view class="app-color-3" style="font-size:28upx;font-weight:bold;color:#333333;">编号 {{ item.sendNum }}<text v-if="item.bookName!=''" style="margin-left:12upx;">| {{item.bookName}}</text></view>
|
|
|
- <view style="border:1upx solid red;border-radius:18upx;font-size:19upx;color:red;padding:5upx 10upx;" v-if="item.debt == 1">有尾款</view>
|
|
|
+ <view style="border:1upx solid red;border-radius:18upx;font-size:19upx;color:red;padding:5upx 10upx;" v-if="item.debt == 1">有欠款</view>
|
|
|
<view style="border:1upx solid red;border-radius:18upx;font-size:19upx;color:red;padding:5upx 10upx;" v-if="item.refund == 1">有退款</view>
|
|
|
<view style="font-size:28upx;" class='app-price app-green'>{{ item.status | constantfilter('ORDER_STATUS') }}</view>
|
|
|
</view>
|