Commit 6860ba5d by 刘泽奇

123

parent 3addd054
...@@ -77,9 +77,9 @@ ...@@ -77,9 +77,9 @@
</div> </div>
</div> </div>
<div> <div>
<el-button @click="find()" style="border: #3071fe;background: #3171ff; color: #fff;">查询 <el-button @click="find" style="border: #3071fe;background: #3171ff; color: #fff;">查询
</el-button> </el-button>
<el-button @click="reset()">重置</el-button> <el-button @click="reset">重置</el-button>
</div> </div>
</div> </div>
<div class="jdindentlist-null" v-if="tableData.length == 0"> <div class="jdindentlist-null" v-if="tableData.length == 0">
......
...@@ -18,6 +18,10 @@ ...@@ -18,6 +18,10 @@
search: "", search: "",
businessType: [ businessType: [
{ {
value: '',
label: '全部'
},
{
value: 'zzzc', value: 'zzzc',
label: '自助申请' label: '自助申请'
}, },
...@@ -33,6 +37,10 @@ ...@@ -33,6 +37,10 @@
], ],
DeliveryStatus: [ DeliveryStatus: [
{ {
value: '',
label: '全部'
},
{
value: 'dfwsfw', value: 'dfwsfw',
label: '待服务' label: '待服务'
}, },
...@@ -70,6 +78,10 @@ ...@@ -70,6 +78,10 @@
], ],
paymentStatusList: [ paymentStatusList: [
{ {
value: '',
label: '全部'
},
{
value: 'yfk', value: 'yfk',
label: '已付款' label: '已付款'
}, },
...@@ -674,10 +686,10 @@ ...@@ -674,10 +686,10 @@
this.$root.loading = true; this.$root.loading = true;
this.$root.postReq("/web/trademark/tmqueryCtl/doPost", obj).then((d) => { this.$root.postReq("/web/trademark/tmqueryCtl/doPost", obj).then((d) => {
this.$root.loading = false; this.$root.loading = false;
if (d.status == 0 && d.data) { if (d.status == 0) {
console.log(d.data, "12313213"); console.log(d.data, "12313213");
console.log(this.stuff); console.log(this.stuff);
this.tableData = d.data; this.tableData = d.data || [];
/* 没有分页参数 需要重新改*/ /* 没有分页参数 需要重新改*/
this.countPage = d.dataCount; this.countPage = d.dataCount;
/** /**
...@@ -698,6 +710,7 @@ ...@@ -698,6 +710,7 @@
item.CreateDate = ''; item.CreateDate = '';
} }
}); });
} else { } else {
console.log(d, "getTmOrderList..........."); console.log(d, "getTmOrderList...........");
} }
...@@ -715,6 +728,8 @@ ...@@ -715,6 +728,8 @@
this.CreateDate = null; this.CreateDate = null;
console.log(this.CreateDate); console.log(this.CreateDate);
this.deliveryStatus = null; this.deliveryStatus = null;
this.paymentStatus = null;
this.checkedStatus = null;
}, },
find(){ find(){
this.indentInfo.channelServiceNo = this.channelServiceNo; this.indentInfo.channelServiceNo = this.channelServiceNo;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment