Commit d0e633fd authored by youjj's avatar youjj

车辆出车记录

parent b1806089
...@@ -275,6 +275,7 @@ ...@@ -275,6 +275,7 @@
@click="handleApply(scope.row)">申请预订 @click="handleApply(scope.row)">申请预订
</el-button> </el-button>
<el-button size="small" type="success" @click="handleBookInfo(scope.row)">预订信息</el-button> <el-button size="small" type="success" @click="handleBookInfo(scope.row)">预订信息</el-button>
<el-button size="small" type="success" @click="handleDepartureLog(scope.row)">出车记录</el-button>
</template> </template>
</el-table-column> </el-table-column>
...@@ -1050,6 +1051,14 @@ ...@@ -1050,6 +1051,14 @@
} }
}, },
methods: { methods: {
handleDepartureLog(row) {
this.$router.push({
path: '/vehicle/vehicleDepartureLog',
query: {
numberPlate: row.numberPlate
}
});
},
arrivalHandler(row) { arrivalHandler(row) {
// open dialog // open dialog
this.arrivalDialogVisible = true; this.arrivalDialogVisible = true;
......
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