Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
H
hls-xcmg-vue-app
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
xugong
hls-xcmg-vue-app
Commits
b7845ad2
Commit
b7845ad2
authored
May 12, 2023
by
jiacheng.mao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "ios安全区域适配调整,20230511"
This reverts commit
f70dffda
parent
f70dffda
Changes
47
Show whitespace changes
Inline
Side-by-side
Showing
47 changed files
with
1407 additions
and
20 deletions
+1407
-20
App.vue
src/App.vue
+0
-12
main.js
src/main.js
+2
-2
batchSign.vue
src/pages/carConfirm/batchSign.vue
+30
-0
confirm-list.vue
src/pages/carConfirm/confirm-list.vue
+52
-0
choose-user.vue
src/pages/choose-user.vue
+37
-0
add-undertake.vue
src/pages/contractCreate/add-undertake.vue
+40
-0
contract-create-list.vue
src/pages/contractCreate/contract-create-list.vue
+41
-0
create-base-info.vue
src/pages/contractCreate/create-base-info.vue
+20
-0
pick-lessee.vue
src/pages/contractCreate/pick-lessee.vue
+41
-0
sales-info.vue
src/pages/contractCreate/sales-info.vue
+41
-0
select-product.vue
src/pages/contractCreate/select-product.vue
+40
-0
contract-records.vue
src/pages/contractInquire/contract-records.vue
+41
-0
repay-detail.vue
src/pages/contractInquire/repay-detail.vue
+29
-0
contract-repayment.vue
src/pages/contractRepayment/contract-repayment.vue
+37
-0
repay-details.vue
src/pages/contractRepayment/repay-details.vue
+27
-0
contract-detail.vue
src/pages/contractSigning/contract-detail.vue
+1
-1
contract-signing.vue
src/pages/contractSigning/contract-signing.vue
+52
-0
start-list.vue
src/pages/contractStart/start-list.vue
+43
-0
contract-list.vue
src/pages/distributorSign/contract-list.vue
+41
-0
drawback-list.vue
src/pages/drawback/drawback-list.vue
+40
-0
financingApply-detail.vue
src/pages/financingApply/financingApply-detail.vue
+1
-1
financingApply-list.vue
src/pages/financingApply/financingApply-list.vue
+52
-0
financing-trial.vue
src/pages/financingTrial/financing-trial.vue
+41
-0
function-list.vue
src/pages/functionCenter/function-list.vue
+44
-0
guide.vue
src/pages/guide/guide.vue
+23
-0
home-page.vue
src/pages/home/home-page.vue
+2
-2
invoice.vue
src/pages/invoice/invoice.vue
+27
-0
login.vue
src/pages/login.vue
+43
-0
message-list.vue
src/pages/messageCenter/message-list.vue
+32
-0
my-info.vue
src/pages/myInfo/my-info.vue
+19
-0
myBindUser.vue
src/pages/myInfo/myBindUser.vue
+38
-0
my-product-list.Vue
src/pages/myProductCollection/my-product-list.Vue
+43
-0
list.vue
src/pages/overTimeApply/list.vue
+44
-1
detail.vue
src/pages/overTimeQuery/detail.vue
+29
-0
list.vue
src/pages/overTimeQuery/list.vue
+44
-0
contract-record.vue
src/pages/pay/firstPay/contract-record.vue
+26
-0
contract-record.vue
src/pages/pay/payment/contract-record.vue
+19
-0
entity-list.vue
src/pages/productQuery/entity-list.vue
+41
-0
query-home.vue
src/pages/productQuery/query-home.vue
+44
-0
reimburse-myself-list.Vue
src/pages/reimburseMyself/reimburse-myself-list.Vue
+41
-0
tab.vue
src/pages/tab.vue
+16
-0
video-list.vue
src/pages/videoSign/video-list.vue
+42
-0
platform-ios.less
src/styles/platform-ios.less
+10
-0
platform-iosx.less
src/styles/platform-iosx.less
+14
-0
platform-iosxr.less
src/styles/platform-iosxr.less
+13
-0
public-style.less
src/styles/public-style.less
+3
-0
index.html
www/index.html
+1
-1
No files found.
src/App.vue
View file @
b7845ad2
...
...
@@ -62,18 +62,6 @@ export default {
//overflow: auto;
//-webkit-overflow-scrolling: touch;
//overflow-scrolling: touch;
/* 兼容 iOS < 11.2 */
padding-top: constant(safe-area-inset-top);
padding-left: constant(safe-area-inset-left);
padding-right: constant(safe-area-inset-right);
padding-bottom: constant(safe-area-inset-bottom);
/* 兼容 iOS >= 11.2 */
padding-top: env(safe-area-inset-top);
padding-left: env(safe-area-inset-left);
padding-right: env(safe-area-inset-right);
padding-bottom: env(safe-area-inset-bottom);
}
.weui-dialog {
...
...
src/main.js
View file @
b7845ad2
...
...
@@ -63,13 +63,13 @@ import Jpush from './scripts/jpushService'
import
Jmessage
from
'./scripts/jmessageService'
// || process.env.CONFIG_ENV === 'prod'
/*
if (process.env.CONFIG_ENV === 'uat') {
if
(
process
.
env
.
CONFIG_ENV
===
'uat'
)
{
const
VConsole
=
require
(
'vconsole'
)
new
VConsole
()
// eslint-disable-line
}
else
if
(
process
.
env
.
CONFIG_ENV
===
'dev'
){
const
VConsole
=
require
(
'vconsole'
)
new
VConsole
()
// eslint-disable-line
}
*/
}
Vue
.
use
(
componentInstall
)
Vue
.
use
(
components
)
Vue
.
use
(
appStyle
)
...
...
src/pages/carConfirm/batchSign.vue
View file @
b7845ad2
...
...
@@ -388,4 +388,34 @@ export default {
}
}
.platform-ios {
#batch-sign {
.scrollContent {
padding-top: 2.32rem;
padding-bottom: 50px;
}
}
}
// iPhoneX适配
@media (device-width: 375px) and (device-height: 812px) and (-webkit-min-device-pixel-ratio: 3) {
.platform-ios {
#query {
.scrollContent {
padding-top: 2.72rem;
}
}
}
}
// iPhoneXR适配
@media (device-width: 414px) and (device-height: 896px) {
.platform-ios {
#query {
.scrollContent {
padding-top: 2.72rem;
}
}
}
}
</
style
>
src/pages/carConfirm/confirm-list.vue
View file @
b7845ad2
...
...
@@ -484,4 +484,56 @@ export default {
position: absolute;
}
}
.platform-ios {
#confirmList {
.scrollContent {
padding-top: 3.32rem;
padding-bottom: 1.2rem;
}
}
}
@media (device-width: 375px) and (device-height: 812px) and (-webkit-min-device-pixel-ratio: 3) {
.platform-ios {
#confirmList {
.scrollContent {
padding-top: 3.72rem;
padding-bottom: 1.2rem;
}
.check-bottom {
bottom: 32px;
}
}
}
}
// iPhoneXR适配
@media (device-width: 414px) and (device-height: 896px) {
.platform-ios {
#confirmList {
.scrollContent {
padding-top: 3.72rem;
padding-bottom: 1.2rem;
}
.search {
input {
background: url("../../assets/contractStart/search1.png") 320px
no-repeat;
background-size: 16px 16px;
background-color: rgba(239, 239, 239, 0.55);
padding: 8px 12px;
border-radius: 4px;
width: 100%;
font-family: PingFangSC-Regular;
font-size: 14px;
color: #888c8f;
}
}
.check-bottom {
bottom: 32px;
}
}
}
}
</
style
>
src/pages/choose-user.vue
View file @
b7845ad2
...
...
@@ -189,4 +189,41 @@ export default {
}
}
.platform-ios {
#query {
.scrollContent {
padding-top: 2.32rem;
}
}
}
// iPhoneX适配
@media (device-width: 375px) and (device-height: 812px) and (-webkit-min-device-pixel-ratio: 3) {
.platform-ios {
#query {
.scrollContent {
padding-top: 2.72rem;
}
}
}
#choose-user .submit {
bottom: 44px;
}
}
// iPhoneXR适配
@media (device-width: 414px) and (device-height: 896px) {
.platform-ios {
#query {
.scrollContent {
padding-top: 2.72rem;
}
}
}
#choose-user .submit {
bottom: 44px;
}
}
</
style
>
src/pages/contractCreate/add-undertake.vue
View file @
b7845ad2
...
...
@@ -229,4 +229,44 @@ export default {
padding-bottom: 20px;
}
}
.platform-ios {
#add-person {
.scrollContent {
padding-top: 2.4rem;
}
}
}
@media (device-width: 375px) and (device-height: 812px) and (-webkit-min-device-pixel-ratio: 3) {
.platform-ios {
#add-person {
.scrollContent {
padding-top: 2.8rem;
}
}
}
}
// iPhoneXR适配
@media (device-width: 414px) and (device-height: 896px) {
.platform-ios {
#add-person {
.scrollContent {
padding-top: 2.8rem;
}
.search {
input {
background: url("../../assets/contractStart/search1.png") 320px
no-repeat;
background-size: 16px 16px;
background-color: rgba(239, 239, 239, 0.55);
padding: 8px 12px;
border-radius: 4px;
width: 100%;
font-family: PingFangSC-Regular;
font-size: 14px;
color: #888c8f;
}
}
}
}
}
</
style
>
src/pages/contractCreate/contract-create-list.vue
View file @
b7845ad2
...
...
@@ -545,4 +545,45 @@ export default {
padding-bottom: 20px;
}
}
.platform-ios {
#contract-create-list {
.scrollContent {
padding-top: 3.4rem;
}
}
}
// iPhoneX适配
@media (device-width: 375px) and (device-height: 812px) and (-webkit-min-device-pixel-ratio: 3) {
.platform-ios {
#contract-create-list {
.scrollContent {
padding-top: 3.8rem;
}
}
}
}
// iPhoneXR适配
@media (device-width: 414px) and (device-height: 896px) {
.platform-ios {
#contract-create-list {
.scrollContent {
padding-top: 3.8rem;
}
.search {
input {
background: url("../../assets/contractStart/search1.png") 320px
no-repeat;
background-size: 16px 16px;
background-color: rgba(239, 239, 239, 0.55);
padding: 8px 12px;
border-radius: 4px;
width: 100%;
font-family: PingFangSC-Regular;
font-size: 14px;
color: #888c8f;
}
}
}
}
}
</
style
>
src/pages/contractCreate/create-base-info.vue
View file @
b7845ad2
...
...
@@ -1238,4 +1238,24 @@ export default {
}
}
}
@media (device-width: 414px) and (device-height: 896px) {
.platform-ios {
#add-person {
.search {
input {
background: url("../../assets/contractStart/search1.png") 320px
no-repeat;
background-size: 16px 16px;
background-color: rgba(239, 239, 239, 0.55);
padding: 8px 12px;
border-radius: 4px;
width: 100%;
font-family: PingFangSC-Regular;
font-size: 14px;
color: #888c8f;
}
}
}
}
}
</
style
>
src/pages/contractCreate/pick-lessee.vue
View file @
b7845ad2
...
...
@@ -179,4 +179,45 @@ export default {
padding-bottom: 20px;
}
}
.platform-ios {
#picker {
.scrollContent {
padding-top: 2.32rem;
}
}
}
// iPhoneX适配
@media (device-width: 375px) and (device-height: 812px) and (-webkit-min-device-pixel-ratio: 3) {
.platform-ios {
#picker {
.scrollContent {
padding-top: 2.72rem;
}
}
}
}
// iPhoneXR适配
@media (device-width: 414px) and (device-height: 896px) {
.platform-ios {
#picker {
.scrollContent {
padding-top: 2.72rem;
}
.search {
input {
background: url("../../assets/contractStart/search1.png") 320px
no-repeat;
background-size: 16px 16px;
background-color: rgba(239, 239, 239, 0.55);
padding: 8px 12px;
border-radius: 4px;
width: 100%;
font-family: PingFangSC-Regular;
font-size: 14px;
color: #888c8f;
}
}
}
}
}
</
style
>
src/pages/contractCreate/sales-info.vue
View file @
b7845ad2
...
...
@@ -687,4 +687,45 @@ export default {
}
}
}
.platform-ios {
#picker {
.scrollContent {
padding-top: 2.32rem;
}
}
}
// iPhoneX适配
@media (device-width: 375px) and (device-height: 812px) and (-webkit-min-device-pixel-ratio: 3) {
.platform-ios {
#picker {
.scrollContent {
padding-top: 2.72rem;
}
}
}
}
// iPhoneXR适配
@media (device-width: 414px) and (device-height: 896px) {
.platform-ios {
#picker {
.scrollContent {
padding-top: 2.72rem;
}
.search {
input {
background: url("../../assets/contractStart/search1.png") 320px
no-repeat;
background-size: 16px 16px;
background-color: rgba(239, 239, 239, 0.55);
padding: 8px 12px;
border-radius: 4px;
width: 100%;
font-family: PingFangSC-Regular;
font-size: 14px;
color: #888c8f;
}
}
}
}
}
</
style
>
src/pages/contractCreate/select-product.vue
View file @
b7845ad2
...
...
@@ -415,4 +415,44 @@ export default {
}
}
}
.platform-ios {
#product-list {
.scrollContent {
padding-top: 1.4rem;
}
}
}
@media (device-width: 375px) and (device-height: 812px) and (-webkit-min-device-pixel-ratio: 3) {
.platform-ios {
#product-list {
.scrollContent {
padding-top: 1.8rem;
}
}
}
}
// iPhoneXR适配
@media (device-width: 414px) and (device-height: 896px) {
.platform-ios {
#product-list {
.scrollContent {
padding-top: 1.8rem;
}
.search {
input {
background: url("../../assets/contractStart/search1.png") 320px
no-repeat;
background-size: 16px 16px;
background-color: rgba(239, 239, 239, 0.55);
padding: 8px 12px;
border-radius: 4px;
width: 100%;
font-family: PingFangSC-Regular;
font-size: 14px;
color: #888c8f;
}
}
}
}
}
</
style
>
src/pages/contractInquire/contract-records.vue
View file @
b7845ad2
...
...
@@ -939,4 +939,45 @@ export default {
padding-bottom: 20px;
}
}
.platform-ios {
#contract-records {
.scrollContent {
padding-top: 3rem;
}
}
}
// iPhoneX适配
@media (device-width: 375px) and (device-height: 812px) and (-webkit-min-device-pixel-ratio: 3) {
.platform-ios {
#contract-records {
.scrollContent {
padding-top: 3.4rem;
}
}
}
}
// iPhoneXR适配
@media (device-width: 414px) and (device-height: 896px) {
.platform-ios {
#contract-records {
.scrollContent {
padding-top: 3.4rem;
}
.search {
input {
background: url("../../assets/contractStart/search1.png") 320px
no-repeat;
background-size: 16px 16px;
background-color: rgba(239, 239, 239, 0.55);
padding: 8px 12px;
border-radius: 4px;
width: 100%;
font-family: PingFangSC-Regular;
font-size: 14px;
color: #888c8f;
}
}
}
}
}
</
style
>
src/pages/contractInquire/repay-detail.vue
View file @
b7845ad2
...
...
@@ -486,4 +486,33 @@ export default {
position: absolute;
}
}
.platform-ios {
#repay-detail {
.scrollContent {
// padding-top: 3.32rem;
}
}
}
@media (device-width: 375px) and (device-height: 812px) and (-webkit-min-device-pixel-ratio: 3) {
.platform-ios {
#repay-detail {
.scrollContent {
// padding-top: 3.72rem;
}
}
}
}
// iPhoneXR适配
@media (device-width: 414px) and (device-height: 896px) {
.platform-ios {
#repay-detail {
.scrollContent {
// padding-top: 3.72rem;
}
}
}
}
</
style
>
src/pages/contractRepayment/contract-repayment.vue
View file @
b7845ad2
...
...
@@ -310,4 +310,41 @@ export default {
padding-bottom: 20px;
}
}
.platform-ios {
#contract-repayment {
.scrollContent {
padding-top: 1.2rem;
}
.null{
margin-top:1.32em;
}
}
}
@media (device-width: 375px) and (device-height: 812px) and (-webkit-min-device-pixel-ratio: 3) {
.platform-ios {
#contract-repayment {
.scrollContent {
padding-top: 1.6rem;
}
.null{
margin-top:1.72em;
}
}
}
}
// iPhoneXR适配
@media (device-width: 414px) and (device-height: 896px) {
.platform-ios {
#contract-repayment {
.scrollContent {
padding-top: 1.6rem;
}
.null{
margin-top:1.72em;
}
}
}
}
</
style
>
src/pages/contractRepayment/repay-details.vue
View file @
b7845ad2
...
...
@@ -471,4 +471,31 @@ export default {
position: absolute;
}
}
.platform-ios {
#repay-details {
.scrollContent {
// padding-top: 3.32rem;
}
}
}
@media (device-width: 375px) and (device-height: 812px) and (-webkit-min-device-pixel-ratio: 3) {
.platform-ios {
#repay-details {
.scrollContent {
// padding-top: 3.72rem;
}
}
}
}
// iPhoneXR适配
@media (device-width: 414px) and (device-height: 896px) {
.platform-ios {
#repay-details {
.scrollContent {
// padding-top: 3.72rem;
}
}
}
}
</
style
>
src/pages/contractSigning/contract-detail.vue
View file @
b7845ad2
...
...
@@ -273,7 +273,7 @@ import { Collapse, CollapseItem } from 'vant'
// import bodyCheck from './body-check'
import
'vant/lib/collapse/style'
import
'vant/lib/collapse-item/style'
//
import axios from 'axios'
import
axios
from
'axios'
import
PDFJS
from
'pdfjs-dist'
export
default
{
name
:
'ContractDetail'
,
...
...
src/pages/contractSigning/contract-signing.vue
View file @
b7845ad2
...
...
@@ -723,4 +723,56 @@ export default {
padding-bottom: 20px;
}
}
.platform-ios {
#contract-signing {
.scrollContent {
padding-top: 3.4rem;
padding-bottom: 1.2rem;
}
}
}
// iPhoneX适配
@media (device-width: 375px) and (device-height: 812px) and (-webkit-min-device-pixel-ratio: 3) {
.platform-ios {
#contract-signing {
.scrollContent {
padding-top: 3.8rem;
padding-bottom: 1.2rem;
}
.check-bottom {
bottom: 32px;
}
}
}
}
// iPhoneXR适配
@media (device-width: 414px) and (device-height: 896px) {
.platform-ios {
#contract-signing {
.scrollContent {
padding-top: 3.8rem;
padding-bottom: 1.2rem;
}
.search {
input {
background: url("../../assets/contractStart/search1.png") 320px
no-repeat;
background-size: 16px 16px;
background-color: rgba(239, 239, 239, 0.55);
padding: 8px 12px;
border-radius: 4px;
width: 100%;
font-family: PingFangSC-Regular;
font-size: 14px;
color: #888c8f;
}
}
.check-bottom {
bottom: 32px;
}
}
}
}
</
style
>
src/pages/contractStart/start-list.vue
View file @
b7845ad2
...
...
@@ -368,4 +368,47 @@ export default {
position: absolute;
}
}
.platform-ios {
#startList {
.scrollContent {
padding-top: 3.32rem;
}
}
}
@media (device-width: 375px) and (device-height: 812px) and (-webkit-min-device-pixel-ratio: 3) {
.platform-ios {
#startList {
.scrollContent {
padding-top: 3.72rem;
}
}
}
}
// iPhoneXR适配
@media (device-width: 414px) and (device-height: 896px) {
.platform-ios {
#startList {
.scrollContent {
padding-top: 3.72rem;
}
.search {
input {
background: url("../../assets/contractStart/search1.png") 320px no-repeat;
background-size: 16px 16px;
background-color: rgba(239, 239, 239, 0.55);
padding: 8px 12px;
border-radius: 4px;
width: 100%;
font-family: PingFangSC-Regular;
font-size: 14px;
color: #888c8f;
}
}
}
}
}
</
style
>
src/pages/distributorSign/contract-list.vue
View file @
b7845ad2
...
...
@@ -512,4 +512,45 @@ export default {
padding-bottom: 20px;
}
}
.platform-ios {
#distribute-sign {
.scrollContent {
padding-top: 3.28rem;
}
}
}
// iPhoneX适配
@media (device-width: 375px) and (device-height: 812px) and (-webkit-min-device-pixel-ratio: 3) {
.platform-ios {
#distribute-sign {
.scrollContent {
padding-top: 3.68rem;
}
}
}
}
// iPhoneXR适配
@media (device-width: 414px) and (device-height: 896px) {
.platform-ios {
#distribute-sign {
.scrollContent {
padding-top: 3.68rem;
}
.search {
input {
background: url("../../assets/contractStart/search1.png") 320px
no-repeat;
background-size: 16px 16px;
background-color: rgba(239, 239, 239, 0.55);
padding: 8px 12px;
border-radius: 4px;
width: 100%;
font-family: PingFangSC-Regular;
font-size: 14px;
color: #888c8f;
}
}
}
}
}
</
style
>
src/pages/drawback/drawback-list.vue
View file @
b7845ad2
...
...
@@ -176,4 +176,44 @@ export default {
position: absolute;
}
}
.platform-ios {
#reimburse {
.scrollContent {
padding-top: 2.45rem;
}
}
}
@media (device-width: 375px) and (device-height: 812px) and (-webkit-min-device-pixel-ratio: 3) {
.platform-ios {
#reimburse {
.scrollContent {
padding-top: 3.05rem;
}
}
}
}
// iPhoneXR适配
@media (device-width: 414px) and (device-height: 896px) {
.platform-ios {
#reimburse {
.scrollContent {
padding-top: 3.05rem;
}
.hinput {
input {
width: 351px;
// height: 36px;
padding:8px 20px;
margin: 0 auto;
opacity: 0.4;
border: none;
background: url("../../assets/drawback/uncheck.png") 310px no-repeat;
background-size: 16px 16px;
background-color: rgba(239, 239, 239, 0.55);
}
}
}
}
}
</
style
>
src/pages/financingApply/financingApply-detail.vue
View file @
b7845ad2
...
...
@@ -72,7 +72,7 @@ import Appendix from './components/Appendix.vue'
import
Lessee
from
'./components/Lessee.vue'
import
History
from
'./components/History.vue'
//
import axios from 'axios'
import
axios
from
'axios'
export
default
{
components
:
{
Plan
,
...
...
src/pages/financingApply/financingApply-list.vue
View file @
b7845ad2
...
...
@@ -723,4 +723,56 @@ export default {
padding-bottom: 20px;
}
}
.platform-ios {
#contract-signing {
.scrollContent {
padding-top: 3.4rem;
padding-bottom: 1.2rem;
}
}
}
// iPhoneX适配
@media (device-width: 375px) and (device-height: 812px) and (-webkit-min-device-pixel-ratio: 3) {
.platform-ios {
#contract-signing {
.scrollContent {
padding-top: 3.8rem;
padding-bottom: 1.2rem;
}
.check-bottom {
bottom: 32px;
}
}
}
}
// iPhoneXR适配
@media (device-width: 414px) and (device-height: 896px) {
.platform-ios {
#contract-signing {
.scrollContent {
padding-top: 3.8rem;
padding-bottom: 1.2rem;
}
.search {
input {
background: url("../../assets/contractStart/search1.png") 320px
no-repeat;
background-size: 16px 16px;
background-color: rgba(239, 239, 239, 0.55);
padding: 8px 12px;
border-radius: 4px;
width: 100%;
font-family: PingFangSC-Regular;
font-size: 14px;
color: #888c8f;
}
}
.check-bottom {
bottom: 32px;
}
}
}
}
</
style
>
src/pages/financingTrial/financing-trial.vue
View file @
b7845ad2
...
...
@@ -410,4 +410,45 @@ export default {
padding-bottom: 20px;
}
}
.platform-ios {
#trial {
.scrollContent {
padding-top: 2.32rem;
}
}
}
// iPhoneX适配
@media (device-width: 375px) and (device-height: 812px) and (-webkit-min-device-pixel-ratio: 3) {
.platform-ios {
#trial {
.scrollContent {
padding-top: 2.72rem;
}
}
}
}
// iPhoneXR适配
@media (device-width: 414px) and (device-height: 896px) {
.platform-ios {
#trial {
.scrollContent {
padding-top: 2.72rem;
}
.search {
input {
background: url("../../assets/contractStart/search1.png") 320px
no-repeat;
background-size: 16px 16px;
background-color: rgba(239, 239, 239, 0.55);
padding: 8px 12px;
border-radius: 4px;
width: 100%;
font-family: PingFangSC-Regular;
font-size: 14px;
color: #888c8f;
}
}
}
}
}
</
style
>
src/pages/functionCenter/function-list.vue
View file @
b7845ad2
...
...
@@ -879,4 +879,48 @@ export default {
}
}
.platform-ios {
#query {
.scrollContent {
padding-top: 2.32rem;
}
}
}
// iPhoneX适配
@media (device-width: 375px) and (device-height: 812px) and (-webkit-min-device-pixel-ratio: 3) {
.platform-ios {
#query {
.scrollContent {
padding-top: 2.72rem;
}
}
}
}
// iPhoneXR适配
@media (device-width: 414px) and (device-height: 896px) {
.platform-ios {
#query {
.scrollContent {
padding-top: 2.72rem;
}
.search {
input {
background: url("../../assets/contractStart/search1.png") 320px no-repeat;
background-size: 16px 16px;
background-color: rgba(239, 239, 239, 0.55);
padding: 8px 12px;
border-radius: 4px;
width: 100%;
font-family: PingFangSC-Regular;
font-size: 14px;
color: #888c8f;
}
}
}
}
}
</
style
>
src/pages/guide/guide.vue
View file @
b7845ad2
...
...
@@ -139,4 +139,27 @@ export default {
}
}
.platform-ios {
.navigateHrms .skip-button {
top: 70px;
}
}
// iPhoneX适配
@media (device-width: 375px) and (device-height: 812px) and (-webkit-min-device-pixel-ratio: 3) {
.platform-ios.platform-cordova:not(.fullscreen) {
.navigateHrms .skip-button {
top: 90px;
}
}
}
// iPhoneX Max适配
@media (device-width: 414px) and (device-height: 896px) and (-webkit-min-device-pixel-ratio: 3) {
.platform-ios.platform-cordova:not(.fullscreen) {
.navigateHrms .skip-button {
top: 90px;
}
}
}
</
style
>
src/pages/home/home-page.vue
View file @
b7845ad2
...
...
@@ -144,7 +144,7 @@ export default {
console
.
log
(
'&&&&&&&&&&&&___ios'
)
// if (!$config.isMobilePlatform) {
// }
/*
baidumap_location.getCurrentPosition(function (result) {
baidumap_location
.
getCurrentPosition
(
function
(
result
)
{
if
(
window
.
localStorage
.
getItem
(
'province'
))
{
vm
.
city
=
window
.
localStorage
.
getItem
(
'city'
)
vm
.
province
=
window
.
localStorage
.
getItem
(
'province'
)
...
...
@@ -155,7 +155,7 @@ export default {
vm
.
guessingQuery
(
result
.
city
)
}
},
function
(
error
)
{
})
*/
})
// setTimeout(vm.guessingQuery(), 0)
},
goFunctionHome
(
data
)
{
...
...
src/pages/invoice/invoice.vue
View file @
b7845ad2
...
...
@@ -212,4 +212,31 @@ export default {
position: absolute;
}
}
.platform-ios {
#invoice {
.scrollContent {
padding-top: 1.2rem;
}
}
}
@media (device-width: 375px) and (device-height: 812px) and (-webkit-min-device-pixel-ratio: 3) {
.platform-ios {
#invoice {
.scrollContent {
padding-top: 1.6rem;
}
}
}
}
// iPhoneXR适配
@media (device-width: 414px) and (device-height: 896px) {
.platform-ios {
#invoice {
.scrollContent {
padding-top: 1.6rem;
}
}
}
}
</
style
>
src/pages/login.vue
View file @
b7845ad2
...
...
@@ -541,4 +541,47 @@ export default {
}
}
}
.platform-ios {
#login {
.pwd-input {
input {
line-height: 20px;
}
}
}
}
@media (device-width: 375px) and (device-height: 812px) and (-webkit-min-device-pixel-ratio: 3) {
.platform-ios {
#login {
.pwd-input {
input {
line-height: 20px;
}
}
.login-wrap {
margin-top: 20%
}
}
}
}
// iPhoneXR适配
@media (device-width: 414px) and (device-height: 896px) {
.platform-ios {
#login {
.pwd-input {
input {
line-height: 20px;
}
}
.login-wrap {
margin-top: 20%
}
}
}
}
</
style
>
src/pages/messageCenter/message-list.vue
View file @
b7845ad2
...
...
@@ -396,4 +396,36 @@ export default {
padding-bottom: 20px;
}
}
.platform-ios {
#message-center {
.scrollContent {
padding-top: 1.4rem;
}
}
}
@media (device-width: 375px) and (device-height: 812px) and (-webkit-min-device-pixel-ratio: 3) {
.platform-ios {
#message-center {
.scrollContent {
padding-top: 2rem;
}
.display{
top:1.68rem;
}
}
}
}
// iPhoneXR适配
@media (device-width: 414px) and (device-height: 896px) {
.platform-ios {
#message-center {
.scrollContent {
padding-top: 2rem;
}
.display{
top:1.68rem;
}
}
}
}
</
style
>
src/pages/myInfo/my-info.vue
View file @
b7845ad2
...
...
@@ -1536,4 +1536,23 @@ export default {
color: #fff;
border-radius: 50%;
}
@media (device-width: 375px) and (device-height: 812px) and (-webkit-min-device-pixel-ratio: 3) {
.platform-ios {
#my-info {
button {
margin-bottom: 98px;
}
}
}
}
// iPhoneXR适配
@media (device-width: 414px) and (device-height: 896px) {
.platform-ios {
#my-info {
button {
margin-bottom: 98px;
}
}
}
}
</style>
src/pages/myInfo/myBindUser.vue
View file @
b7845ad2
...
...
@@ -436,4 +436,42 @@ export default {
padding-bottom: 20px;
}
}
.platform-ios {
#query {
.scrollContent {
padding-top: 2.32rem;
}
}
}
// iPhoneX适配
@media (device-width: 375px) and (device-height: 812px) and (-webkit-min-device-pixel-ratio: 3) {
.platform-ios {
#query {
.scrollContent {
padding-top: 2.72rem;
}
}
}
#my-bind-user .submit {
bottom: 44px;
}
}
// iPhoneXR适配
@media (device-width: 414px) and (device-height: 896px) {
.platform-ios {
#query {
.scrollContent {
padding-top: 2.72rem;
}
}
}
#my-bind-user .submit {
bottom: 44px;
}
}
</
style
>
src/pages/myProductCollection/my-product-list.Vue
View file @
b7845ad2
...
...
@@ -330,4 +330,47 @@ export default {
padding-bottom: 20px;
}
}
.platform-ios {
#my-collect {
.scrollContent {
padding-top: 2.3rem;
}
}
}
// iPhoneX适配
@media (device-width: 375px) and (device-height: 812px) and (-webkit-min-device-pixel-ratio: 3) {
.platform-ios {
#my-collect {
.scrollContent {
padding-top: 2.7rem;
}
}
}
}
// iPhoneXR适配
@media (device-width: 414px) and (device-height: 896px) {
.platform-ios {
#my-collect {
.scrollContent {
padding-top: 3.1rem;
}
.search {
input {
background: url("../../assets/contractStart/search1.png") 320px
no-repeat;
background-size: 16px 16px;
background-color: rgba(239, 239, 239, 0.55);
padding: 8px 12px;
border-radius: 4px;
width: 100%;
font-family: PingFangSC-Regular;
font-size: 14px;
color: #888c8f;
}
}
}
}
}
</
style
>
src/pages/overTimeApply/list.vue
View file @
b7845ad2
...
...
@@ -355,4 +355,47 @@ export default {
position: absolute;
}
}
.platform-ios {
#startList {
.scrollContent {
padding-top: 3.32rem;
}
}
}
@media (device-width: 375px) and (device-height: 812px) and (-webkit-min-device-pixel-ratio: 3) {
.platform-ios {
#startList {
.scrollContent {
padding-top: 3.72rem;
}
}
}
}
// iPhoneXR适配
@media (device-width: 414px) and (device-height: 896px) {
.platform-ios {
#startList {
.scrollContent {
padding-top: 3.72rem;
}
.search {
input {
background: url("../../assets/contractStart/search1.png") 320px no-repeat;
background-size: 16px 16px;
background-color: rgba(239, 239, 239, 0.55);
padding: 8px 12px;
border-radius: 4px;
width: 100%;
font-family: PingFangSC-Regular;
font-size: 14px;
color: #888c8f;
}
}
}
}
}
</
style
>
src/pages/overTimeQuery/detail.vue
View file @
b7845ad2
...
...
@@ -293,6 +293,35 @@ export default {
}
}
.platform-ios {
#repay-details {
.scrollContent {
// padding-top: 3.32rem;
}
}
}
@media (device-width: 375px) and (device-height: 812px) and (-webkit-min-device-pixel-ratio: 3) {
.platform-ios {
#repay-details {
.scrollContent {
// padding-top: 3.72rem;
}
}
}
}
// iPhoneXR适配
@media (device-width: 414px) and (device-height: 896px) {
.platform-ios {
#repay-details {
.scrollContent {
// padding-top: 3.72rem;
}
}
}
}
.plan-content {
background-color: #fff;
padding: 0px 11px;
...
...
src/pages/overTimeQuery/list.vue
View file @
b7845ad2
...
...
@@ -453,4 +453,48 @@ export default {
padding-bottom: 20px;
}
}
.platform-ios {
#contract-records {
.scrollContent {
padding-top: 3rem;
}
}
}
// iPhoneX适配
@media (device-width: 375px) and (device-height: 812px) and (-webkit-min-device-pixel-ratio: 3) {
.platform-ios {
#contract-records {
.scrollContent {
padding-top: 3.4rem;
}
}
}
}
// iPhoneXR适配
@media (device-width: 414px) and (device-height: 896px) {
.platform-ios {
#contract-records {
.scrollContent {
padding-top: 3.4rem;
}
.search {
input {
background: url("../../assets/contractStart/search1.png") 320px no-repeat;
background-size: 16px 16px;
background-color: rgba(239, 239, 239, 0.55);
padding: 8px 12px;
border-radius: 4px;
width: 100%;
font-family: PingFangSC-Regular;
font-size: 14px;
color: #888c8f;
}
}
}
}
}
</
style
>
src/pages/pay/firstPay/contract-record.vue
View file @
b7845ad2
...
...
@@ -416,5 +416,31 @@ export default {
color: #fff;
}
}
.platform-ios {
#contract-record {
.pay-content {
height: 370px;
}
}
}
@media (device-width: 375px) and (device-height: 812px) and (-webkit-min-device-pixel-ratio: 3) {
.platform-ios {
#contract-record {
.pay-content {
height: 9.4rem;
}
}
}
}
// iPhoneXR适配
@media (device-width: 414px) and (device-height: 896px) {
.platform-ios {
#contract-record {
.pay-content {
height: 9.4rem;
}
}
}
}
</
style
>
src/pages/pay/payment/contract-record.vue
View file @
b7845ad2
...
...
@@ -547,4 +547,23 @@ export default {
}
}
@media (device-width: 375px) and (device-height: 812px) and (-webkit-min-device-pixel-ratio: 3) {
.platform-ios {
#payment-contract-record {
.pay-content {
height: 63%;
}
}
}
}
// iPhoneXR适配
@media (device-width: 414px) and (device-height: 896px) {
.platform-ios {
#payment-contract-record {
.pay-content {
height: 63%;
}
}
}
}
</
style
>
src/pages/productQuery/entity-list.vue
View file @
b7845ad2
...
...
@@ -324,4 +324,45 @@ export default {
padding-bottom: 20px;
}
}
.platform-ios {
#prolist {
.scrollContent {
padding-top: 2.32rem;
}
}
}
// iPhoneX适配
@media (device-width: 375px) and (device-height: 812px) and (-webkit-min-device-pixel-ratio: 3) {
.platform-ios {
#prolist {
.scrollContent {
padding-top: 2.72rem;
}
}
}
}
// iPhoneXR适配
@media (device-width: 414px) and (device-height: 896px) {
.platform-ios {
#prolist {
.scrollContent {
padding-top: 2.72rem;
}
.search {
input {
background: url("../../assets/contractStart/search1.png") 320px
no-repeat;
background-size: 16px 16px;
background-color: rgba(239, 239, 239, 0.55);
padding: 8px 12px;
border-radius: 4px;
width: 100%;
font-family: PingFangSC-Regular;
font-size: 14px;
color: #888c8f;
}
}
}
}
}
</
style
>
src/pages/productQuery/query-home.vue
View file @
b7845ad2
...
...
@@ -314,4 +314,48 @@ export default {
padding-bottom: 20px;
}
}
.platform-ios {
#query {
.scrollContent {
padding-top: 2.32rem;
}
}
}
// iPhoneX适配
@media (device-width: 375px) and (device-height: 812px) and (-webkit-min-device-pixel-ratio: 3) {
.platform-ios {
#query {
.scrollContent {
padding-top: 2.72rem;
}
}
}
}
// iPhoneXR适配
@media (device-width: 414px) and (device-height: 896px) {
.platform-ios {
#query {
.scrollContent {
padding-top: 2.72rem;
}
.search {
input {
background: url("../../assets/contractStart/search1.png") 320px no-repeat;
background-size: 16px 16px;
background-color: rgba(239, 239, 239, 0.55);
padding: 8px 12px;
border-radius: 4px;
width: 100%;
font-family: PingFangSC-Regular;
font-size: 14px;
color: #888c8f;
}
}
}
}
}
</
style
>
src/pages/reimburseMyself/reimburse-myself-list.Vue
View file @
b7845ad2
...
...
@@ -288,4 +288,45 @@ export default {
position: absolute;
}
}
.platform-ios {
#reimburse {
.scrollContent {
padding-top: 2.2rem;
}
}
}
@media (device-width: 375px) and (device-height: 812px) and (-webkit-min-device-pixel-ratio: 3) {
.platform-ios {
#reimburse {
.scrollContent {
padding-top: 2.62rem;
}
}
}
}
// iPhoneXR适配
@media (device-width: 414px) and (device-height: 896px) {
.platform-ios {
#reimburse {
.scrollContent {
padding-top: 2.62rem;
}
.search{
input {
background: url("../../assets/contractStart/search1.png") 320px no-repeat;
background-size: 16px 16px;
background-color: rgba(239, 239, 239, 0.55);
padding: 8px 12px;
border-radius: 4px;
// height: 36px;
width: 100%;
font-family: PingFangSC-Regular;
font-size: 14px;
color: #888c8f;
}
}
}
}
}
</
style
>
src/pages/tab.vue
View file @
b7845ad2
...
...
@@ -142,4 +142,20 @@ export default {
}
}
// iPhoneX适配
@media (device-width: 375px) and (device-height: 812px) and (-webkit-min-device-pixel-ratio: 3) {
.platform-ios {
.weui-tabbar {
padding-bottom: 34px;
}
}
}
@media (device-width: 414px) and (device-height: 896px) {
.platform-ios {
.weui-tabbar {
padding-bottom: 34px;
}
}
}
</
style
>
src/pages/videoSign/video-list.vue
View file @
b7845ad2
...
...
@@ -578,4 +578,46 @@ export default {
}
}
.platform-ios {
#videoList {
.scrollContent {
padding-top: 2.92rem;
}
}
}
@media (device-width: 375px) and (device-height: 812px) and (-webkit-min-device-pixel-ratio: 3) {
.platform-ios {
#videoList {
.scrollContent {
padding-top: 3.52rem;
}
}
}
}
// iPhoneXR适配
@media (device-width: 414px) and (device-height: 896px) {
.platform-ios {
#videoList {
.scrollContent {
padding-top: 3.52rem;
}
.search {
input {
background: url("../../assets/contractStart/search1.png") 320px no-repeat;
background-size: 16px 16px;
background-color: rgba(239, 239, 239, 0.55);
padding: 8px 12px;
border-radius: 4px;
width: 100%;
font-family: PingFangSC-Regular;
font-size: 14px;
color: #888C8F;
}
}
}
}
}
</
style
>
src/styles/platform-ios.less
0 → 100755
View file @
b7845ad2
.platform-ios {
.pro-wrapper{
top:225px !important;
}
.has-footer {
.vue-better-scroll__wrapper {
padding-bottom: 1.3rem;
}
}
}
src/styles/platform-iosx.less
0 → 100755
View file @
b7845ad2
// iPhoneX适配
@media (device-width: 375px) and (device-height: 812px) and (-webkit-min-device-pixel-ratio: 3) {
.platform-ios{
.pro-wrapper{
top:245px !important;
}
.has-footer {
.vue-better-scroll__wrapper {
padding-bottom: 2.2rem;
}
}
}
}
src/styles/platform-iosxr.less
0 → 100755
View file @
b7845ad2
// iPhoneXR适配
@media (device-width: 414px) and (device-height: 896px){
.platform-ios{
.pro-wrapper{
top:245px !important;
}
.has-footer {
.vue-better-scroll__wrapper {
padding-bottom: 2.2rem;
}
}
}
}
src/styles/public-style.less
View file @
b7845ad2
...
...
@@ -28,3 +28,6 @@
width: 20px;
}
}
@import "platform-ios";
@import "platform-iosx";
@import "platform-iosxr";
www/index.html
View file @
b7845ad2
<!DOCTYPE html>
<html><head><meta
charset=
utf-8
><meta
name=
viewport
content=
"initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=no,width=device-width,viewport-fit=cover"
><meta
name=
format-detection
content=
"telephone=no"
><meta
name=
format-detection
content=
"email=no"
><meta
name=
apple-mobile-web-app-capable
content=
yes
><meta
name=
apple-mobile-web-app-status-bar-style
content=
black
><script
type=
text/javascript
src=
./static/vuePlatform.js
></script><script
type=
text/javascript
src=
./static/prototype.js
></script><script
type=
text/javascript
src=
./cordova.js
></script><script
type=
text/javascript
src=
"http://api.map.baidu.com/api?v=2.0&ak=Eoo0EtfjYCdAy7r8D19gZ0vMojdZpHqU"
></script><title>
徐工金服
</title><link
href=
./static/css/app.ef29e45196045afc0e5cc91793f28141.css
rel=
stylesheet
></head><body><div
id=
app-box
></div><script
type=
text/javascript
src=
./static/js/manifest.8db4fffc754524332821.js
></script><script
type=
text/javascript
src=
./static/js/vendor.6fb9a8a9e3d7464e35f7.js
></script><script
type=
text/javascript
src=
./static/js/app.cd884783c75657fcdd04.js
></script></body></html>
\ No newline at end of file
<!DOCTYPE html>
<html><head><meta
charset=
utf-8
><meta
name=
viewport
content=
"initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=no,width=device-width,viewport-fit=cover"
><meta
name=
format-detection
content=
"telephone=no"
><meta
name=
format-detection
content=
"email=no"
><meta
name=
apple-mobile-web-app-capable
content=
yes
><meta
name=
apple-mobile-web-app-status-bar-style
content=
black
><script
type=
text/javascript
src=
./static/vuePlatform.js
></script><script
type=
text/javascript
src=
./static/prototype.js
></script><script
type=
text/javascript
src=
./cordova.js
></script><script
type=
text/javascript
src=
"http://api.map.baidu.com/api?v=2.0&ak=Eoo0EtfjYCdAy7r8D19gZ0vMojdZpHqU"
></script><title>
徐工金服
</title><link
href=
./static/css/app.fb52dd271f35e6cb942abb94eb5f18bb.css
rel=
stylesheet
></head><body><div
id=
app-box
></div><script
type=
text/javascript
src=
./static/js/manifest.16dc3c74f4e0c838ce1f.js
></script><script
type=
text/javascript
src=
./static/js/vendor.a2bd9868e7885d7ce8da.js
></script><script
type=
text/javascript
src=
./static/js/app.279bb6618e94708c8fd3.js
></script></body></html>
\ No newline at end of file
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