Commit d0e633fd authored by youjj's avatar youjj

车辆出车记录

parent b1806089
......@@ -275,6 +275,7 @@
@click="handleApply(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>
</el-table-column>
......@@ -1050,6 +1051,14 @@
}
},
methods: {
handleDepartureLog(row) {
this.$router.push({
path: '/vehicle/vehicleDepartureLog',
query: {
numberPlate: row.numberPlate
}
});
},
arrivalHandler(row) {
// open dialog
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