| | |
| | | <view class="content"> |
| | | <uni-card margin="10px" spacing="1px" v-for="(item,index) in msgList" :key="index" |
| | | @click="onClickProductionTask(item)"> |
| | | |
| | | |
| | | |
| | | |
| | | <view class="flex"> |
| | | <view class="flex-sub text-light bg-white padding-xs margin-xs radius">设备编号:</view> |
| | | <view class="flex-sub bg-white padding-xs margin-xs text-bold radius text-right"> |
| | |
| | | {{item.faultStartTime}} |
| | | </view> |
| | | </view> |
| | | |
| | | |
| | | |
| | | <view class="flex"> |
| | | <view class="flex-sub text-light bg-white padding-xs margin-xs radius">操作:</view> |
| | | <view class="flex-sub bg-blue padding-xs margin-xs radius text-sm text-center" |
| | | <view v-if="authIncludes('eam:repair:collect')" |
| | | class="flex-sub bg-blue padding-xs margin-xs radius text-sm text-center" |
| | | @click.stop="handleStartWork(item)" hover-class="is-hover">领取</view> |
| | | |
| | | </view> |
| | |
| | | activeColor: '#5277A6', |
| | | url: { |
| | | stallList: "/eam/eamReportRepair/list", |
| | | add:'/eam/eamRepairOrder/add' |
| | | add: '/eam/eamRepairOrder/add' |
| | | }, |
| | | |
| | | upOption: { |
| | |
| | | announcement1: [], |
| | | msg1Count: 0, |
| | | msg2Count: 0, |
| | | msg1Title: "" |
| | | msg1Title: "", |
| | | equipmentId: '' |
| | | } |
| | | }, |
| | | mounted() { |
| | | console.log('从 store 获取的 auth:', this.$store.getters.getAuth) |
| | | }, |
| | | computed: { |
| | | authList() { |
| | | return this.$store.getters.getAuth || [] |
| | | }, |
| | | top() { |
| | | return this.CustomBar * 2 + 50 |
| | | }, |
| | |
| | | }, |
| | | |
| | | |
| | | |
| | | |
| | | onShow() { |
| | | if (this.mescroll) { |
| | | this.mescroll.resetUpScroll() |
| | | } |
| | | }, |
| | | |
| | | onLoad: function(options) { |
| | | this.equipmentId = options.equipmentId ? |
| | | decodeURIComponent(options.equipmentId) : |
| | | ''; |
| | | }, |
| | | created() {}, |
| | | methods: { |
| | | |
| | | /** |
| | | * @param {Object} code按钮权限 |
| | | */ |
| | | authIncludes(code) { |
| | | return this.authList.some(auth => auth.action === code) |
| | | }, |
| | | /** |
| | | * 领取 |
| | | */ |
| | | handleStartWork(item) { |
| | | |
| | | this.$tip.loading(); |
| | | |
| | | uni.showLoading({ |
| | | mask: true, |
| | | title: "加载中....", |
| | | }) |
| | | this.$http.post(this.url.add, { |
| | | |
| | | actualEndTime: item.actualEndTime, |
| | | actualStartTime: item.actualStartTime, |
| | | createBy: item.actualStartTime, |
| | | createTime: item.createTime, |
| | | delFlag: item.delFlag, |
| | | equipmentId:item.equipmentId, |
| | | equipmentName: item.equipmentName, |
| | | faultReason:item.faultReason, |
| | | id: item.faultReason, |
| | | imageFiles:item.imageFiles, |
| | | imageFilesResult:null, |
| | | outsourcedEndTime:item.outsourcedEndTime, |
| | | outsourcedFlag:item.outsourcedFlag, |
| | | outsourcedPerson: item.outsourcedPerson, |
| | | outsourcedRepairDescription:item.outsourcedRepairDescription, |
| | | outsourcedStartTime:item.outsourcedStartTime, |
| | | repairCode:item.repairCode, |
| | | repairDescription:item.repairDescription, |
| | | repairStatus:item.repairStatus, |
| | | repairer:item.repairer, |
| | | reportId:item.id, |
| | | updateBy:item.updateBy, |
| | | updateTime: item.updateTime |
| | | |
| | | reportId: item.id, |
| | | }).then(res => { |
| | | console.log(res) |
| | | this.$tip.loaded(); |
| | | uni.hideLoading() |
| | | if (res.data.success) { |
| | | uni.showToast({ |
| | | icon: "success", |
| | | title: '领取成功', |
| | | duration: 2000 |
| | | }); |
| | | this.mescroll.resetUpScroll() |
| | | this.mescroll.resetUpScroll(); |
| | | } else { |
| | | uni.showModal({ |
| | | title: "提示", |
| | |
| | | * 详情页面 |
| | | */ |
| | | onClickProductionTask(item) { |
| | | |
| | | |
| | | uni.navigateTo({ |
| | | url: '/pages/maintenanceReport/maintenanceReportDetils/maintenanceReportDetils?item=' + |
| | | encodeURIComponent(JSON.stringify(item)) |
| | | |
| | | |
| | | }) |
| | | }, |
| | | |
| | |
| | | pageSize: page.size, |
| | | order: 'desc', |
| | | column: 'createTime', |
| | | repairStatus: 'WAIT_REPAIR' |
| | | reportStatus: 'WAIT_REPAIR', |
| | | equipmentId: this.equipmentId || '' |
| | | }, |
| | | |
| | | }).then(res => { |