<template>
|
<view class="schemePlan">
|
<card height="240">
|
<view slot="content">
|
<view class="content">
|
<text class="title">汛期调度运行计划</text>
|
<view class="file_content">
|
<image class="icon_img" mode='widthFix' :src="imgList.empty" alt="" />
|
<text class="text">暂无方案文档</text>
|
</view>
|
</view>
|
|
</view>
|
</card>
|
<u-gap height="5" bgColor="#d8d8d8"></u-gap>
|
<card height="240">
|
<view slot="content">
|
<view class="content">
|
<text class="title">调度运用方案(调度规程)</text>
|
<view class="file_content">
|
<image class="icon_img" mode='widthFix' :src="imgList.empty" alt="" />
|
<text class="text">暂无方案文档</text>
|
</view>
|
</view>
|
|
</view>
|
</card>
|
<u-gap height="5" bgColor="#d8d8d8"></u-gap>
|
<card height="240">
|
<view slot="content">
|
<view class="content">
|
<text class="title">大坝安全管理应急方案</text>
|
<view class="file_content">
|
<image class="icon_img" mode='widthFix' :src="imgList.empty" alt="" />
|
<text class="text">暂无方案文档</text>
|
</view>
|
</view>
|
|
</view>
|
</card>
|
<u-gap height="5" bgColor="#d8d8d8"></u-gap>
|
<card height="240">
|
<view slot="content">
|
<view class="content">
|
<text class="title">防汛抢险应急预案</text>
|
<view class="file_content">
|
<image class="icon_img" mode='widthFix' :src="imgList.empty" alt="" />
|
<text class="text">暂无方案文档</text>
|
</view>
|
</view>
|
|
</view>
|
</card>
|
<u-gap height="5" bgColor="#d8d8d8">
|
</u-gap>
|
</view>
|
</template>
|
|
<script>
|
import card from "@/components/my-components/card.vue"
|
export default {
|
components: {
|
card
|
},
|
data() {
|
return {
|
imgList: {
|
empty: require("../static/img/plan/icon_data.png")
|
}
|
}
|
},
|
created() {
|
|
},
|
mounted() {
|
|
},
|
onLoad(option) {
|
|
},
|
onShow() {
|
|
},
|
methods: {
|
|
}
|
}
|
</script>
|
|
<style lang="scss" scoped>
|
.schemePlan {
|
.content {
|
.title {
|
font-size: 24rpx;
|
font-weight: 700;
|
margin-left: 52rpx;
|
}
|
|
.file_content {
|
display: flex;
|
flex-direction: column;
|
justify-content: center;
|
padding: 36rpx 0;
|
|
.icon_img {
|
width: 82rpx;
|
margin-left: 82rpx;
|
}
|
|
.text {
|
margin-left: 52rpx;
|
font-size: 20rpx;
|
color: #BBBBBB;
|
}
|
}
|
}
|
}
|
</style>
|