Commit 3f47b5d7 by 刘泽奇

123

parent e4775203
...@@ -68,12 +68,13 @@ ...@@ -68,12 +68,13 @@
<el-input v-model="name" placeholder="请输入内容"></el-input> <el-input v-model="name" placeholder="请输入内容"></el-input>
</div> </div>
<!-- <div><span>付款状态:</span> <div v-if="channelFrom == \'bw\'"><span>付款状态:</span>
<el-select v-model="paymentStatus" placeholder="请选择"> <el-select v-model="paymentStatus" placeholder="请选择">
<el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value"> <el-option v-for="item in paymentStatusList" :key="item.value" :label="item.label"
:value="item.value">
</el-option> </el-option>
</el-select> </el-select>
</div> --> </div>
</div> </div>
<div> <div>
<el-button @click="find()" style="border: #3071fe;background: #3071fe; color: #fff;">查询 <el-button @click="find()" style="border: #3071fe;background: #3071fe; color: #fff;">查询
......
...@@ -17,6 +17,10 @@ ...@@ -17,6 +17,10 @@
input: "", input: "",
businessType: [ businessType: [
{ {
value: '',
label: '全部'
},
{
value: 'zzzc', value: 'zzzc',
label: '自助申请' label: '自助申请'
}, },
...@@ -31,6 +35,10 @@ ...@@ -31,6 +35,10 @@
], ],
DeliveryStatus: [ DeliveryStatus: [
{ {
value: '',
label: '全部'
},
{
value: 'dfwsfw', value: 'dfwsfw',
label: '待服务' label: '待服务'
}, },
...@@ -110,6 +118,7 @@ ...@@ -110,6 +118,7 @@
/*input绑定值 */ /*input绑定值 */
channelServiceNo: null, channelServiceNo: null,
deliveryOrderNo: null, deliveryOrderNo: null,
paymentStatus: null,
tmName: null, tmName: null,
name: null, name: null,
itemName: null, itemName: null,
...@@ -158,6 +167,21 @@ ...@@ -158,6 +167,21 @@
remark: "", remark: "",
sveItemRateConfig: "", sveItemRateConfig: "",
}, },
paymentStatusList: [
{
value: '',
label: '全部'
},
{
value: 'yfk',
label: '已付款'
},
{
value: 'dfk',
label: '待付款'
},
],
form1: { form1: {
title: "", title: "",
taxNum: "", taxNum: "",
...@@ -682,6 +706,8 @@ ...@@ -682,6 +706,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;
...@@ -693,6 +719,7 @@ ...@@ -693,6 +719,7 @@
this.indentInfo.deliveryStatus = this.checkedStatus; this.indentInfo.deliveryStatus = this.checkedStatus;
this.indentInfo.startTime = this.startTime || ""; this.indentInfo.startTime = this.startTime || "";
this.indentInfo.entTime = this.entTime || ""; this.indentInfo.entTime = this.entTime || "";
this.indentInfo.payStatus = this.paymentStatus;
this.handleSizeChange(); this.handleSizeChange();
}, },
icbcReset(){ icbcReset(){
......
...@@ -68,7 +68,7 @@ ...@@ -68,7 +68,7 @@
<el-input v-model="name" placeholder="请输入内容"></el-input> <el-input v-model="name" placeholder="请输入内容"></el-input>
</div> </div>
<div><span>付款状态:</span> <div v-if="channelFrom == \'bw\'"><span>付款状态:</span>
<el-select v-model="paymentStatus" placeholder="请选择"> <el-select v-model="paymentStatus" placeholder="请选择">
<el-option v-for="item in paymentStatusList" :key="item.value" :label="item.label" <el-option v-for="item in paymentStatusList" :key="item.value" :label="item.label"
:value="item.value"> :value="item.value">
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
label: '全部' label: '全部'
}, },
{ {
value: 'zzzc', value: 'zzsbzc',
label: '自助申请' label: '自助申请'
}, },
{ {
......
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