123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216 |
- <!-- 隐患项搜索 -->
- <template>
- <view class="hiddenDangerItemsSearch">
- <view class="header">
- <view class="search">
- <view class="search-r">
- <img src="@/pages_safetyCheck/images/icon_aqjc_ss.png" @click="searchBtn">
- <input type="text" v-model="searchValue" placeholder="模糊搜索检查项" name="search" @confirm='searchBtn'
- confirm-type='search' maxlength="50" placeholder-style="color: #333333;font-size:24rpx;">
- </view>
- <view class="cancel" @click="cancelBtn">取消</view>
- </view>
- </view>
- <view class="list">
- <view class="list-li" v-for="(item,index) in dataList" @click="confirm(item)">
- {{item.hazardCheckCode}}{{item.hazardCheckName}}
- </view>
- </view>
- </view>
- </template>
- <script>
- import {
- config
- } from '@/api/request/config.js'
- import {
- securityCheckOptionList,
- } from '@/pages_safetyCheck/api/index.js'
- export default {
- name: "hiddenDangerItemsSearch",
- components: {
- },
- data() {
- return {
- baseUrl: config.base_url,
- pageType: 1,
- checkOptionList: [],
- dataList: [],
- searchValue: '',
- form: {},
- }
- },
- onLoad(option) {
- if (option.form) {
- this.form = JSON.parse(decodeURIComponent(option.form));
- }
- },
- onShow() {
- },
- mounted() {
- this.treeselect();
- },
- methods: {
- //滚动事件
- scrollGet() {},
- //实验室搜索
- searchBtn() {
- this.dataList = [];
- this.treeselect();
- },
- //取消
- cancelBtn() {
- this.searchValue = '';
- this.dataList = [];
- this.treeselect();
- },
- confirm(row) {
- this.$set(this.form, "hazardCheckId1", row.hazardCheckId1)
- this.$set(this.form, "hazardCheckName1", row.hazardCheckName1)
- this.$set(this.form, "hazardCheckCode1", row.hazardCheckCode1)
- this.$set(this.form, "hazardCheckId2", row.hazardCheckId2)
- this.$set(this.form, "hazardCheckName2", row.hazardCheckName2)
- this.$set(this.form, "hazardCheckCode2", row.hazardCheckCode2)
- this.$set(this.form, "hazardCheckId", row.hazardCheckId)
- this.$set(this.form, "hazardCheckName", row.hazardCheckName)
- this.$set(this.form, "hazardCheckCode", row.hazardCheckCode)
- this.$set(this.form, "hazardCheckPoint", row.hazardCheckPoint)
- uni.redirectTo({
- url: '/pages_safetyCheck/views/snapshotManage/snapshotList?form=' + encodeURIComponent(JSON.stringify(this.form))
- });
- },
- async treeselect() {
- let self = this;
- const {
- data
- } = await securityCheckOptionList({
- searchValue: this.searchValue
- });
- if (data.code == 200) {
- let list = [];
- data.data.forEach(function(item) {
- item.children.forEach(function(item2) {
- item2.children.forEach(function(item3) {
- list.push({
- hazardCheckId1: item.id,
- hazardCheckName1: item.name,
- hazardCheckCode1: item.code,
- hazardCheckId2: item2.id,
- hazardCheckName2: item2.name,
- hazardCheckCode2: item2.code,
- hazardCheckId: item3.id,
- hazardCheckName: item3.name,
- hazardCheckCode: item3.code,
- hazardCheckPoint: item3.mainPoint
- })
- })
- })
- })
- this.dataList = list
- }
- },
- }
- }
- </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;
- }
- >input {
- width: 500rpx;
- }
- }
- }
- .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 {
- min-height: 80rpx;
- margin: 0 30rpx;
- font-size: 29rpx;
- color: #3D3D3D;
- line-height: 80rpx;
- text-align: left;
- border-bottom: 1rpx solid #E0E0E0;
- }
- }
- }
- </style>
|