Commit 6860ba5d by 刘泽奇

123

parent 3addd054
......@@ -77,9 +77,9 @@
</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 @click="reset()">重置</el-button>
<el-button @click="reset">重置</el-button>
</div>
</div>
<div class="jdindentlist-null" v-if="tableData.length == 0">
......
......@@ -18,6 +18,10 @@
search: "",
businessType: [
{
value: '',
label: '全部'
},
{
value: 'zzzc',
label: '自助申请'
},
......@@ -33,6 +37,10 @@
],
DeliveryStatus: [
{
value: '',
label: '全部'
},
{
value: 'dfwsfw',
label: '待服务'
},
......@@ -70,6 +78,10 @@
],
paymentStatusList: [
{
value: '',
label: '全部'
},
{
value: 'yfk',
label: '已付款'
},
......@@ -674,10 +686,10 @@
this.$root.loading = true;
this.$root.postReq("/web/trademark/tmqueryCtl/doPost", obj).then((d) => {
this.$root.loading = false;
if (d.status == 0 && d.data) {
if (d.status == 0) {
console.log(d.data, "12313213");
console.log(this.stuff);
this.tableData = d.data;
this.tableData = d.data || [];
/* 没有分页参数 需要重新改*/
this.countPage = d.dataCount;
/**
......@@ -698,6 +710,7 @@
item.CreateDate = '';
}
});
} else {
console.log(d, "getTmOrderList...........");
}
......@@ -715,6 +728,8 @@
this.CreateDate = null;
console.log(this.CreateDate);
this.deliveryStatus = null;
this.paymentStatus = null;
this.checkedStatus = null;
},
find(){
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