|
|
@@ -14,6 +14,16 @@
|
|
|
:pagination="pageData"
|
|
|
@getList="getList"
|
|
|
>
|
|
|
+ <template slot="dockingPerson">
|
|
|
+ <el-select v-model="pageData.dockingPerson" filterable clearable placeholder="请选择" size="small">
|
|
|
+ <el-option
|
|
|
+ v-for="item in dockingPersonOption"
|
|
|
+ :key="item.docking_person"
|
|
|
+ :label="item.docking_person"
|
|
|
+ :value="item.docking_person">
|
|
|
+ </el-option>
|
|
|
+ </el-select>
|
|
|
+ </template>
|
|
|
<div v-if="!Object.keys(moneyList).length == 0">
|
|
|
<el-row class="customStyle" >
|
|
|
<el-col :span="4">总手续费:{{moneyList.commissionFeevalue}}</el-col>
|
|
|
@@ -192,6 +202,11 @@ export default {
|
|
|
],
|
|
|
|
|
|
},
|
|
|
+ {
|
|
|
+ label: "对接人",
|
|
|
+ name: "dockingPerson",
|
|
|
+ type: "slot",
|
|
|
+ },
|
|
|
{
|
|
|
label: "创建日期",
|
|
|
prop: "createTime",
|
|
|
@@ -378,11 +393,22 @@ export default {
|
|
|
contractFileId: [
|
|
|
{ required: true, message: '请上传合同', trigger: 'blur' },
|
|
|
],
|
|
|
- }
|
|
|
+ },
|
|
|
+ dockingPersonOption:[]
|
|
|
};
|
|
|
},
|
|
|
created(){
|
|
|
this.findPage();
|
|
|
+ this.$api.task
|
|
|
+ .getDockingPersonList()
|
|
|
+ .then(res => {
|
|
|
+ if (res.code==200) {
|
|
|
+ this.dockingPersonOption=res.data
|
|
|
+ }
|
|
|
+ else{
|
|
|
+ this.$message.error(res.msg)
|
|
|
+ }
|
|
|
+ });
|
|
|
},
|
|
|
methods: {
|
|
|
drivingupload(file, fileList){
|
|
|
@@ -433,7 +459,6 @@ export default {
|
|
|
signDateStart=''
|
|
|
signDateEnd=''
|
|
|
}
|
|
|
- console.log({...this.pageData,...data,signDateStart,signDateEnd})
|
|
|
this.$api.task
|
|
|
.bxTotalAmount({...this.pageData,...data,signDateStart,signDateEnd})
|
|
|
.then(res => {
|