| | |
| | | </view> |
| | | <view class="box"> |
| | | <view class="l"> |
| | | <p>执法单位:{{item.executeDeptName}}</p> |
| | | <p>投诉时间:{{item.complaintTime}}</p> |
| | | <p style="align-items: flex-start;display: flex;justify-content: flex-start;"><text style="display: inline-block;width: 35%;">执法单位:</text> <text style="display: inline-block;width: 65%;">{{item.executeDeptName}}</text></p> |
| | | <p>投诉时间: {{item.complaintTime}}</p> |
| | | </view> |
| | | <view class="r" @click="chakan(item.id, item.orderId)"> |
| | | 去查看 |
| | |
| | | </template> |
| | | |
| | | <script> |
| | | import { logList } from '@/api/qiye.js' |
| | | import { complaintList } from '@/api/qiye.js' |
| | | |
| | | export default { |
| | | data() { |
| | |
| | | getList() { |
| | | let data = uni.getStorageSync("qiyedata") |
| | | this.queryParams.companyId = data.companyId |
| | | logList({...this.queryParams}).then(val => { |
| | | console.log(val.data) |
| | | complaintList({...this.queryParams}).then(val => { |
| | | this.total = val.data.total |
| | | this.list1 = [...this.list1,...val.data.rows] |
| | | }) |