<template> <view class="background-none"> <cu-custom bgColor="bg-gradual-blueness" :isBack="true" :isRingt="true"> <block slot="backText">返回</block> <block slot="content">高危作业</block> </cu-custom> <view class="new-apps-box"> <view class="new-apps-warp"> <view class="new-apps-item" v-for="(item,index) in highRiskList" :key="index"> <navigator class="a" hover-class="none" :url="item.url"> <view class="image"> <image :src="item.image" mode=""></image> </view> <view class="title"> <text>{{ item.title }}</text> </view> </navigator> </view> </view> </view> </view> </template> <script> export default { data() { return { highRiskList:[ { title:'动火作业', url:'/pages/application/eight-assignments/index', image:require('../../../static/new_images/i1.png'), }, // { // title: '新动火作业', // url:'/pages/application/hotwork_cfd/home', // image:require('../../../static/new_images/i1.png'), // }, { title:'高处作业', url:'/pages/application/high-risk-work/high-work/home', image:require('../../../static/new_images/i2.png'), }, { title:'盲板作业', url:'/pages/application/high-risk-work/blind-work/index', image:require('../../../static/new_images/i3.png'), }, { title:'吊装作业', url:'/pages/application/high-risk-work/lifting-safety-work/index', image:require('../../../static/new_images/i4.png'), }, { title:'有限空间安全作业', url:'/pages/application/high-risk-work/limited-space/index', image:require('../../../static/new_images/i5.png'), }, { title:'临时用电安全作业', url:'/pages/application/high-risk-work/electricity/index', image:require('../../../static/new_images/i6.png'), }, ], } }, } </script> <style> </style>