123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572 |
- <template>
- <view class="incidentList">
- <view class="head">
- <view class="tab" :class="{active: tab.id === dataInfo.tabActiveId}" v-for="tab in dataInfo.tabs" :key="tab.id" @click="clickTab(tab.id)">
- {{tab.name}}<text v-if="tab.num !== ''">({{tab.num}})</text>
- </view>
- <view class="filter" @click="filterClick">
- <text class="newicon newicon-shaixuan"></text>
- </view>
- </view>
- <view class="body" v-if="dataInfo.list.length">
- <view class="body_item" v-for="data in dataInfo.list" :key="data.id">
- <view class="body_item_head ellipsis-multiline">
- <text class="sign" v-if="data.status.value == 2" :class="{signRed: data.exception == 1}">{{data.exception == 1 ? '异常' : '正常'}}</text>{{ data.inspectionDTO?.inspectionFormDTO?.name }}-{{ data.inspectionNodeDTO?.name }}-{{ data.batchNo }}
- </view>
- <view class="body_item_content">
- <view class="body_item_content_p" v-if="data.inspectionDTO">
- <text class="name ellipsis">计划标题:{{data.inspectionDTO.name}}</text>
- </view>
- <view class="body_item_content_p" v-if="data.signType">
- <text class="name ellipsis">签到方式:{{data.signType.name}}</text>
- </view>
- <view class="body_item_content_p" v-if="data.userDTO || data.groupDTO">
- <text class="name ellipsis">执行人或组:{{ data.userDTO?.name || data.groupDTO?.groupName }}</text>
- </view>
- <view class="body_item_content_p" v-if="data.status || data.addTime">
- <text class="name ellipsis">状态:{{ data.status?.name}}</text>
- <text class="date">{{formatDate(data.addTime, 'yyyy-MM-dd HH:mm')}}</text>
- </view>
- </view>
- <view class="body_item_foot">
- <view class="btns pt0">
- <button v-if="data.status.value === '1'" @click.stop="toInspectionValue(data)" type="default" class="primaryButton btn">执行</button>
- <button v-if="data.status.value === '2' && data.exception == 1 && !data.incidentId && data.inspectionDTO.inspectionFormDTO.showOrder == 1" @click.stop="toBuildIncident(data)" type="default" class="primaryButton btn">生成维修单</button>
- </view>
- </view>
- </view>
- </view>
- <view class="zanwu" v-else>
- <text class="newicon newicon-zanwu"></text>
- </view>
- <view class="toolbar" @click="scanning()">
- <text class="toolbar-icon newicon newicon-saoma"></text>
- <text class="toolbar-sao">扫一扫</text>
- </view>
- <InspectionListFilter v-if="dataInfo.isFilter" @cancelEmit="cancelFilter" @confirmEmit="conformFilter" :evt="dataInfo.evtFilter"></InspectionListFilter>
- </view>
- </template>
- <script setup>
- import InspectionListFilter from '@/components/InspectionListFilter.vue';
- import { startOfDay, endOfDay, format, add } from 'date-fns'
- import { ref, reactive, computed } from 'vue'
- import { onLoad, onPullDownRefresh, onReachBottom, onTabItemTap } from '@dcloudio/uni-app'
- import { SM } from "@/http/http.js"
- import { api_getDictionary, api_inspectionTask, api_listCount, api_scanCode, api_scanNodeCode, api_listAttachment } from "@/http/api.js"
- import { filterFormatDate } from '@/filters/filterFormatDate.js'
- import { computedPriorityStyle } from '@/filters/computedPriorityStyle.js'
- import { computedStateStyle } from '@/filters/computedStateStyle.js'
- import { computedCurrentLogOverTime } from '@/filters/computedCurrentLogOverTime.js'
- import { defaultColor } from '@/static/js/theme.js'
- import { useSetTitle } from '@/share/useSetTitle.js'
- import { useMakePhoneCall } from '@/share/useMakePhoneCall.js'
- import { useLoginUserStore } from '@/stores/loginUser'
- import { useIncidentNumStore } from '@/stores/incidentNum'
- import { useInspectionListSearchStore } from '@/stores/inspectionListSearch'
- import { useInspectionValueStore } from '@/stores/inspectionValue'
- import { useSetTabbar } from '@/share/useSetTabbar.js'
- import { useIncidentBuildStore } from '@/stores/incidentBuild'
- useSetTitle();
- const loginUserStore = useLoginUserStore();
- const incidentNumStore = useIncidentNumStore();
- const inspectionListSearchStore = useInspectionListSearchStore();
- const inspectionValueStore = useInspectionValueStore();
- const { formatDate } = filterFormatDate();
- const { priorityStyle } = computedPriorityStyle();
- const { stateStyle } = computedStateStyle();
- const { currentLogOverTime } = computedCurrentLogOverTime();
- const { makePhoneCall } = useMakePhoneCall();
- const { setTabbar } = useSetTabbar();
- const incidentBuildStore = useIncidentBuildStore();
- // 主题颜色
- const primaryColor = ref(defaultColor)
- const assignFlag = ref(false);//指派权限
- const qiangdan = ref(false);//接单权限
-
- // 转换协同人
- const computedSynergetic = computed(() => (synergetic) => {
- return (synergetic && synergetic.length) ? synergetic.map(v => v.name).join(',') : ''
- })
-
- // 故障来源列表
- const defaultSourceValue = ref();
- // 数据
- const dataInfo = reactive({
- tabs: [{id: 0, name: '全部', value: 'all', num: ''}],
- tabActiveId: 0,//当前选择的tab
- list: [],//工单列表
- idx: 0,//页码
- hasMore: true,//是否有更多数据
- isFilter: false,//筛选框开关
- evtFilter: {
- area: {id: 0, area: '全部'},
- inspectionForm: {id: 0, name: '全部'},
- acceptDate: [],
- },//筛选框数据
- })
-
- // 扫一扫
- function scanning(){
- uni.showLoading({
- title: "加载中",
- mask: true,
- });
- SM().then((ress1) => {
- // ----------------------------------
- let postData = {
- queryTask: 'todo',
- code: ress1,
- idx: 0,
- sum: 1,
- assignAccount: loginUserStore.loginUser.user.account,
- };
- api_scanNodeCode(postData).then((res) => {
- if (res.status == 200) {
- if(res.totalNum == 1){
- let data = res.list[0];
- let postData = {
- code: ress1,
- taskId: data.id,
- account: loginUserStore.loginUser.user.account,
- };
- api_scanCode(postData).then((res) => {
- uni.hideLoading();
- if (res.status == 200) {
- inspectionValueStore.setInspectionValueData(res.data);
- uni.navigateTo({
- url: `/pages/inspection/inspectionValue/inspectionValue?inspectionExecuteId=${data.id}`
- })
- } else {
- uni.showToast({
- icon: 'none',
- title: res.msg || '请求数据失败!'
- });
- }
- });
- }else{
- uni.hideLoading();
- uni.navigateTo({
- url: `/pages/inspection/inspectionScanning/inspectionScanning?inspectionNodeNewCode=${ress1}&inspectionNodeCode=${res.data.code}&inspectionNodeName=${res.data.name}`
- })
- }
- } else {
- uni.hideLoading();
- uni.showToast({
- icon: 'none',
- title: res.msg || '请求数据失败!'
- });
- }
- });
- }).catch(err=>{
- uni.hideLoading();
- });
- }
-
- // 获取故障来源列表
- function getSources(){
- let postData = {
- "key": 'incident_source',
- "type": "list",
- };
- api_getDictionary(postData).then(res => {
- res = res || [];
- let discover = res.find(v => v.value === 'inspection');
- if(discover){
- defaultSourceValue.value = discover.id;
- }
- })
- }
-
- // 新建事件
- async function toBuildIncident(res){
- incidentBuildStore.clearIncidentBuildData();
- let imgObj = res.inspectionFormValuesList.find(v => v.inspectionFormItemDTO.type.value == 7);
- let repairImgList = [];
- if(imgObj){
- let result = await api_listAttachment('inspection', res.id);
- result.data = result.data || [];
- result.data = result.data.filter(v => v.recordId == imgObj.itemId);
- result.data = result.data.map(v => ({
- url: location.origin + "/file" + v.relativeFilePath,
- path: location.origin + "/file" + v.relativeFilePath,
- size: v.size,
- name: v.name,
- extname: v.suffix,
- }))
- repairImgList = result.data;
- }
-
- console.log(repairImgList, 'repairImgList')
-
- let incidentData = {
- place: res.inspectionNodeDTO.floorDTO,
- houseNumber: res.inspectionNodeDTO.address,
- source: defaultSourceValue.value,
- description: res.inspectionFormValuesList.filter(v => v.exception == 1).map(v => `${v.name}填写值为${v.valuex}`).join(';'),
- requester: loginUserStore.loginUser.user,
- branch: loginUserStore.loginUser.user.currentHospital.parent ? loginUserStore.loginUser.user.currentHospital.parent.id : loginUserStore.loginUser.user.currentHospital.id,
- contacts: loginUserStore.loginUser.user.name,
- contactsInformation: loginUserStore.loginUser.user.phone,
- category: res.inspectionDTO.inspectionFormDTO.categoryDTO,
- department: res.inspectionDTO.inspectionFormDTO.repairDeptDTO,
- priority: res.inspectionDTO.inspectionFormDTO.priorityDTO,
- repairImgList,
- inspectionTaskId: res.id,
- }
- console.log(incidentData, 'incidentData')
- incidentBuildStore.setIncidentBuildData(incidentData, 'buildIncident');
- uni.navigateTo({
- url: `/pages/buildIncident/buildIncident?type=inspection`
- })
- }
- // 巡检项
- function toInspectionValue(data){
- uni.showLoading({
- title: "加载中",
- mask: true,
- });
- // 'inspection|$|1bd0c704-0962-4ed4-b5a6-b5bda3d78231'
- // 'inspection|$|bc9f61af-99c8-4c86-88f9-f29dd3fc43c0'
- // 'inspection|$|92e7bb9a-5f58-42f6-991a-fcd67247e295'
- SM().then((ress1) => {
- let postData = {
- code: ress1,
- taskId: data.id,
- account: loginUserStore.loginUser.user.account,
- };
- api_scanCode(postData).then((res) => {
- uni.hideLoading();
- if (res.status == 200) {
- inspectionValueStore.setInspectionValueData(res.data);
- uni.navigateTo({
- url: `/pages/inspection/inspectionValue/inspectionValue?inspectionExecuteId=${data.id}`
- })
- } else {
- uni.showToast({
- icon: 'none',
- title: res.msg || '请求数据失败!'
- });
- }
- });
- }).catch(err=>{
- uni.hideLoading();
- });
- }
- // 获取tab选项
- function getTabs(){
- uni.showLoading({
- title: "加载中",
- mask: true,
- });
- api_getDictionary({
- "type": "list",
- "key": "inspection_task_status"
- }).then(res => {
- uni.hideLoading();
- let list = res || [];
- let todo = list.find(v => v.value === '1');
- let close = list.find(v => v.value === '2');
- dataInfo.tabs = [{id: 0, name: '全部', value: 'all', num: ''}];
- todo && dataInfo.tabs.push({...todo, ...{num: '', value: 'todo'}});
- close && dataInfo.tabs.push({...close, ...{num: '', value: 'close'}});
- getList(0);
- })
- }
- // 点击tab
- function clickTab(tabId){
- dataInfo.tabActiveId = tabId;
- getList(0);
- }
- // 点击筛选
- function filterClick(){
- dataInfo.isFilter = true;
- }
- // 确认筛选
- function conformFilter(evtFilter){
- dataInfo.evtFilter = evtFilter;
- dataInfo.isFilter = false;
- getList(0);
- }
- // 关闭筛选
- function cancelFilter(){
- dataInfo.isFilter = false;
- }
- // 获取列表信息
- function getList(idx){
- uni.showLoading({
- title: "加载中",
- mask: true,
- });
- dataInfo.idx = idx === undefined ? dataInfo.idx : idx;
- if(dataInfo.idx === 0){
- dataInfo.list = [];
- }
- let tabActiveObj = dataInfo.tabs.find(v => v.id == dataInfo.tabActiveId);
- let postData = {
- "idx": dataInfo.idx,
- "sum": 10,
- "account": loginUserStore.loginUser.user.account,
- "inspectionTask": {
- "queryTask": tabActiveObj ? tabActiveObj.value : undefined,
- "assignAccount": loginUserStore.loginUser.user.account,
- }
- }
- if(dataInfo.evtFilter && dataInfo.evtFilter.inspectionForm && dataInfo.evtFilter.inspectionForm.id){
- postData.inspectionTask.formId = dataInfo.evtFilter.inspectionForm.id;
- }
- if(dataInfo.evtFilter && Array.isArray(dataInfo.evtFilter.acceptDate) && dataInfo.evtFilter.acceptDate.length){
- postData.inspectionTask.addTimeStart = format(startOfDay(new Date(dataInfo.evtFilter.acceptDate[0])), 'yyyy-MM-dd HH:mm:ss');
- postData.inspectionTask.addTimeEnd = format(endOfDay(dataInfo.evtFilter.acceptDate[1]), 'yyyy-MM-dd HH:mm:ss');
- }
- if(dataInfo.evtFilter && dataInfo.evtFilter.area && dataInfo.evtFilter.area.id){
- postData.inspectionTask.buildId = dataInfo.evtFilter.area.id;
- }
- inspectionListSearchStore.setInspectionListSearchData(dataInfo);
- api_inspectionTask(postData).then(res => {
- uni.hideLoading();
- uni.stopPullDownRefresh();
- if(res.status == 200){
- let list = res.list || [];
- if(list.length){
- dataInfo.hasMore = true;
- dataInfo.list = dataInfo.idx === 0 ? list : dataInfo.list.concat(list);
- }else{
- dataInfo.hasMore = false;
- }
- }else{
- uni.showToast({
- icon: 'none',
- title: res.msg || '请求数据失败!'
- });
- }
- })
- getCount(postData.inspectionTask);
- }
- // 获取列表数量
- function getCount(inspectionTask = {}){
- let postData = {
- account: loginUserStore.loginUser.user.account,
- taskList: [],
- }
- dataInfo.tabs.forEach(v => {
- postData.taskList.push({...inspectionTask, ...{ queryTask: v.value }});
- })
- api_listCount(postData).then(res => {
- if(res.state == 200){
- let myData = res.data || [];
- dataInfo.tabs.forEach((v) => {
- v.num = myData[v.value];
- })
- }else{
- uni.showToast({
- icon: 'none',
- title: res.msg || '请求数据失败!'
- });
- }
- })
- }
- // 初始化
- function onLoadFn(){
- // 我的-数量跳转
- if(inspectionListSearchStore.inspectionListSearch.data){
- // 缓存的搜索条件
- Object.assign(dataInfo, inspectionListSearchStore.inspectionListSearch.data);
- }
- getTabs();
- }
- onLoad((option) => {
- getSources();
- for(let i = 0; i<7; i++){
- setTabbar(i)
- }
- onLoadFn();
- })
- onTabItemTap(e => {
- onLoadFn();
- })
- onPullDownRefresh(() => {
- getList(0)
- })
- onReachBottom(() => {
- dataInfo.idx += 1;
- if (dataInfo.hasMore) {
- getList(); // 当触底时加载更多数据
- }
- })
- </script>
- <style lang="scss" scoped>
- .toolbar {
- position: fixed;
- left: 0;
- bottom: var(--window-bottom);
- z-index: 99;
- width: 100%;
- height: 88rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- box-sizing: border-box;
- border-radius: 4rpx;
- background-color: #E5E8ED;
- .toolbar-icon {
- font-size: 52rpx;
- margin-right: 16rpx;
- color: #49B856;
- }
- .toolbar-sao {
- font-size: 36rpx;
- color: #333;
- }
- }
- page{
- height: calc(100vh - var(--window-bottom));
- }
- .incidentList{
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- .head{
- height: 88rpx;
- display: flex;
- position: fixed;
- z-index: 99;
- width: 100%;
- background-color: #fff;
- font-size: 30rpx;
- .tab{
- flex: 1;
- display: flex;
- justify-content: center;
- align-items: center;
- border-bottom: 4rpx solid transparent;
- &.active{
- color: $uni-primary;
- border-color: $uni-primary;
- }
- }
- .filter{
- width: 84rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- .newicon-shaixuan{
- font-size: 36rpx;
- color: #2C2C2C;
- }
- }
- }
- .body{
- margin-bottom: calc(var(--window-bottom) + 88rpx);
- margin-top: 88rpx;
- border-top: 6rpx solid #EBEBEB;
- .body_item{
- border-bottom: 8rpx solid #EBEBEB;
- .body_item_head{
- word-break: break-all;
- text-align: justify;
- text-align: left;
- margin: 24rpx;
- font-size: 30rpx;
- .sign{
- margin-right: 16rpx;
- font-weight: bold;
- color: #49B856;
- &.signRed{
- color: #FF0000;
- }
- }
- }
- .body_item_content{
- border-top: 1rpx solid #D8D8D8;
- padding: 24rpx 24rpx 24rpx 48rpx;
- .body_item_content_p{
- color: #6A6A6A;
- font-size: 26rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 24rpx;
- &:last-of-type{
- margin-bottom: 0;
- }
- .name{
- flex: 1;
- }
- .status{
- padding: 4rpx 10rpx;
- border-radius: 20rpx;
- background-color: #DBE8FE;
- font-size: 22rpx;
- color: #006CF9;
- }
- .icon_all{
- .mic-filled,
- .image-filled
- {
- margin-left: 16rpx;
- }
- }
- }
- }
- .body_item_foot{
- border-top: 1rpx solid #D8D8D8;
- font-size: 26rpx;
- padding: 24rpx;
- .foot_info{
- display: flex;
- justify-content: space-between;
- align-items: center;
- .phone-filled{
- margin-left: 5rpx;
- }
- }
- }
- }
- }
- .zanwu{
- box-sizing: border-box;
- margin-bottom: calc(var(--window-bottom) + 88rpx);
- margin-top: 88rpx;
- border-top: 6rpx solid #EBEBEB;
- height: calc(100vh - var(--window-bottom) - 176rpx);
- display: flex;
- justify-content: center;
- background-color: #F7F7F7;
- .newicon-zanwu{
- font-size: 256rpx;
- color: #D6D6D6;
- margin-top: 140rpx;
- }
- }
- }
- </style>
|