Commit 1131f715 authored by guoyou's avatar guoyou

查询可用车辆

parent 5d75d6ae
...@@ -67,14 +67,14 @@ export function saveOrderViolation(params) { ...@@ -67,14 +67,14 @@ export function saveOrderViolation(params) {
*/ */
export function getStep(orderNo) { export function getStep(orderNo) {
return fetch({ return fetch({
url: 'api/order/orderVehicle/getByOrderId?orderNo=' + orderNo, url: '/vehicle/vehicleInfo/getByOrderId?orderNo=' + orderNo,
method: 'get' method: 'get'
}); });
} }
export function inquire(query) { export function inquire(query) {
return fetch({ return fetch({
url: '/rent/back-stage/usable-vehicle', url: 'api/order/rent/back-stage/usable-vehicle',
method: 'get', method: 'get',
params:query params:query
}); });
......
...@@ -211,7 +211,7 @@ export default { ...@@ -211,7 +211,7 @@ export default {
methods: { methods: {
//报名页面 //报名页面
applyPage(){ applyPage(){
this.applyInfo.dialogVisible = true;
}, },
getList() { getList() {
this.listLoading = true; this.listLoading = true;
...@@ -263,7 +263,7 @@ export default { ...@@ -263,7 +263,7 @@ export default {
this.enrollShow = true; this.enrollShow = true;
}, },
edit(row) { edit(row) {
debugger; // debugger;
this.popupRow = row; this.popupRow = row;
this.titleNme = "编辑峰会"; this.titleNme = "编辑峰会";
this.popupShow = true; this.popupShow = true;
......
<template> <template>
<el-dialog title="报名页面" :visible.sync="dialogVisible" class="order-details"> <el-dialog title="报名页面" :visible.sync="applyInfo.dialogVisible" class="order-details">
<UE <UE
:editorId="activeName" :editorId="activeName"
:defaultMsg="versionRow.content" :defaultMsg="versionRow.content"
...@@ -12,14 +12,26 @@ ...@@ -12,14 +12,26 @@
<script> <script>
import UE from "../../modal/Ueditor"; //百度ue富文本 import UE from "../../modal/Ueditor"; //百度ue富文本
export default { export default {
props: [], applyInfo: {
handler: function(val, oldval) {
console.log(val);
console.log(oldval);
},
deep: true //对象内部的属性监听,也叫深度监听
},
props: {
applyInfo:Object
},
components: { components: {
UE UE
}, },
created() {}, created() {
console.log(this.applyInfo);
},
data() { data() {
return { return {
dialogVisible: true, dialogVisible: false,
activeName: "first", activeName: "first",
versionRow: { versionRow: {
content: "" content: ""
......
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