Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
md-vue-chc
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
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
何鹏程
md-vue-chc
Commits
492a0cf2
Commit
492a0cf2
authored
Jul 06, 2021
by
何鹏程
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改bug
parent
aab0fa09
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
1 addition
and
9 deletions
+1
-9
emergencyCarDialog.vue
src/page/emergencyCar/components/emergencyCarDialog.vue
+0
-1
saveDialog.vue
src/page/greenWay/components/saveDialog.vue
+0
-1
NavBar.vue
src/page/layout/NavBar.vue
+0
-1
saveDialog.vue
src/page/rescue/components/saveDialog.vue
+1
-2
index.vue
src/page/siteQuery/index.vue
+0
-4
No files found.
src/page/emergencyCar/components/emergencyCarDialog.vue
View file @
492a0cf2
...
...
@@ -473,7 +473,6 @@ export default {
beforeAvatarUpload
(
file
)
{
const
isJPG
=
file
.
type
===
'image/jpeg'
||
file
.
type
===
'image/jpg'
||
file
.
type
===
'image/png'
;
const
isLt2M
=
file
.
size
/
1024
/
1024
<
2
;
console
.
log
(
file
.
type
)
if
(
!
isJPG
)
{
this
.
$message
.
error
(
'上传车辆图片只能是 jpg/jpeg/png 格式!'
);
}
...
...
src/page/greenWay/components/saveDialog.vue
View file @
492a0cf2
...
...
@@ -150,7 +150,6 @@ export default {
computed
:
{
title
:
function
()
{
let
str
=
'武汉市医疗急救绿道信息'
console
.
log
(
this
.
type
)
if
(
this
.
type
===
'add'
)
{
str
+=
'填写'
}
else
if
(
this
.
type
===
'update'
)
{
...
...
src/page/layout/NavBar.vue
View file @
492a0cf2
...
...
@@ -40,7 +40,6 @@ export default {
watch
:
{
},
mounted
()
{
console
.
log
(
this
.
menuMap
)
this
.
initNav
()
// this.leftMenu = [
// {
...
...
src/page/rescue/components/saveDialog.vue
View file @
492a0cf2
...
...
@@ -119,7 +119,6 @@ export default {
computed
:
{
title
:
function
()
{
let
str
=
'武汉市医院急诊科资源信息'
console
.
log
(
this
.
type
)
if
(
this
.
type
===
'add'
)
{
str
+=
'填写'
}
else
if
(
this
.
type
===
'update'
)
{
...
...
@@ -192,7 +191,7 @@ export default {
this
.
loading
=
true
this
.
type
=
type
this
.
formDisabled
=
type
===
'detail'
if
(
type
===
'update'
)
{
if
(
type
===
'update'
||
type
===
'detail'
)
{
if
(
!
id
)
{
this
.
$message
.
error
(
'id不能为空'
)
return
...
...
src/page/siteQuery/index.vue
View file @
492a0cf2
...
...
@@ -151,7 +151,6 @@ export default {
},
mounted
()
{
this
.
init
()
console
.
log
(
'mounted'
)
},
methods
:
{
init
()
{
...
...
@@ -174,7 +173,6 @@ export default {
// 地图上打点
queryEmergencySiteList
().
then
(
res
=>
{
if
(
res
.
msg
===
201
)
{
console
.
log
(
res
.
respData
)
if
(
res
.
respData
&&
res
.
respData
.
length
>
0
)
{
this
.
allData
=
res
.
respData
this
.
siteListData
=
res
.
respData
...
...
@@ -184,7 +182,6 @@ export default {
const
marker
=
new
BMapGL
.
Marker
(
point
)
map
.
addOverlay
(
marker
)
marker
.
addEventListener
(
'click'
,
()
=>
{
console
.
log
(
'click'
,
item
)
this
.
getSiteListData
(
item
.
areaName
)
this
.
$nextTick
(()
=>
{
const
dataList
=
this
.
allData
.
filter
(
i
=>
i
.
id
===
item
.
id
)
||
[]
...
...
@@ -216,7 +213,6 @@ export default {
});
//建立多边形覆盖物
map
.
addOverlay
(
ply
);
//添加覆盖物
ply
.
addEventListener
(
'click'
,
()
=>
{
console
.
log
(
'1111'
)
that
.
getSiteListData
(
districtName
)
})
}
...
...
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