123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 |
- <!-- 隐患项搜索 -->
- <template>
- <view class="hiddenDangerItemsSearch">
- <view class="header">
- <view class="search">
- <view class="search-r">
- <img src="@/pages_safetyCheck/images/icon_aqjc_ss.png">
- 模糊搜索检查项
- </view>
- <view class="cancel">取消</view>
- </view>
- </view>
- <view class="list">
- <view class="list-li" v-for="(item,index) in dataList">
- <view class="list-li-t">{{item.one}}</view>
- <view class="list-li-b">{{item.tow}}</view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import {
- config
- } from '@/api/request/config.js'
- export default {
- name: "hiddenDangerItemsSearch",
- components: {
- },
- data() {
- return {
- baseUrl: config.base_url,
- pageType: 1,
- tabTextTow: ['待整改', '已整改', '暂无法整改'],
- curTabTow: 0,
- form: {
- imgDtoList: [],
- },
- newData: {
- },
- dialogVisible: false,
- dataList: [
- {
- one: '1.1.1实验室安全工作纳入学校决策研究事项',
- tow: '三级检查项目条款全显示三级检查项目条款检查项目条款检查项目条款全显示三级检查项目检查项目条款'
- },
- {
- one: '1.1.1实验室安全工作纳入学校决策研究事项',
- tow: '三级检查项目条款全显示三级检查项目条款检查项目条款检查项目条款全显示三级检查项目检查项目条款'
- },
- ],
- }
- },
- onLoad(option) {},
- onShow() {
- },
- mounted() {
- },
- methods: {
- //滚动事件
- scrollGet() {},
- //顶部tab点击
- tabClickTow(index) {
- this.curTabTow = index;
- },
- dialogOpen(){
- this.dialogVisible = true;
- },
- dialogClose() {
- this.dialogVisible = false;
- },
- quotaClick(index){
- this.quotaIndex=index
- },
- }
- }
- </script>
- <style lang="stylus" scoped>
- .hiddenDangerItemsSearch{
- height: 100%;
- display flex;
- box-sizing: border-box;
- #totalColor-A{
- color: #0183FA;
- background: rgba(1,131,250,0.2);
- }
- #totalColor-B{
- color: #16B531;
- background: rgba(22,181,49,0.2);
- }
- #totalColor-C{
- color: #FF8C00;
- background: rgba(255,140,0,0.2);
- }
- .header {
- width: 100%;
- position: fixed;
- top: 0rpx;
- z-index: 100;
- background: #fff;
- .search {
- width: 750rpx;
- height: 100rpx;
- background: #FFFFFF;
- border-radius: 0rpx 0rpx 0rpx 0rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- .search-r {
- width: 610rpx;
- height: 60rpx;
- background: #FFFFFF;
- border-radius: 50rpx 50rpx 50rpx 50rpx;
- border: 1rpx solid #E0E0E0;
- font-size: 24rpx;
- color: #999999;
- line-height: 60rpx;
- text-align: left;
- display: flex;
- justify-content: flex-start;
- align-items: center;
- padding: 0 20rpx;
- box-sizing: border-box;
- >img{
- width: 30rpx;
- height: 30rpx;
- margin-right: 20rpx;
- }
- }
- }
- .cancel{
- font-size: 28rpx;
- color: #0183FA;
- line-height: 30rpx;
- text-align: left;
- margin-left: 18rpx;
- }
- }
- .list {
- width: 750rpx;
- background: #FFFFFF;
- margin-top: 110rpx;
- padding-top:12rpx;
- box-sizing: border-box;
- .list-li {
- margin: 0 30rpx 20rpx;
- .list-li-t {
- font-size: 24rpx;
- color: #3D3D3D;
- line-height: 34rpx;
- text-align: left;
- margin-bottom: 20rpx;
- }
- .list-li-b {
- width: 690rpx;
- background: #F5F5F5;
- border-radius: 10rpx 10rpx 10rpx 10rpx;
- display: flex;
- justify-content: flex-start;
- padding: 12rpx 20rpx 14rpx 14rpx;
- box-sizing: border-box;
- }
- }
- }
-
- }
- </style>
|