Commit fc95f762 authored by linxin's avatar linxin

发车申请字段修改

parent 4eff5fff
...@@ -44,7 +44,9 @@ ...@@ -44,7 +44,9 @@
</item> </item>
<item> <item>
<div slot="name">发车日期</div> <div slot="name">发车日期</div>
<input slot="content" v-model="info.departure_date" placeholder="请输入发车日期" @click="showTime('YYYY-MM-DD')"> <input
slot="content" v-model="info.departure_date" readonly placeholder="请输入发车日期"
@click="showTime('YYYY-MM-DD')">
</item> </item>
<!-- <item :showArrow="true" @click.native="showModalValue=true"> <!-- <item :showArrow="true" @click.native="showModalValue=true">
<div slot="name">产品参数</div> <div slot="name">产品参数</div>
...@@ -356,7 +358,7 @@ export default { ...@@ -356,7 +358,7 @@ export default {
nowDate: `${this.carDate}`, nowDate: `${this.carDate}`,
format: format, format: format,
callback: (date) => { callback: (date) => {
this.showDate = date this.info.departure_date = date
}, },
}) })
}, },
...@@ -401,6 +403,9 @@ export default { ...@@ -401,6 +403,9 @@ export default {
}, },
getRent (e) { getRent (e) {
let vm = this let vm = this
for (let i in vm.info) {
vm.info[i] = ''
}
vm.info.contract_id = e vm.info.contract_id = e
let url = process.env.basePath + 'leases_info_query' let url = process.env.basePath + 'leases_info_query'
let param = { let param = {
......
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