Commit cd33bd45 authored by wei's avatar wei

uu

parent ad372ed3
...@@ -40,7 +40,7 @@ export default { ...@@ -40,7 +40,7 @@ export default {
'riskAdd' 'riskAdd'
], ],
// 不需要展示底部tabbar的页面 // 不需要展示底部tabbar的页面
noTab:["login", "login2", 'addCurrent','addPresent','addInherent','riskInherent',"choose-people","scan",'success','fail','warn','center','reset-pas-two','riskTaskList'], noTab:["login", "login2", 'addCurrent','addPresent','addInherent','riskInherent',"choose-people","scan",'success','fail','warn','center','reset-pas-two','riskTaskList','riskBigDetail'],
// cachePage预先定义的缓存页面 // cachePage预先定义的缓存页面
otherCache: [], otherCache: [],
// 专门处理列表缓存的页面,这些页面缓存逻辑与其他缓存不一样去详情返回列表缓存,但是进入列表必须刷新,如何有需要缓存的列表请放到这里来。 // 专门处理列表缓存的页面,这些页面缓存逻辑与其他缓存不一样去详情返回列表缓存,但是进入列表必须刷新,如何有需要缓存的列表请放到这里来。
......
...@@ -11,11 +11,11 @@ ...@@ -11,11 +11,11 @@
<template> <template>
<div> <div>
<van-sticky> <van-sticky>
<header class="header"> <header class="header">
<van-icon @click="to" name="arrow-left" class="iconColorLeft"/> <van-icon @click="to" name="arrow-left" class="iconColorLeft"/>
<span>{{text}}</span> <span>{{text}}</span>
<!-- <van-icon name="bars" class="iconColorRight"/> --> <!-- <van-icon name="bars" class="iconColorRight"/> -->
</header> </header>
</van-sticky> </van-sticky>
</div> </div>
</template> </template>
......
...@@ -167,9 +167,9 @@ const routes = [{ ...@@ -167,9 +167,9 @@ const routes = [{
component: () => import('../views/riskProject/add/addPresent.vue'), component: () => import('../views/riskProject/add/addPresent.vue'),
}, },
{//风险评估列表详情页 {//风险评估列表详情页
path: '/risk-big-detail', path: '/riskBigDetail',
name: 'risk-big-detail', name: 'riskBigDetail',
component: () => import('../views/riskProject/approve/riskBigDetail.vue'), component: () => import('../views/riskProject/assess/riskBigDetail.vue'),
}, },
{//执行情况管理 {//执行情况管理
path: '/riskExecution', path: '/riskExecution',
......
<template>
<div>
详情页面
</div>
</template>
<script>
export default {
name:'risk-big-detail'
}
</script>
<style lang="less" scoped>
</style>
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
{{ item.state }} {{ item.state }}
</van-row> </van-row>
<van-row> <van-row>
<van-button type="info" size="mini" @click="lookdetail(index, item)">查看详情</van-button> <van-button type="info" size="mini" @click="lookdetail(index, item)">执行情况</van-button>
</van-row> </van-row>
</van-col> </van-col>
</van-row> </van-row>
...@@ -45,8 +45,8 @@ ...@@ -45,8 +45,8 @@
<!-- {{messageList}} --> <!-- {{messageList}} -->
</van-tab> </van-tab>
</van-tabs> </van-tabs>
<!-- 长按显示遮罩层 --> <!-- 长按显示遮罩层 -->
<van-overlay :show="showIndex"> <van-overlay :show="showIndex">
<div class="wrapper" @click.stop="showIndex = false"> <div class="wrapper" @click.stop="showIndex = false">
</div> </div>
...@@ -199,5 +199,12 @@ export default { ...@@ -199,5 +199,12 @@ export default {
} }
} }
} }
.wrapper {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
}
</style> </style>
\ No newline at end of file
...@@ -41,6 +41,7 @@ export default { ...@@ -41,6 +41,7 @@ export default {
return { return {
value: '', value: '',
riskList: [ riskList: [
{ {
key: "1", key: "1",
// path: "/danger", // path: "/danger",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment