|
@@ -10,7 +10,7 @@
|
|
|
<text class="icon"></text>
|
|
|
<text>未确认</text>
|
|
|
</view>
|
|
|
- <view class="state" v-if="item.peopleConfirmStatus == 1 && item.apply == 0">
|
|
|
+ <view class="state" v-if="item.peopleConfirmStatus == 1">
|
|
|
<text class="icon" style="color: #13ce66"></text>
|
|
|
<text>已确认</text>
|
|
|
</view>
|
|
@@ -18,10 +18,6 @@
|
|
|
<text class="icon" style="color: #13ce66"></text>
|
|
|
<text>已转售</text>
|
|
|
</view>
|
|
|
- <view class="state" v-if="item.finishStatus == 3">
|
|
|
- <text class="icon" style="color: #f44336"></text>
|
|
|
- <text>已取消</text>
|
|
|
- </view>
|
|
|
</view>
|
|
|
|
|
|
<image src="../../../../static/news.jpg" mode="aspectFill" class="pic"></image>
|
|
@@ -49,45 +45,33 @@ export default {
|
|
|
{
|
|
|
name: '全部',
|
|
|
peopleConfirmStatus: '', //边民确认状态
|
|
|
- apply: '', //订单申报状态
|
|
|
finishStatus: '', //订单完成状态
|
|
|
resaleStatus: '' //订单转售状态
|
|
|
},
|
|
|
{
|
|
|
name: '待确认',
|
|
|
peopleConfirmStatus: 0,
|
|
|
- apply: 0,
|
|
|
finishStatus: 0,
|
|
|
resaleStatus: 0
|
|
|
},
|
|
|
{
|
|
|
name: '申报中',
|
|
|
peopleConfirmStatus: 1,
|
|
|
- apply: 0,
|
|
|
finishStatus: 0,
|
|
|
resaleStatus: 0
|
|
|
},
|
|
|
{
|
|
|
name: '已完成',
|
|
|
peopleConfirmStatus: 1,
|
|
|
- apply: 1,
|
|
|
finishStatus: 1,
|
|
|
resaleStatus: 0
|
|
|
},
|
|
|
{
|
|
|
name: '已转售',
|
|
|
peopleConfirmStatus: 1,
|
|
|
- apply: 1,
|
|
|
finishStatus: 1,
|
|
|
resaleStatus: 1
|
|
|
- }/* ,
|
|
|
- {
|
|
|
- name: '已取消',
|
|
|
- peopleConfirmStatus: '',
|
|
|
- apply: '',
|
|
|
- finishStatus: 3,
|
|
|
- resaleStatus: ''
|
|
|
- } */
|
|
|
+ }
|
|
|
],
|
|
|
param: {
|
|
|
pageNo: 1,
|
|
@@ -104,7 +88,7 @@ export default {
|
|
|
this.collageOrdersId = e.collageOrdersId;
|
|
|
this.getData();
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
},
|
|
|
methods: {
|
|
|
getData() {
|
|
@@ -124,7 +108,6 @@ export default {
|
|
|
click(e) {
|
|
|
console.log(e);
|
|
|
this.param.peopleConfirmStatus = e.appeopleConfirmStatusply;
|
|
|
- this.param.apply = e.apply;
|
|
|
this.param.finishStatus = e.finishStatus;
|
|
|
this.param.resaleStatus = e.resaleStatus;
|
|
|
this.refresh();
|
|
@@ -139,7 +122,7 @@ export default {
|
|
|
this.list = [];
|
|
|
this.getData();
|
|
|
},
|
|
|
-
|
|
|
+
|
|
|
},
|
|
|
//下拉刷新
|
|
|
onPullDownRefresh() {
|