Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mobi
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wbx-PCAndMobi
mobi
Commits
fd9c02ef
Commit
fd9c02ef
authored
May 26, 2021
by
levante
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
123
parent
8fdb1ab9
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
82 additions
and
83 deletions
+82
-83
main.js
src/main.js
+16
-17
api.js
src/server/api.js
+1
-1
mobi.vue
src/views/mobi.vue
+65
-65
No files found.
src/main.js
View file @
fd9c02ef
...
@@ -139,21 +139,21 @@ Vue.use(Calendar)
...
@@ -139,21 +139,21 @@ Vue.use(Calendar)
// Vue.use(Carousel)
// Vue.use(Carousel)
Vue
.
use
(
Tooltip
)
Vue
.
use
(
Tooltip
)
import
{
NavBar
}
from
'vant'
;
import
{
NavBar
}
from
'vant'
import
{
Form
as
vantForm
}
from
'vant'
;
import
{
Form
as
vantForm
}
from
'vant'
import
{
Field
}
from
'vant'
;
import
{
Field
}
from
'vant'
import
{
Button
as
vantButton
}
from
'vant'
;
import
{
Button
as
vantButton
}
from
'vant'
import
{
Calendar
as
vanCalendar
}
from
'vant'
;
import
{
Calendar
as
vanCalendar
}
from
'vant'
import
{
Picker
as
vanPicker
}
from
'vant'
;
import
{
Picker
as
vanPicker
}
from
'vant'
import
{
DatetimePicker
as
vanDatetimePicker
}
from
'vant'
;
import
{
DatetimePicker
as
vanDatetimePicker
}
from
'vant'
import
{
Popup
}
from
'vant'
;
import
{
Popup
}
from
'vant'
import
{
Notify
}
from
'vant'
;
import
{
Notify
}
from
'vant'
import
{
Dialog
}
from
'vant'
;
import
{
Dialog
}
from
'vant'
Vue
.
use
(
vantForm
)
;
Vue
.
use
(
vantForm
)
Vue
.
use
(
NavBar
)
;
Vue
.
use
(
NavBar
)
Vue
.
use
(
Field
)
;
Vue
.
use
(
Field
)
Vue
.
use
(
vantButton
)
;
Vue
.
use
(
vantButton
)
Vue
.
use
(
vanCalendar
)
Vue
.
use
(
vanCalendar
)
Vue
.
use
(
vanPicker
)
Vue
.
use
(
vanPicker
)
Vue
.
use
(
vanDatetimePicker
)
Vue
.
use
(
vanDatetimePicker
)
...
@@ -161,8 +161,7 @@ Vue.use(Popup)
...
@@ -161,8 +161,7 @@ Vue.use(Popup)
Vue
.
use
(
Notify
)
Vue
.
use
(
Notify
)
Vue
.
use
(
Dialog
)
Vue
.
use
(
Dialog
)
import
'vant/lib/index.css'
import
'vant/lib/index.css'
;
Vue
.
config
.
productionTip
=
false
Vue
.
config
.
productionTip
=
false
Vue
.
prototype
.
$ajax
=
ajax
Vue
.
prototype
.
$ajax
=
ajax
...
...
src/server/api.js
View file @
fd9c02ef
let
BASE_URL
=
''
,
MOCK_URL
=
''
,
WBX_URL
=
''
,
let
BASE_URL
=
''
,
MOCK_URL
=
''
,
WBX_URL
=
''
,
FANGDI_URL
=
'http://962121.fgj.sh.gov.cn/wyweb/shanghaiwuye'
FANGDI_URL
=
'http://962121.fgj.sh.gov.cn/wyweb/shanghaiwuye'
switch
(
process
.
env
.
NODE_ENV
)
{
switch
(
process
.
env
.
NODE_ENV
)
{
...
...
src/views/mobi.vue
View file @
fd9c02ef
...
@@ -173,25 +173,25 @@ export default {
...
@@ -173,25 +173,25 @@ export default {
},
},
mounted
()
{
mounted
()
{
},
},
methods
:
{
methods
:
{
onConfirm
()
{},
onConfirm
()
{},
onSubmit
()
{
onSubmit
()
{
this
.
$ajax
.
post
({
this
.
$ajax
.
post
({
url
:
this
.
$api
.
POST_RESERVATION_FORM
,
url
:
this
.
$api
.
POST_RESERVATION_FORM
,
params
:
{
params
:
{
"stNameFrst"
:
this
.
sectName
,
'stNameFrst'
:
this
.
sectName
,
"unitLoad"
:
this
.
sectAddrRoad
,
'unitLoad'
:
this
.
sectAddrRoad
,
"unitLong"
:
this
.
sectAddrLong
,
'unitLong'
:
this
.
sectAddrLong
,
"addrFrst"
:
this
.
mpzAddr
,
'addrFrst'
:
this
.
mpzAddr
,
"place"
:
this
.
repairArea
,
'place'
:
this
.
repairArea
,
"type"
:
this
.
repairType
,
'type'
:
this
.
repairType
,
"dscr"
:
this
.
description
,
'dscr'
:
this
.
description
,
"homeDate"
:
this
.
dueDate
,
'homeDate'
:
this
.
dueDate
,
"homeTime"
:
this
.
dueTime
'homeTime'
:
this
.
dueTime
}
}
}).
then
(
res
=>
{
}).
then
(
res
=>
{
if
(
res
.
code
==
200
)
{
if
(
res
.
code
==
200
)
{
this
.
$notify
({
type
:
'primary'
,
message
:
'提交成功!'
});
this
.
$notify
({
type
:
'primary'
,
message
:
'提交成功!'
})
this
.
showDialog
=
!
this
.
showDialog
this
.
showDialog
=
!
this
.
showDialog
}
}
})
})
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment