Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
sensorConsult
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
zhanglw
sensorConsult
Commits
4c3c7688
Commit
4c3c7688
authored
Jul 25, 2023
by
zhanglw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
商务通
parent
4d824c8a
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
42 additions
and
11 deletions
+42
-11
index.html
public/index.html
+4
-0
floatBtn.vue
src/views/homepage/components/floatBtn.vue
+6
-1
index.vue
src/views/homepage/course/index.vue
+3
-1
index.vue
src/views/homepage/index.vue
+8
-2
details.vue
src/views/homepage/information/details.vue
+3
-1
index.vue
src/views/homepage/information/index.vue
+3
-1
hardware.vue
src/views/homepage/product/hardware.vue
+3
-1
index.vue
src/views/homepage/product/index.vue
+3
-1
index.vue
src/views/homepage/project/index.vue
+3
-1
index.vue
src/views/homepage/software/index.vue
+3
-1
index.vue
src/views/homepage/supplier/index.vue
+3
-1
No files found.
public/index.html
View file @
4c3c7688
...
...
@@ -7,10 +7,14 @@
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"
>
<link
rel=
"icon"
href=
"<%= BASE_URL %>favicon.ico"
>
<title><
%=
webpackConfig
.
name
%
></title>
<!-- <style >-->
<!-- #LRdiv0{display:none !important;}-->
<!-- </style>-->
<script
type=
"text/javascript"
src=
"https://api.map.baidu.com/api?v=1.0&type=webgl&ak=686ljhxEzzmQTsn2nYUnngIYKZfLTVsm"
></script>
</head>
<body>
<div
id=
"app"
></div>
<!-- built files will be auto injected -->
</body>
<script
type=
"text/javascript"
src=
"http://dct.zoosnet.net/JS/LsJS.aspx?siteid=DCT66957702&lng=cn"
></script>
</html>
src/views/homepage/components/floatBtn.vue
View file @
4c3c7688
<
template
>
<div
class=
"fixed-contact"
>
<ul
class=
"fixed-contact-list"
>
<li
class=
"fixed-contact-item"
>
<li
class=
"fixed-contact-item"
@
click=
"customerQA"
>
<svg-icon
icon-class=
"z_msg"
class-name=
"icon"
/>
<div
class=
"label"
>
在线客服
</div>
<div
class=
"line-s"
/>
...
...
@@ -48,6 +48,11 @@ export default {
})
},
methods
:
{
customerQA
()
{
/* eslint-disable */
openZoosUrl
(
'
chatwin
'
)
/* eslint-enable */
},
goTop
()
{
this
.
$parent
.
goTop
()
}
...
...
src/views/homepage/course/index.vue
View file @
4c3c7688
...
...
@@ -32,6 +32,7 @@
<home-footer
ref=
"homeFooter"
/>
<inquiry-view
ref=
"inquiryView"
/>
<el-backtop
/>
<float-btn
ref=
"floatBtn"
/>
</div>
</
template
>
<
script
>
...
...
@@ -42,9 +43,10 @@ import languageSetting from '../components/languageSettingV2'
import
breadcrumb
from
'
../components/breadcrumb
'
import
homeFooter
from
'
../components/homeFooter
'
import
inquiryView
from
'
../components/inquiryView
'
import
floatBtn
from
'
../components/floatBtn
'
export
default
{
components
:
{
titleMenus
,
userLogin
,
languageSetting
,
breadcrumb
,
homeFooter
,
inquiryView
},
components
:
{
titleMenus
,
userLogin
,
languageSetting
,
breadcrumb
,
homeFooter
,
inquiryView
,
floatBtn
},
dicts
:
[],
data
()
{
return
{
...
...
src/views/homepage/index.vue
View file @
4c3c7688
...
...
@@ -318,7 +318,8 @@ export default {
onDictReady
(
dict
)
{
this
.
currentProductTypeObj
=
dict
.
product_type
[
0
]
HttpReq
.
webClientApi
.
homePageGetProduct
({
preview
:
false
preview
:
false
,
productType
:
this
.
currentProductTypeObj
.
value
}).
then
((
res
)
=>
{
this
.
showcaseProducts
=
res
.
data
.
showcaseProducts
})
...
...
@@ -330,7 +331,12 @@ export default {
if
(
this
.
currentProductTypeObj
===
item
)
{
return
}
console
.
log
(
item
)
HttpReq
.
webClientApi
.
homePageGetProduct
({
preview
:
false
,
productType
:
this
.
currentProductTypeObj
.
value
}).
then
((
res
)
=>
{
this
.
showcaseProducts
=
res
.
data
.
showcaseProducts
})
this
.
currentProductTypeObj
=
item
},
this
.
throttleTime
)
},
...
...
src/views/homepage/information/details.vue
View file @
4c3c7688
...
...
@@ -33,6 +33,7 @@
<home-footer
ref=
"homeFooter"
/>
<inquiry-view
ref=
"inquiryView"
/>
<el-backtop
/>
<float-btn
ref=
"floatBtn"
/>
</div>
</
template
>
<
script
>
...
...
@@ -43,9 +44,10 @@ import userLogin from '../components/userLoginV2'
import
languageSetting
from
'
../components/languageSettingV2
'
import
homeFooter
from
'
../components/homeFooter
'
import
inquiryView
from
'
../components/inquiryView
'
import
floatBtn
from
'
../components/floatBtn
'
export
default
{
components
:
{
titleMenus
,
userLogin
,
languageSetting
,
homeFooter
,
inquiryView
},
components
:
{
titleMenus
,
userLogin
,
languageSetting
,
homeFooter
,
inquiryView
,
floatBtn
},
dicts
:
[],
data
()
{
return
{
...
...
src/views/homepage/information/index.vue
View file @
4c3c7688
...
...
@@ -66,6 +66,7 @@
<home-footer
ref=
"homeFooter"
/>
<inquiry-view
ref=
"inquiryView"
/>
<el-backtop
/>
<float-btn
ref=
"floatBtn"
/>
</div>
</
template
>
<
script
>
...
...
@@ -77,9 +78,10 @@ import languageSetting from '../components/languageSettingV2'
import
breadcrumb
from
'
../components/breadcrumb
'
import
homeFooter
from
'
../components/homeFooter
'
import
inquiryView
from
'
../components/inquiryView
'
import
floatBtn
from
'
../components/floatBtn
'
export
default
{
components
:
{
titleMenus
,
userLogin
,
languageSetting
,
breadcrumb
,
homeFooter
,
inquiryView
},
components
:
{
titleMenus
,
userLogin
,
languageSetting
,
breadcrumb
,
homeFooter
,
inquiryView
,
floatBtn
},
dicts
:
[],
data
()
{
return
{
...
...
src/views/homepage/product/hardware.vue
View file @
4c3c7688
...
...
@@ -126,6 +126,7 @@
<home-footer
ref=
"homeFooter"
/>
<inquiry-view
ref=
"inquiryView"
/>
<el-backtop
/>
<float-btn
ref=
"floatBtn"
/>
</div>
</
template
>
<
script
>
...
...
@@ -135,9 +136,10 @@ import userLogin from '../components/userLoginV2'
import
languageSetting
from
'
../components/languageSettingV2
'
import
homeFooter
from
'
../components/homeFooter
'
import
inquiryView
from
'
../components/inquiryView
'
import
floatBtn
from
'
../components/floatBtn
'
export
default
{
components
:
{
titleMenus
,
userLogin
,
languageSetting
,
homeFooter
,
inquiryView
},
components
:
{
titleMenus
,
userLogin
,
languageSetting
,
homeFooter
,
inquiryView
,
floatBtn
},
dicts
:
[
'
product_type
'
,
'
area_province
'
],
data
()
{
return
{
...
...
src/views/homepage/product/index.vue
View file @
4c3c7688
...
...
@@ -177,6 +177,7 @@
<home-footer
ref=
"homeFooter"
/>
<inquiry-view
ref=
"inquiryView"
/>
<el-backtop
/>
<float-btn
ref=
"floatBtn"
/>
</div>
</
template
>
<
script
>
...
...
@@ -189,9 +190,10 @@ import languageSetting from '../components/languageSettingV2'
import
breadcrumb
from
'
../components/breadcrumb
'
import
homeFooter
from
'
../components/homeFooter
'
import
inquiryView
from
'
../components/inquiryView
'
import
floatBtn
from
'
../components/floatBtn
'
export
default
{
components
:
{
titleMenus
,
userLogin
,
languageSetting
,
breadcrumb
,
homeFooter
,
inquiryView
},
components
:
{
titleMenus
,
userLogin
,
languageSetting
,
breadcrumb
,
homeFooter
,
inquiryView
,
floatBtn
},
dicts
:
[
'
product_type
'
,
'
area_province
'
],
data
()
{
return
{
...
...
src/views/homepage/project/index.vue
View file @
4c3c7688
...
...
@@ -68,6 +68,7 @@
<home-footer
ref=
"homeFooter"
/>
<inquiry-view
ref=
"inquiryView"
/>
<el-backtop
/>
<float-btn
ref=
"floatBtn"
/>
</div>
</
template
>
<
script
>
...
...
@@ -80,9 +81,10 @@ import languageSetting from '../components/languageSettingV2'
import
breadcrumb
from
'
../components/breadcrumb
'
import
homeFooter
from
'
../components/homeFooter
'
import
inquiryView
from
'
../components/inquiryView
'
import
floatBtn
from
'
../components/floatBtn
'
export
default
{
components
:
{
titleMenus
,
userLogin
,
languageSetting
,
breadcrumb
,
homeFooter
,
inquiryView
},
components
:
{
titleMenus
,
userLogin
,
languageSetting
,
breadcrumb
,
homeFooter
,
inquiryView
,
floatBtn
},
dicts
:
[],
data
()
{
return
{
...
...
src/views/homepage/software/index.vue
View file @
4c3c7688
...
...
@@ -31,6 +31,7 @@
<home-footer
ref=
"homeFooter"
/>
<inquiry-view
ref=
"inquiryView"
/>
<el-backtop
/>
<float-btn
ref=
"floatBtn"
/>
</div>
</
template
>
<
script
>
...
...
@@ -41,9 +42,10 @@ import languageSetting from '../components/languageSettingV2'
import
breadcrumb
from
'
../components/breadcrumb
'
import
homeFooter
from
'
../components/homeFooter
'
import
inquiryView
from
'
../components/inquiryView
'
import
floatBtn
from
'
../components/floatBtn
'
export
default
{
components
:
{
titleMenus
,
userLogin
,
languageSetting
,
breadcrumb
,
homeFooter
,
inquiryView
},
components
:
{
titleMenus
,
userLogin
,
languageSetting
,
breadcrumb
,
homeFooter
,
inquiryView
,
floatBtn
},
dicts
:
[],
data
()
{
return
{
...
...
src/views/homepage/supplier/index.vue
View file @
4c3c7688
...
...
@@ -121,6 +121,7 @@
<home-footer
ref=
"homeFooter"
/>
<inquiry-view
ref=
"inquiryView"
/>
<el-backtop
/>
<float-btn
ref=
"floatBtn"
/>
</div>
</
template
>
<
script
>
...
...
@@ -133,9 +134,10 @@ import languageSetting from '../components/languageSettingV2'
import
breadcrumb
from
'
../components/breadcrumb
'
import
homeFooter
from
'
../components/homeFooter
'
import
inquiryView
from
'
../components/inquiryView
'
import
floatBtn
from
'
../components/floatBtn
'
export
default
{
components
:
{
titleMenus
,
userLogin
,
languageSetting
,
breadcrumb
,
homeFooter
,
inquiryView
},
components
:
{
titleMenus
,
userLogin
,
languageSetting
,
breadcrumb
,
homeFooter
,
inquiryView
,
floatBtn
},
dicts
:
[
'
product_type
'
,
'
area_province
'
],
data
()
{
return
{
...
...
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