货无忧安装平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

586 lines
13 KiB

<template>
<BasicContainer ref='basicContainer' :option="option">
<!-- 头部 -->
<template #head>
<view class="background">
</view>
<view class="header_title">
<view class="">
任务编号{{details.pageInfo.no}}
</view>
<view class="mt20">
任务类型
</view>
</view>
</template>
<!-- 主体 -->
<template #body>
<view class="main">
<view class="tabbar_container flex-c-sb">
<view class="tabbar_item flex-c-c flex1" @click="()=> handleClickTabbar(0)">
客户信息
</view>
<view class="tabbar_item flex-c-c flex1" @click="()=> handleClickTabbar(1)">
服务内容
</view>
<view class="tabbar_item flex-c-c flex1" @click="()=> handleClickTabbar(2)">
节点记录
</view>
<view class="tabbar_item flex-c-c flex1" @click="()=> handleClickTabbar(3)">
签到记录
</view>
<view class="active flex-c-c" :style="`transform: translateX(${details.tabbarCode * 100 +'%'})`">
<view class="line">
</view>
</view>
</view>
<scroll-view class="scvmabx" :style="{height: details.scrollheight}" @scrolltolower="()=>{}" scroll-y="true"
@touchmove.stop>
<!-- 客户信息 -->
<ClientInfo v-show="details.tabbarCode === 0" :pageInfo="details.pageInfo" :info="details.info" />
<!-- 服务内容 -->
<ServiceContent v-show="details.tabbarCode === 1" :pageInfo="details.pageInfo" :info="details.info"
:goodsTypeArr="details.goodsTypeArr" />
<!-- 节点信息 -->
<NodeInfo v-show="details.tabbarCode === 2" :pageInfo="details.pageInfo" :info="details.info" />
<!-- 签收记录 -->
<SiginLog v-show="details.tabbarCode === 3" :pageInfo="details.pageInfo" :info="details.info" />
</scroll-view>
<view class="footer flex-c-c">
<view class="button errColor" v-if="details.buttonPermissionObj.openAfterSalesBtn"
@click="handleAfterSale">
发起售后
</view>
<view class="button" v-if="details.buttonPermissionObj.siginBtn" @click="handleSigin">
签 到
</view>
<view class="button" v-if="details.buttonPermissionObj.openWorkBtn" @click="handleStartWorking">
开 工
</view>
<view class="button subColor" v-if="details.buttonPermissionObj.confirmWorkBtn"
@click="handleConfirmCompletion">
确认完工
</view>
<!-- <view class="button errColor" v-if="details.buttonPermissionObj.openAfterSalesBtn" @click="handleConfirmCompletion">
驳回
</view> -->
<view class="button primaryColor" v-if="details.buttonPermissionObj.confirmSignfor"
@click="handleCheckAndAccept">
确认验收
</view>
<view class="button subColor" v-if="details.buttonPermissionObj.confirmAssign"
@click="handleAssignATask">
确认指派
</view>
</view>
</view>
</template>
</BasicContainer>
<tips ref="tip"></tips>
<!-- #ifdef APP -->
<saomiao2 :ishidestop="scanState !== 0"></saomiao2>
<!-- #endif -->
</template>
<script lang="ts">
import ClientInfo from "./clientInfo.vue"
import ServiceContent from "./serviceContent.vue"
import NodeInfo from "./nodeInfo.vue"
import SiginLog from "./siginLog.vue"
export default {
// 页面组件
components: {
// 客户信息
ClientInfo,
// 服务内容
ServiceContent,
// 节点信息
NodeInfo,
// 签收记录
SiginLog
}
}
</script>
<script lang="ts" setup>
import {
getInstallDetails,
getCommonGoodsType,
postInstallStart
} from '@/api/user.js'
import {
onLoad,
onShow,
onHide,
} from '@dcloudio/uni-app'
import { nextTick, reactive, ref, toRefs, computed } from "vue";
import utils from '@/utils/utils.js'
import useSystemSettingsStore from '@/store/useSystemSettingsStore';
import { storeToRefs } from 'pinia';
const { scanState } = storeToRefs(useSystemSettingsStore())
// 组件配置
const option = reactive({
// 标题
title: '任务详情',
// 下拉刷新回调函数
async pullDownRefreshInitPage() {
await initpage(true)
return null
},
// 触底加载回到函数
reachBottomInitPage: () => { },
haveData: true,
isEnd: false,
/** 页面loading */
pageLoading: true
})
// 组件实例
const basicContainer = ref() // 页面组件
const tip = ref() // 提示弹窗
let details = reactive({
show: false,
/** 时间 */
datatime: '',
/** 当前页码 */
pageNum: 1,
/** 页数 */
pageSize: 20,
/** 渲染列表数据 */
datalist: [],
/** 扫描的码值 */
scancode: '',
scrollheight: '80vh',
/** tabbar激活code */
tabbarCode: 0,
/** 页面数据 */
pageInfo: {
// 安装任务id
id: ''
},
/** 数据 */
info: {},
goodsTypeArr: [],
/** 角色当前权限 */
userInfo: (uni.getStorageSync('userInfo') || {}),
/** 按钮权限 */
buttonPermissionObj: {
/*
1 -- 待报价
2 -- 待指派
3 -- 已指派
4 -- 服务中
5 -- 已完成
6 -- 已验收
7 -- 已完结
8 -- 已关闭
*/
/** 发起售后 */
openAfterSalesBtn: computed(() => {
const { id } = details.userInfo
console.log('id :>> ', id);
const { detail, installWork } = details.info as any
if (utils.getObjType(detail) !== 'object' || utils.getObjType(installWork) !== 'object') return false
if (!installWork.work_user_ids || !installWork.work_user_ids.includes(id)) return false
const _status = Number(detail.status)
const whiteArr = [4, 5, 6, 7]
if (whiteArr.includes(_status)) return true
return false
}),
/** 签到 */
siginBtn: computed(() => {
const { id } = details.userInfo
console.log('id :>> ', id);
const { detail, installWork } = details.info as any
if (utils.getObjType(detail) !== 'object' || utils.getObjType(installWork) !== 'object') return false
if (!installWork.work_user_ids || !installWork.work_user_ids.includes(id)) return false
const _status = Number(detail.status)
const whiteArr = [4]
if (whiteArr.includes(_status)) return true
return false
}),
/** 开工 */
openWorkBtn: computed(() => {
const { id } = details.userInfo
console.log('id :>> ', id);
const { detail, installWork } = details.info as any
if (utils.getObjType(detail) !== 'object' || utils.getObjType(installWork) !== 'object') return false
if (!installWork.work_user_ids || !installWork.work_user_ids.includes(id)) return false
const _status = Number(detail.status)
const whiteArr = [3]
if (whiteArr.includes(_status)) return true
return false
}),
/** 确认完工 */
confirmWorkBtn: computed(() => {
const { id } = details.userInfo
console.log('id :>> ', id);
const { detail, installWork } = details.info as any
if (utils.getObjType(detail) !== 'object' || utils.getObjType(installWork) !== 'object') return false
if (!installWork.work_user_ids || !installWork.work_user_ids.includes(id)) return false
const _status = Number(detail.status)
const whiteArr = [4]
if (whiteArr.includes(_status)) return true
return false
}),
/** 确认验收 */
confirmSignfor: computed(() => {
// 安装负责人存在验收权限
const _roleWhite = [3, 4]
if (!_roleWhite.includes(Number(details.userInfo.role_code))) return false
const { detail } = details.info as any
if (utils.getObjType(detail) !== 'object') return false
const _status = Number(detail.status)
const whiteArr = [5]
if (whiteArr.includes(_status)) return true
return false
}),
/** 确认指派 */
confirmAssign: computed(() => {
// 安装负责人存在验收权限
const _roleWhite = [3, 4]
if (!_roleWhite.includes(Number(details.userInfo.role_code))) return false
const { detail } = details.info as any
if (utils.getObjType(detail) !== 'object') return false
const _status = Number(detail.status)
console.log('111 :>> ', 111);
const whiteArr = [2, 3]
if (whiteArr.includes(_status)) return true
console.log('222 :>> ', 222);
return false
})
}
})
onLoad(async (e) => {
console.log('e :>> ', e);
details.pageInfo = JSON.parse(e.pageInfo)
})
onShow(async () => {
// #ifdef APP
// 初始化关闭监听
uni.$off('scancodedate')
// init()
uni.$on('scancodedate', function (code) {
console.log('code :>> ', code);
if (code) {
console.log(code);
details.scancode = code
scandata()
}
})
// #endif
try {
option.pageLoading = true
await Promise.all([initGoodsTypeList(), initpage()])
} catch (err) {
console.log('err :>> ', err);
//TODO handle the exception
} finally {
option.pageLoading = false
}
await nextTick()
// basicContainer.value.startPullDownRefresh()
const _height = await utils.getViewDistanceFormTop('.scvmabx')
details.scrollheight = Number(_height.replace('px', '')) - 50 + 'px'
})
/** 扫描执行回调 */
const scandata = () => { }
/** 初始化获取页面数据 */
const initpage = async (isLoading = false) => {
try {
if (isLoading) option.pageLoading = true
const res = await getInstallDetails({ install_id: details.pageInfo.id })
const { code, data } = res
if (code !== 200) return
console.log('data :>> ', data);
details.info = data
} catch (err) {
console.log('err :>> ', err);
//TODO handle the exception
} finally {
if (isLoading) option.pageLoading = false
}
}
/** 初始化获取goodsTypeList */
const initGoodsTypeList = async () => {
const res = await getCommonGoodsType({})
const { code, data } = res
if (code !== 200) return
details.goodsTypeArr = data || {}
}
/** tabbar点击事件 */
const handleClickTabbar = (code : number) => {
details.tabbarCode = code
}
/** 签到 */
const handleSigin = () => {
tip.value.setdetails({
isshow: true,
content: '签入 | 签出',
cancelTxt: '签入',
confirmTxt: '签出',
success() {
// 关闭弹窗
tip.value.setdetails({ isshow: false })
uni.navigateTo({
url: '/pagesHome/pages/siginIn/siginIn?type=siginOut&id=' + details.pageInfo.id + '&pageType=install'
})
},
cancel() {
// 关闭弹窗
tip.value.setdetails({ isshow: false })
uni.navigateTo({
url: '/pagesHome/pages/siginIn/siginIn?type=siginIn&id=' + details.pageInfo.id + '&pageType=install'
})
}
})
}
/** 发起售后 */
const handleAfterSale = () => {
uni.navigateTo({
url: '/pagesHome/pages/InitiateAfterSalesService/InitiateAfterSalesService?id=' + details.pageInfo.id
})
}
/** 开工 */
const handleStartWorking = () => {
console.log(utils.getObjType(details.pageInfo.id))
tip.value.setdetails({
isshow: true,
content: '是否确认开工',
cancelTxt: '取 消',
confirmTxt: '确 认',
async success() {
try {
option.pageLoading = true
const res = await postInstallStart({ install_id: details.pageInfo.id })
const { code } = res
if (code !== 200) return
basicContainer.value.startPullDownRefresh()
} catch (err) {
console.log('err :>> ', err);
//TODO handle the exception
} finally {
tip.value.setdetails({ isshow: false })
option.pageLoading = false
}
// 关闭弹窗
},
cancel() {
tip.value.setdetails({ isshow: false })
}
})
}
/** 确认完工 */
const handleConfirmCompletion = () => {
uni.navigateTo({
url: '/pagesHome/pages/ParticularsOfCompletion/ParticularsOfCompletion?id=' + details.pageInfo.id
})
}
/** 验收 */
const handleCheckAndAccept = () => {
uni.navigateTo({
url: '/pagesHome/pages/checkAndAccept/checkAndAccept?id=' + details.pageInfo.id + '&pageType=install'
})
}
/** 指派 */
const handleAssignATask = () => {
uni.setStorageSync('installWork', details.info.installWork)
uni.navigateTo({
url: '/pagesHome/pages/AssignATask/AssignATask?id=' + details.pageInfo.id + '&pageType=install'
})
}
</script>
<style lang="scss" scoped>
@import url("@/utils/style/common.scss");
.background {
width: 100vw;
height: 100vh;
position: fixed;
background-color: var(--subjectColor);
}
// 顶部
.header_title {
padding: 40upx;
background: var(--subjectColor);
color: #fff;
position: relative;
}
// 主体内容
.main {
font-family: 黑体;
position: relative;
border-top-right-radius: 20upx;
border-top-left-radius: 20upx;
background-color: #fff;
}
// tabber
.tabbar_container {
height: 100upx;
position: relative;
border-bottom: 2upx solid #eee;
.tabbar_item {
height: 100%;
}
.active {
width: 25%;
position: absolute;
bottom: 0;
transition: all 0.3s;
transform: translateX(100%);
$lineHeight: 8upx;
.line {
width: 40%;
border-radius: calc($lineHeight / 2);
height: $lineHeight;
background: var(--subjectColor);
}
}
}
// 底部
.footer {
height: 50px;
.button {
height: 70%;
display: flex;
align-items: center;
justify-content: center;
flex: 1;
// margin: 10upx;
border: 2upx solid #b5babf;
border-radius: 80upx;
margin: 0 10upx;
padding: 0 10upx;
font-size: 0.8rem;
font-weight: bold;
&.subColor {
border-color: var(--subjectColor);
color: var(--subjectColor);
}
&.primaryColor {
border-color: var(--primaryColor);
color: var(--primaryColor);
}
&.errColor {
border-color: var(--errColor);
color: var(--errColor);
}
}
}
</style>