1、bug修复:监管端路由缺失

2、bug修复:相关方端样式调整后无法操作延迟监火
八项作业
liujun 2024-11-06 15:57:42 +08:00
parent e76bb4df08
commit 00e04c3ade
5 changed files with 61 additions and 2 deletions

View File

@ -0,0 +1,39 @@
<template>
<view class="fab_button" @click="$emit('click')">
<block v-if="type === 'plus'">
<u-icon name="plus" color="#fff" size="28rpx"></u-icon>
</block>
<block v-if="type === 'search'">
<u-icon name="search" color="#fff" size="28rpx"></u-icon>
</block>
<block v-if="type === 'edit'">
<u-icon name="edit-pen" color="#fff" size="28rpx"></u-icon>
</block>
</view>
</template>
<script>
export default {
props: {
type: {
type: String,
default: "plus",
},
},
}
</script>
<style scoped lang="scss">
.fab_button {
position: fixed;
bottom: 200rpx;
right: 30rpx;
background-color: #3377ff;
border-radius: 50%;
width: 80rpx;
height: 80rpx;
display: flex;
align-items: center;
justify-content: center;
}
</style>

View File

@ -26,13 +26,20 @@
</view> </view>
<empty v-else></empty> <empty v-else></empty>
</view> </view>
<app-fab-button v-if="isView !== '1'" type="plus" @click="fnScan" />
<app-fab-up-button v-if="isView !== '1'" type="edit" @click="fnUpScan" />
</view> </view>
</template> </template>
<script> <script>
import { getHotWorkRecord, setTaskSign} from "../../../../api"; import { getHotWorkRecord, setTaskSign} from "../../../../api";
import AppFabButton from "@/components/fab_button/index.vue";
import AppFabUpButton from "@/components/fab_button/up_index.vue";
export default { export default {
components: {
AppFabButton,AppFabUpButton
},
data() { data() {
return { return {
list: [], list: [],
@ -48,6 +55,7 @@ export default {
this.EW_RU_TASK_ID = event.taskId this.EW_RU_TASK_ID = event.taskId
this.EW_RU_JOB_ID = event.EW_RU_JOB_ID this.EW_RU_JOB_ID = event.EW_RU_JOB_ID
this.TYPE = event.TYPE this.TYPE = event.TYPE
this.isView = event.isView
}, },
onShow() { onShow() {
this.resetList() this.resetList()
@ -104,6 +112,18 @@ export default {
}) })
}, 2000) }, 2000)
}, },
fnScan() {
uni.$u.route({
url: '/pages/eight_assignments/hot_work/delay_fire_monitoring/add',
params: {taskId: this.EW_RU_TASK_ID, EW_RU_JOB_ID:this.EW_RU_JOB_ID,TYPE:this.TYPE}
});
},
fnUpScan(){
uni.$u.route({
url: '/pages/eight_assignments/hot_work/delay_fire_monitoring/task_forward',
params: {taskId: this.EW_RU_TASK_ID, EW_RU_JOB_ID:this.EW_RU_JOB_ID,TYPE:this.TYPE}
});
}
} }
} }
</script> </script>

View File

@ -72,7 +72,7 @@ export default {
url: '/pages/employed_by/index' url: '/pages/employed_by/index'
}, },
{ {
img: require('../../static/icon-apps/app_icons6.png'), img: require('../../static/icon-apps/app_icons7.png'),
title: '高危作业', title: '高危作业',
url: '/pages/eight_assignments/index' url: '/pages/eight_assignments/index'
}, },

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.1 KiB

View File

@ -183,7 +183,7 @@ export const addFlowInfo = async ({form, list, taskId, EW_RU_JOB_ID, TYPE,CORP_I
export const resolveNextOperation = async ({EW_RU_TASK_ID = '', CORP_ID = '', TYPE = '', EW_RU_JOB_ID = '',vernier = ''}, isLastStep = true) => { export const resolveNextOperation = async ({EW_RU_TASK_ID = '', CORP_ID = '', TYPE = '', EW_RU_JOB_ID = '',vernier = ''}, isLastStep = true) => {
let stepNum = 0 let stepNum = 0
if (isLastStep) { if (isLastStep) {
const {info} = await getCurrentNextOperation({EW_RU_TASK_ID, EW_RU_JOB_ID, VERNIER: vernier}) const {info} = await getCurrentNextOperation({EW_RU_TASK_ID, EW_RU_JOB_ID, VERNIER: vernier, REQUEST_SOURCE: '2'})
// 选人 // 选人
if (info.chooseNextFlag === '1') { if (info.chooseNextFlag === '1') {
uni.navigateTo({ uni.navigateTo({