Compare commits
2 Commits
0d2082ebaf
...
cf6d94d54f
| Author | SHA1 | Date | |
|---|---|---|---|
| cf6d94d54f | |||
| 5845ae76da |
BIN
src/assets/toAppBg.png
Normal file
BIN
src/assets/toAppBg.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 643 KiB |
@@ -324,6 +324,14 @@ const routes = [
|
|||||||
title:'电瓶详情'
|
title:'电瓶详情'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: '/goToApp',
|
||||||
|
name: 'goToApp',
|
||||||
|
component:()=>import('@/views/goToApp/goToApp.vue'),
|
||||||
|
meta: {
|
||||||
|
title:'电瓶详情'
|
||||||
|
}
|
||||||
|
},
|
||||||
...kpiRouter,
|
...kpiRouter,
|
||||||
...invoiceRouter,
|
...invoiceRouter,
|
||||||
...secondHandRouter,
|
...secondHandRouter,
|
||||||
|
|||||||
58
src/views/goToApp/goToApp.vue
Normal file
58
src/views/goToApp/goToApp.vue
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
<template>
|
||||||
|
<div class="wrap">
|
||||||
|
<div class="content">
|
||||||
|
<div class="goToBtn">立即打开</div>
|
||||||
|
<div class="content_tip">
|
||||||
|
<div class="font_cls">如未安装请点击下载</div>
|
||||||
|
<div class="font_cls">如已安装未自动跳转,请 <span>立即下载</span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: "goToApp"
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.wrap {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
background-image: url('@/assets/toAppBg.png');
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-size: cover;
|
||||||
|
}
|
||||||
|
.content {
|
||||||
|
width: 100%;
|
||||||
|
position: fixed;
|
||||||
|
top: 74vh;
|
||||||
|
}
|
||||||
|
.goToBtn {
|
||||||
|
width: 70%;
|
||||||
|
height: 45px;
|
||||||
|
margin-left: 15%;
|
||||||
|
background: linear-gradient( 270deg, #2347C0 0%, #72A3FF 100%);
|
||||||
|
border-radius: 23px;
|
||||||
|
//font-weight: bold;
|
||||||
|
font-size: 17px;
|
||||||
|
color: #FFFFFF;
|
||||||
|
letter-spacing: 2px;
|
||||||
|
line-height: 45px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.content_tip {
|
||||||
|
width: 100%;
|
||||||
|
margin-top: 15px;
|
||||||
|
.font_cls {
|
||||||
|
font-size: 14px;
|
||||||
|
color: #808080;
|
||||||
|
line-height: 20px;
|
||||||
|
text-align: center;
|
||||||
|
span {
|
||||||
|
color: #007BE9;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -1626,13 +1626,13 @@ export default {
|
|||||||
getTitle(type) {
|
getTitle(type) {
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case 0:
|
case 0:
|
||||||
return '接单时效';
|
|
||||||
case 1:
|
|
||||||
return '客户评价';
|
return '客户评价';
|
||||||
case 2:
|
case 1:
|
||||||
return 'APP使用';
|
return 'APP使用';
|
||||||
case 3:
|
case 2:
|
||||||
return '时效';
|
return '时效';
|
||||||
|
/* case 3:
|
||||||
|
return '时效';*/
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user