Commit fd9c02ef authored by levante's avatar levante

123

parent 8fdb1ab9
......@@ -139,21 +139,21 @@ Vue.use(Calendar)
// Vue.use(Carousel)
Vue.use(Tooltip)
import { NavBar } from 'vant';
import { Form as vantForm } from 'vant';
import { Field } from 'vant';
import { Button as vantButton } from 'vant';
import { Calendar as vanCalendar } from 'vant';
import { Picker as vanPicker } from 'vant';
import { DatetimePicker as vanDatetimePicker } from 'vant';
import { Popup } from 'vant';
import { Notify } from 'vant';
import { Dialog } from 'vant';
Vue.use(vantForm);
Vue.use(NavBar);
Vue.use(Field);
Vue.use(vantButton);
import { NavBar } from 'vant'
import { Form as vantForm } from 'vant'
import { Field } from 'vant'
import { Button as vantButton } from 'vant'
import { Calendar as vanCalendar } from 'vant'
import { Picker as vanPicker } from 'vant'
import { DatetimePicker as vanDatetimePicker } from 'vant'
import { Popup } from 'vant'
import { Notify } from 'vant'
import { Dialog } from 'vant'
Vue.use(vantForm)
Vue.use(NavBar)
Vue.use(Field)
Vue.use(vantButton)
Vue.use(vanCalendar)
Vue.use(vanPicker)
Vue.use(vanDatetimePicker)
......@@ -161,8 +161,7 @@ Vue.use(Popup)
Vue.use(Notify)
Vue.use(Dialog)
import 'vant/lib/index.css';
import 'vant/lib/index.css'
Vue.config.productionTip = false
Vue.prototype.$ajax = ajax
......
let BASE_URL = '', MOCK_URL='',WBX_URL = '',
let BASE_URL = '', MOCK_URL='', WBX_URL = '',
FANGDI_URL = 'http://962121.fgj.sh.gov.cn/wyweb/shanghaiwuye'
switch (process.env.NODE_ENV) {
......
......@@ -173,25 +173,25 @@ export default {
},
mounted() {
},
methods:{
methods: {
onConfirm() {},
onSubmit() {
this.$ajax.post({
url: this.$api.POST_RESERVATION_FORM,
params: {
"stNameFrst": this.sectName,
"unitLoad": this.sectAddrRoad,
"unitLong": this.sectAddrLong,
"addrFrst": this.mpzAddr,
"place": this.repairArea,
"type": this.repairType,
"dscr": this.description,
"homeDate": this.dueDate,
"homeTime": this.dueTime
'stNameFrst': this.sectName,
'unitLoad': this.sectAddrRoad,
'unitLong': this.sectAddrLong,
'addrFrst': this.mpzAddr,
'place': this.repairArea,
'type': this.repairType,
'dscr': this.description,
'homeDate': this.dueDate,
'homeTime': this.dueTime
}
}).then(res => {
if(res.code == 200) {
this.$notify({ type: 'primary', message: '提交成功!' });
this.$notify({ type: 'primary', message: '提交成功!' })
this.showDialog = !this.showDialog
}
})
......
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