|
@@ -208,24 +208,24 @@
|
|
|
style="width: 100%"
|
|
|
:cell-style="{'text-align':'center'}"
|
|
|
>
|
|
|
- <div style="float: left;">111</div>
|
|
|
-
|
|
|
<el-table-column
|
|
|
label="可停区域"
|
|
|
class="tableColumn"
|
|
|
align="center"
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
|
- <span style="width: 5px;color: #F56C6C;">*</span>
|
|
|
+ <span style="width: 5px;color: #F56C6C; float: left;">*</span>
|
|
|
<el-form-item
|
|
|
prop="parkingArea"
|
|
|
ref="againValue"
|
|
|
+ style="float: left;"
|
|
|
>
|
|
|
|
|
|
<el-select
|
|
|
placeholder="请选择"
|
|
|
v-model="tableData[scope.$index].parkingArea"
|
|
|
@click.native="parking"
|
|
|
+ style="float: left;"
|
|
|
>
|
|
|
<el-option
|
|
|
v-for="(item,index) in eloption"
|
|
@@ -821,6 +821,7 @@ export default {
|
|
|
return;
|
|
|
},
|
|
|
positionInformation (id) {
|
|
|
+ debugger
|
|
|
new Promise((resolve) => {
|
|
|
this.$store.dispatch('addPopup', {
|
|
|
url: '/vehicleInformation/setpPage/native.vue',
|
|
@@ -829,13 +830,15 @@ export default {
|
|
|
props: {
|
|
|
callback: resolve,
|
|
|
id: id,
|
|
|
- positionInformation: this.tableData
|
|
|
+ positionInformation: this.tableData[id].positionInformation,
|
|
|
+ value: this.tableData[id].parkingId,
|
|
|
},
|
|
|
|
|
|
hideStar: true,
|
|
|
title: '选择车位'
|
|
|
});
|
|
|
}).then((data) => {
|
|
|
+ debugger
|
|
|
var id = data[0].id;
|
|
|
this.tableData[id].positionInformation = data[0].positionInformation;
|
|
|
this.tableData[id].parkingId = data[0].value;
|
|
@@ -857,6 +860,7 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
addEdit (row) {
|
|
|
+
|
|
|
new Promise((resolve) => {
|
|
|
this.$store.dispatch('addPopup', {
|
|
|
url: '/vehicleInformation/setpPage/configure.vue',
|
|
@@ -873,6 +877,7 @@ export default {
|
|
|
title: '更多配置'
|
|
|
});
|
|
|
}).then((data) => {
|
|
|
+
|
|
|
var id = data.id;
|
|
|
this.form[id].vehicleType = data.vehicleType;
|
|
|
this.form[id].vehicleColor = data.vehicleColor;
|