Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mp-enterprise-people-recruitment-h5
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
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
彭佳妮(贵阳日报)
mp-enterprise-people-recruitment-h5
Commits
8c37f24e
Commit
8c37f24e
authored
Oct 11, 2024
by
石建新(贵阳日报)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
2647354d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
28 additions
and
3 deletions
+28
-3
main.ts
src/main.ts
+2
-0
step3.vue
src/pages/recommend/releasePostion/step3.vue
+25
-2
index.vue
src/pages/user/feedbackDetails/index.vue
+1
-1
No files found.
src/main.ts
View file @
8c37f24e
...
...
@@ -3,8 +3,10 @@ import App from "./App.vue";
import
store
from
"./store"
;
import
Vconsole
from
"vconsole"
;
import
NavBar
from
"@/components/navBar/index.vue"
;
import
{
formatTimestamp
}
from
"@/utils/utils"
;
export
function
createApp
()
{
const
app
=
createSSRApp
(
App
);
app
.
config
.
globalProperties
.
$formatTimestamp
=
formatTimestamp
;
app
.
component
(
"NavBar"
,
NavBar
);
const
vConsole
=
new
Vconsole
();
app
.
use
(
store
,
vConsole
);
...
...
src/pages/recommend/releasePostion/step3.vue
View file @
8c37f24e
<
template
>
<NavBar
:showIcon=
"true"
:showTitle=
"false"
title=
""
backgroundBox=
"#FFFFFF"
></NavBar>
<NavBar
v-if=
"showTab"
:showIcon=
"true"
:showTitle=
"false"
title=
""
backgroundBox=
"#FFFFFF"
></NavBar>
<div
class=
"page"
>
<view
class=
"title"
>
<view
class=
"t1"
>
3/5工作地点
</view>
...
...
@@ -32,11 +32,12 @@
<
script
setup
>
import
{
ref
}
from
"vue"
;
import
{
useReleasePostionStore
}
from
"./store"
;
const
showTab
=
ref
(
true
);
const
address
=
ref
(
""
);
const
{
formData
,
setFormDataKey
}
=
useReleasePostionStore
();
const
getLocaltion
=
()
=>
{
showTab
.
value
=
false
;
xma
.
chooseLocation
({
success
:
res
=>
{
console
.
log
(
res
);
...
...
@@ -46,6 +47,8 @@ const getLocaltion = () => {
setFormDataKey
(
"locationLongitude"
,
res
.
longitude
||
106.647169
);
setFormDataKey
(
"locationLatitude"
,
res
.
latitude
||
26.615808
);
setFormDataKey
(
"address"
,
res
.
name
||
"华贵保险大厦"
);
setTimeout
(()
=>
{},
1000
);
showTab
.
value
=
true
;
/*
address: "长岭南路178号"
distance: 124
...
...
@@ -72,6 +75,26 @@ image {
height
:
13px
;
}
:deep
(
#u-a-c
.uni-system-choose-location
.nav
)
{
top
:
20px
!
important
;
background-image
:
none
;
}
:deep
(
#u-a-c
.uni-system-choose-location
.nav-btn
)
{
background-color
:
#007aff
;
border-radius
:
10px
;
}
:deep
(
#u-a-c
.uni-system-choose-location
.nav-btn.back
)
{
background-color
:
#007aff
;
border-radius
:
10px
;
top
:
50px
;
left
:
10px
;
}
:deep
(
#u-a-c
.uni-system-choose-location
.nav-btn.confirm
)
{
background-color
:
#007aff
;
border-radius
:
10px
;
top
:
50px
;
right
:
10px
;
}
.foot-btn
{
position
:
fixed
;
display
:
flex
;
...
...
src/pages/user/feedbackDetails/index.vue
View file @
8c37f24e
...
...
@@ -66,7 +66,7 @@ const feedbackByIdFn = id => {
};
function
previewImage
(
url
)
{
xma
.
previewImage
({
current
:
url
// 当前显示图片的http链接
urls
:
[
url
]
// 需要预览的图片http链接列表
});
}
/* 选择图片 */
...
...
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