123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- <template>
- <view class="taskBoardAddress">
- <u-navbar :bgStatusImage="backPic0" :bgImage="backPic" :title="gasTitle" :safeAreaInsetTop="true"
- leftIcon="arrow-left" @leftClick="handlerToggle"> </u-navbar>
- <u-list :height="666" :scrollTop="topH"
- v-if="isShow">
- <u-list-item v-for="(item, index) in indexList" :key="index">
- <u-cell icon="share" @click="getBoradAddress(item, index)">
- <view slot="title" class="u-slot-title">
- <text class="u-cell-text">{{ `${item.deviceName} (${item.checkNum == '1' ? '第一次' :
- item.checkNum == '2' ? '第二次' : ''})` }}</text>
- <!-- <u-tag text="查看" plain size="mini" type="warning">
- </u-tag> -->
- </view>
- <view slot="value">
- <u-icon :name="item.checkState == '0' ? 'plus' : 'checkmark'" size="16"></u-icon>
- </view>
- </u-cell>
- </u-list-item>
- </u-list>
- <component :is="toComponent" :Ids="Ids" :checkNum="checkNum" :classType="classType" :isSensor="isSensor"
- :deviceID="deviceID" :deviceName="deviceName" :checkState="checkState" @getBackAddress="getBackAddress">
- </component>
- </view>
- </template>
- <script>
- import api from "@/api/api";
- import gasImgIdentify from './gasImgIdentify.vue'
- export default {
- name: 'taskBoardAddress',
- components: { gasImgIdentify },
- props: {
- taskId: {
- type: String,
- default: ''
- },
- },
- data() {
- return {
- topH:0,
- activeIndex:0,
- Ids: '',
- checkNum: '',//巡检次数
- classType: '',
- isSensor: '',
- deviceID: '',
- deviceName: '',
- checkState: '',
- isShow: true,
- toComponent: '',
- indexList: [],
- gasTitle: '任务明细',//标题
- backPic0: "url(/static/topnavbar0.png)",
- backPic: "url(../../static/topnavbar.png)",
- }
- },
- computed: {
- searchTime: function () {
- return uni.getStorageSync('searchTime')
- }
- },
- mounted() {
- this.taskDetailsLists()
- },
- methods: {
- //点击返回上一级
- handlerToggle() {
- this.$emit('getBackBoard')
- },
-
- getBoradAddress(item, index) {
- let that = this
- that.activeIndex=index
- if (item.checkState == '0') {
- that.isShow = false
- that.Ids = item.id
- that.checkNum = item.checkNum
- that.classType = item.classType_dictText
- that.checkState = item.checkState
- that.isSensor = item.isSensor
- that.deviceID = item.deviceId
- that.deviceName = item.deviceName
- that.toComponent = 'gasImgIdentify'
- } else {
- that.isShow = false
- that.checkState = item.checkState
- that.checkNum = item.checkNum
- that.deviceID = item.deviceId
- that.classType = item.classType_dictText
- that.toComponent = 'gasImgIdentify'
- }
- },
- getBackAddress() {
- this.isShow = true
- this.toComponent = ''
- this.topH = 39*this.activeIndex
- this.taskDetailsLists()
- },
- taskDetailsLists() {
- let that = this
- new Promise((resolve, reject) => {
- api
- .taskDetailsList({ pageNo: 1, pageSize: 100, taskId: that.taskId, taskTime: that.searchTime })
- .then((response) => {
- if (response.data.code == 200) {
- console.log(response, '地点列表---')
- that.indexList = response.data.result.records || []
- // that.indexList = [
- // { deviceName: '测试地址1' },
- // { deviceName: '测试地址2' },
- // { deviceName: '测试地址3' },
- // { deviceName: '测试地址4' },
- // { deviceName: '测试地址5' },
- // { deviceName: '测试地址6' },
- // { deviceName: '测试地址7' },
- // { deviceName: '测试地址8' },
- // { deviceName: '测试地址9' },
- // { deviceName: '测试地址10' },
- // { deviceName: '测试地址11' },
- // { deviceName: '测试地址12' },
- // { deviceName: '测试地址13' },
- // { deviceName: '测试地址14' },
- // { deviceName: '测试地址15' },
- // { deviceName: '测试地址16' },
- // { deviceName: '测试地址17' },
- // { deviceName: '测试地址18' },
- // { deviceName: '测试地址19' },
- // { deviceName: '测试地址20' },
- // { deviceName: '测试地址21' },
- // { deviceName: '测试地址22' },
- // { deviceName: '测试地址23' },
- // { deviceName: '测试地址24' },
- // { deviceName: '测试地址25' },
- // { deviceName: '测试地址26' },
- // { deviceName: '测试地址27' },
- // { deviceName: '测试地址28' },
- // { deviceName: '测试地址29' },
- // { deviceName: '测试地址30' },
- // ]
- } else {
- reject(response);
- }
- })
- .catch((error) => {
- console.log("catch===>response", response);
- reject(error);
- });
- });
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .taskBoardAddress {
- position: relative;
- width: 100%;
- height: 100%;
- background-color: #fff;
- }
- ::v-deep .u-slot-title {
- display: flex;
- }
- </style>
|