|
@@ -82,9 +82,15 @@ |
|
@@ -82,9 +82,15 @@ |
82
|
<el-table-column label="操作" align="center" width="240" fixed="right">
|
82
|
<el-table-column label="操作" align="center" width="240" fixed="right">
|
83
|
<!-- v-if="isAdmin"-->
|
83
|
<!-- v-if="isAdmin"-->
|
84
|
<template slot-scope="scope">
|
84
|
<template slot-scope="scope">
|
|
|
85
|
+ <el-row>
|
85
|
<el-button type="warning" size="mini" @click="handlOut(scope.$index, scope.row)">出任务</el-button>
|
86
|
<el-button type="warning" size="mini" @click="handlOut(scope.$index, scope.row)">出任务</el-button>
|
86
|
<el-button type="success" size="mini" @click="handlEdit(scope.$index, scope.row)">编辑</el-button>
|
87
|
<el-button type="success" size="mini" @click="handlEdit(scope.$index, scope.row)">编辑</el-button>
|
|
|
88
|
+ </el-row>
|
|
|
89
|
+ <el-row>
|
|
|
90
|
+ <el-button type="primary" size="mini" @click="handlEdit(scope.$index, scope.row)">绑定</el-button>
|
|
|
91
|
+ <el-button type="info" size="mini" @click="handlEdit(scope.$index, scope.row)">解绑</el-button>
|
87
|
<el-button type="danger" size="mini" @click="handleDel(scope.$index, scope.row)">删除</el-button>
|
92
|
<el-button type="danger" size="mini" @click="handleDel(scope.$index, scope.row)">删除</el-button>
|
|
|
93
|
+ </el-row>
|
88
|
</template>
|
94
|
</template>
|
89
|
</el-table-column>
|
95
|
</el-table-column>
|
90
|
</el-table>
|
96
|
</el-table>
|
|
@@ -470,7 +476,8 @@ |
|
@@ -470,7 +476,8 @@ |
470
|
lisenceNo: '',
|
476
|
lisenceNo: '',
|
471
|
username: '',
|
477
|
username: '',
|
472
|
id:'',
|
478
|
id:'',
|
473
|
- starttime:''
|
479
|
+ starttime:'',
|
|
|
480
|
+ equipNo:''
|
474
|
},
|
481
|
},
|
475
|
usernames:[],
|
482
|
usernames:[],
|
476
|
queryInfo: {
|
483
|
queryInfo: {
|
|
@@ -491,6 +498,7 @@ |
|
@@ -491,6 +498,7 @@ |
491
|
handlOut(index,row){
|
498
|
handlOut(index,row){
|
492
|
this.dialogVisible=true;
|
499
|
this.dialogVisible=true;
|
493
|
this.form.lisenceNo=row.domesticLisenceNo;
|
500
|
this.form.lisenceNo=row.domesticLisenceNo;
|
|
|
501
|
+ this.form.equipNo=row.veCustomsNo;
|
494
|
this.getUsers();
|
502
|
this.getUsers();
|
495
|
this.getLisenceNoStatus(row.domesticLisenceNo)
|
503
|
this.getLisenceNoStatus(row.domesticLisenceNo)
|
496
|
},
|
504
|
},
|