|
|
@ -145,14 +145,14 @@ |
|
|
|
<div style="display: flex;flex-direction: row;justify-content: flex-start;align-items: center;"> |
|
|
|
<div style="margin-right: 10px"> |
|
|
|
<span><span class="icon">*</span>是否已销售:</span> |
|
|
|
<el-radio-group v-model="formobj.isSales"> |
|
|
|
<el-radio-group v-model="formobj.isSales" @change="clearByCar"> |
|
|
|
<el-radio label="1">是</el-radio> |
|
|
|
<el-radio label="0">否</el-radio> |
|
|
|
</el-radio-group> |
|
|
|
</div> |
|
|
|
<div style="margin-right: 10px"> |
|
|
|
<span><span class="icon">*</span>款项是否已交清:</span> |
|
|
|
<el-radio-group v-model="formobj.isSettle"> |
|
|
|
<el-radio-group v-model="formobj.isSettle" @change="clearByCar"> |
|
|
|
<el-radio label="1">是</el-radio> |
|
|
|
<el-radio label="0">否</el-radio> |
|
|
|
</el-radio-group> |
|
|
@ -566,6 +566,9 @@ export default { |
|
|
|
list: [] |
|
|
|
} |
|
|
|
}, |
|
|
|
clearByCar() { |
|
|
|
this.formobj.vehicleList = [] |
|
|
|
}, |
|
|
|
toSelect() { |
|
|
|
if (this.formobj.isSettle !== '' && this.formobj.isSales !== '') { |
|
|
|
this.viewState = 2 |
|
|
|