Commit 6e2b8cc2 authored by guoyou's avatar guoyou

延期租车不计免赔

parent c55a8866
......@@ -112,7 +112,7 @@ export default {
startTime: null,
endTime: null,
phone: null,
activityId: 1,
activityId: 2,
status: ''
}
}
......@@ -161,7 +161,7 @@ export default {
startTime: null,
endTime: null,
phone: null,
activityId: 1
activityId: 2
}
},
//导出
......
......@@ -213,7 +213,10 @@
type="datetime"
placeholder="选择日期时间">
</el-date-picker>
<el-button style="margin-top:20px" type="primary" @click="postponeBtn">确定</el-button>
<el-checkbox v-model="needDamageSafe" label="1" border>不计免赔</el-checkbox>
<p><el-button style="margin-top:20px" type="primary" @click="postponeBtn">确定</el-button></p>
</el-dialog>
</el-dialog>
</template>
......@@ -238,6 +241,7 @@ export default {
},
data() {
return {
needDamageSafe:null,
delayEndTime:null,//延期还车时间
postponePop:false,
returnForm: {
......@@ -300,7 +304,7 @@ export default {
let params = {
no:this.orderDetailInfo.no,
delayEndTime:time,
needDamageSafe:1
needDamageSafe:this.needDamageSafe ? 1 : null
}
postponeApi(params).then(data=>{
if (data.status == 200) {
......
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