This commit is contained in:
bb_pan 2025-12-08 15:28:33 +08:00
parent 3a4473a387
commit 04816a4b00
15 changed files with 273 additions and 79 deletions

View File

@ -79,7 +79,7 @@
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="资产原值(元)" prop="originalValue">
<el-form-item label="资产原值(元)" prop="originalValue">
<el-input
@input="handlePriceInput"
autocomplete="off"

View File

@ -16,7 +16,7 @@
</el-form-item>
</el-col>
<el-col :span="5" >
<el-form-item label="装备厂家" prop="manufacturerId" label-width="70px">
<el-form-item label="生产厂家" prop="manufacturerId" label-width="70px">
<el-select
v-model="queryParams.manufacturerId"
placeholder="请选择生产厂家"
@ -115,16 +115,17 @@
align="center"
show-overflow-tooltip
prop="workingHours"
label="标准使用到期时间(年限)"
label="最大使用年限"
>
<template slot-scope="scope">
{{ formatDate(scope.row.expirationTime) }} ({{ scope.row.expirationYears }})
<!-- {{ formatDate(scope.row.expirationTime) }} ({{ scope.row.expirationYears }}) -->
{{ scope.row.expirationYears }}
</template>
</el-table-column>
<el-table-column align="center" show-overflow-tooltip prop=" remainingYears" label="实际使用天数(天数)">
<el-table-column align="center" show-overflow-tooltip prop=" remainingYears" label="实际使用年限">
<template slot-scope="scope"> {{ scope.row.daysDiff }} ({{ scope.row.yearsDiff }})</template>
</el-table-column>
<el-table-column align="center" show-overflow-tooltip prop="remainingDays" label="实际使用天数(年限)">
<el-table-column align="center" show-overflow-tooltip prop="remainingDays" label="剩余使用年限">
<template slot-scope="scope">
{{ scope.row.remainingDays }} ({{ scope.row.remainingYears }})
</template>

View File

@ -55,7 +55,7 @@
<el-table-column align="center" show-overflow-tooltip prop="toolNum" label="退役工具数" />
<el-table-column align="center" show-overflow-tooltip prop="reviewStatus" label="任务状态">
<template slot-scope="scope">
<el-tag :type="getStatusType(scope.row.reviewStatus)">
<el-tag :type="getStatusType(scope.row.reviewStatus)" @click="openDialog(scope.row)" style="cursor: pointer">
{{ getStatusLabel(scope.row.reviewStatus) }}
</el-tag>
</template>
@ -80,16 +80,20 @@
</div>
</el-card>
</el-row>
<ApproveDialog ref="approveDialog" />
</div>
</template>
<script>
import { getRetireApplyListAPI } from '@/api/EquipmentRetireApply/index.js'
import pagination from '@/components/Pagination'
import ApproveDialog from '@/views/business/components/ApproveDialog'
export default {
components: {
pagination
pagination,
ApproveDialog
},
data() {
return {
@ -173,6 +177,9 @@ export default {
'3': 'danger'
}
return typeMap[status] || 'info'
},
openDialog(row) {
this.$refs.approveDialog.openDialog(row.id, 'EQUIPMENT_SCRAP')
}
},

View File

@ -83,6 +83,7 @@
<el-table
ref="itemTable"
:data="itemList"
row-key="id"
style="width: 100%"
border
stripe
@ -91,7 +92,7 @@
height="546"
@selection-change="onSelectionChange"
>
<el-table-column type="selection" width="50" />
<el-table-column type="selection" width="50" :selectable="selectable" :reserve-selection="true"/>
<el-table-column align="center" type="index" label="序号" width="100" />
<el-table-column align="center" prop="devType" label="分类" min-width="70" >
<template slot-scope="scope">
@ -105,7 +106,7 @@
<el-table-column align="center" prop="manageMode" label="管理模式" min-width="80" />
<el-table-column align="center" prop="devCode" label="设备编码" min-width="100" />
<el-table-column align="center" prop="inStockNum" label="在库数量" width="100" />
<el-table-column align="center" prop="scrapQuantity" label="申请报废数量" width="150">
<el-table-column align="center" prop="scrapQuantity" label="申请退役数量" width="150">
<template slot-scope="scope">
<el-input-number
v-model="scope.row.scrapQuantity"
@ -270,7 +271,9 @@ export default {
}
this.getItemList()
},
selectable(row) {
return !this.existingItems.some(item => item.keyId === row.keyId)
},
onSelectionChange(selection) {
this.selectedItems = selection
//
@ -282,13 +285,14 @@ export default {
},
onHandleConfirm() {
if (this.allSelectedItems.length === 0) {
if (this.selectedItems.length === 0) {
this.$message.warning('请选择至少一项')
return
}
//
const invalidItems = this.allSelectedItems.filter(item => !item.scrapQuantity || item.scrapQuantity < 1)
// const invalidItems = this.allSelectedItems.filter(item => !item.scrapQuantity || item.scrapQuantity < 1)
const invalidItems = this.selectedItems.filter(item => !item.scrapQuantity || item.scrapQuantity < 1)
if (invalidItems.length > 0) {
const invalidNames = invalidItems.map(item => item.typeModelName).join('、')
this.$message.warning(`以下项目的申请报废数量必须大于0${invalidNames}`)
@ -296,16 +300,17 @@ export default {
}
// keyId
const existingKeyIds = this.existingItems.map(item => item.keyId)
const duplicates = this.allSelectedItems.filter(item => existingKeyIds.includes(item.keyId))
// const existingKeyIds = this.existingItems.map(item => item.keyId)
// const duplicates = this.allSelectedItems.filter(item => existingKeyIds.includes(item.keyId))
if (duplicates.length > 0) {
const duplicateNames = duplicates.map(item => item.typeModelName).join('、')
this.$message.warning(`以下项目已存在,不能重复添加:${duplicateNames}`)
return
}
// if (duplicates.length > 0) {
// const duplicateNames = duplicates.map(item => item.typeModelName).join('')
// this.$message.warning(`${duplicateNames}`)
// return
// }
this.$emit('confirm', this.allSelectedItems)
this.$emit('confirm', this.selectedItems)
this.visible = false
this.selectedItems = []
this.allSelectedItems = []

View File

@ -53,7 +53,7 @@
</el-col>
</div>
<el-table :data="detailList" style="width: 100%" border stripe size="small" fit height="546">
<el-table :data="detailList" row-key="id" style="width: 100%" border stripe size="small" fit height="546">
<el-table-column align="center" type="index" label="序号" width="70" />
<el-table-column align="center" prop="type" label="分类" width="90" />
<el-table-column align="center" prop="typeName" label="类目" width="180" />
@ -143,7 +143,8 @@ export default {
upload: {
headers: { Authorization: 'Bearer ' + getToken() },
url: process.env.VUE_APP_BASE_API + '/file/upload'
}
},
selectedRow: []
}
},
computed: {
@ -214,7 +215,12 @@ export default {
...item,
bmFileInfos: item.bmFileInfos || []
}))
this.detailList.push(...itemsWithFileInfo)
// this.detailList.push(...itemsWithFileInfo)
// this.detailList = [...itemsWithFileInfo]
//
const existingTypeIds = new Set(this.detailList.map(item => item.id))
const newItems = itemsWithFileInfo.filter(item => !existingTypeIds.has(item.id))
this.detailList.push(...newItems)
},
onHandleDeleteItem(row) {
@ -242,6 +248,7 @@ export default {
...this.baseInfo,
operationType: this.isNew ? 'add' : 'edit', //
toBeScrapList: this.detailList.map(item => ({
...item,
keyId: item.keyId,
devCode: item.devCode,
type: item.type,

View File

@ -63,7 +63,7 @@
<el-table-column align="center" show-overflow-tooltip prop="toolNum" label="退役工具数" />
<el-table-column align="center" show-overflow-tooltip prop="reviewStatus" label="任务状态">
<template slot-scope="scope">
<el-tag :type="getStatusType(scope.row.reviewStatus)">
<el-tag :type="getStatusType(scope.row.reviewStatus)" @click="openDialog(scope.row)" style="cursor: pointer">
{{ getStatusLabel(scope.row.reviewStatus) }}
</el-tag>
</template>
@ -89,16 +89,20 @@
</div>
</el-card>
</el-row>
<ApproveDialog ref="approveDialog" />
</div>
</template>
<script>
import { getRetireApplyListAPI, deleteRetireApplyTaskAPI } from '@/api/EquipmentRetireApply/index.js'
import pagination from '@/components/Pagination'
import ApproveDialog from '@/views/business/components/ApproveDialog'
export default {
components: {
pagination
pagination,
ApproveDialog
},
data() {
return {
@ -208,6 +212,9 @@ export default {
'3': 'danger'
}
return typeMap[status] || 'info'
},
openDialog(row) {
this.$refs.approveDialog.openDialog(row.id, 'EQUIPMENT_SCRAP')
}
},

View File

@ -2,10 +2,10 @@
<!-- 基础页面 -->
<div class="app-container">
<el-card v-show="showSearch" style="margin-bottom: 20px">
<el-form :model="queryParams" ref="queryForm" :rules="outFormRules" inline label-width="110px">
<el-form :model="queryParams" ref="queryForm" :rules="outFormRules" inline label-width="120px">
<el-form-item label="需求单位" prop="useUnit">
<el-input style="width: 200px" v-model="queryParams.useUnit" placeholder="请输入需求单位"
<el-input style="width: 240px" v-model="queryParams.useUnit" placeholder="请输入需求单位"
:disabled="queryParams.status=='0'" clearable
/>
</el-form-item>
@ -14,7 +14,7 @@
<el-select
clearable
:disabled="!routerParams.isEdit"
style="width: 200px"
style="width: 240px"
placeholder="请选择使用项目"
v-model="queryParams.proCode"
@change="onChangeProCode"
@ -29,19 +29,19 @@
</el-form-item>
<el-form-item label="项目类型" prop="proType">
<el-input style="width: 200px" disabled v-model="queryParams.proType"/>
<el-input style="width: 240px" disabled v-model="queryParams.proType"/>
</el-form-item>
<el-form-item label="电压等级" prop="voltageLevel">
<el-input style="width: 200px" disabled v-model="queryParams.voltageLevel"/>
<el-input style="width: 240px" disabled v-model="queryParams.voltageLevel"/>
</el-form-item>
<el-form-item label="项目所在省" prop="proProvince">
<el-input style="width: 200px" disabled v-model="queryParams.proProvince"/>
<el-input style="width: 240px" disabled v-model="queryParams.proProvince"/>
</el-form-item>
<el-form-item label="项目所在市" prop="proCity">
<el-input style="width: 200px" disabled v-model="queryParams.proCity"/>
<el-input style="width: 240px" disabled v-model="queryParams.proCity"/>
</el-form-item>
<el-form-item label="项目所在区/县" prop="proCounty">
<el-input style="width: 200px" disabled v-model="queryParams.proCounty"/>
<el-input style="width: 240px" disabled v-model="queryParams.proCounty"/>
</el-form-item>
<el-form-item label="使用到期日期" prop="useTimeRange">
@ -53,7 +53,7 @@
start-placeholder="开始日期"
end-placeholder="结束日期"
value-format="yyyy-MM-dd"
style="width: 200px"
style="width: 240px"
>
</el-date-picker>
</el-form-item>
@ -252,8 +252,8 @@
</el-row>
<!-- 设备列表表格 -->
<el-table ref="addTable" :data="addList" height="546" @selection-change="handleSelectionChange" border stripe>
<el-table-column type="selection" width="55" align="center" :selectable="selectable"/>
<el-table ref="addTable" :data="addList" row-key="id" height="546" @selection-change="handleSelectionChange" border stripe>
<el-table-column type="selection" width="55" align="center" :selectable="selectable" :reserve-selection="true"/>
<el-table-column label="序号" align="center" width="80" type="index">
<template slot-scope="scope">
<span>{{
@ -411,7 +411,8 @@ export default {
multiple: false, //
//
currentCategoryName: '',
currentToolCategoryName: ''
currentToolCategoryName: '',
selectedRow: [],
}
},
created() {
@ -797,6 +798,7 @@ export default {
console.log(selection)
this.addTempList = []
this.ids = selection.map(item => item.id)
this.selectedRow = selection
selection.forEach(item => {
this.addTempList.push({
id: item.id,
@ -851,15 +853,15 @@ export default {
return
}
const itemsToAdd = this.addList.filter(item => this.ids.includes(item.id))
const invalidItem = itemsToAdd.find(item => item.manageType === '1' && (item.num == 0 || !item.num))
// const itemsToAdd = this.addList.filter(item => this.ids.includes(item.id))
const invalidItem = this.selectedRow.find(item => item.manageType === '1' && (item.num == 0 || !item.num))
if (invalidItem) {
this.$message.error('请为数量管理的设备填写申请数量。')
return
}
// useTimeRange Date
itemsToAdd.forEach(item => {
this.selectedRow.forEach(item => {
this.tableList.push({
...item,
//

View File

@ -101,10 +101,10 @@
<el-table-column label="申请工具数" align="center" prop="toolNum" :show-overflow-tooltip="true" />
<el-table-column label="任务状态" align="center" prop="taskStatus" :show-overflow-tooltip="true" >
<template slot-scope="scope">
<el-tag v-if="scope.row.taskStatus == '0'" type="info">待审批</el-tag>
<el-tag v-if="scope.row.taskStatus == '1'" type="warning">审批中</el-tag>
<el-tag v-if="scope.row.taskStatus == '2'" type="success">已审批</el-tag>
<el-tag v-if="scope.row.taskStatus == '3'" type="danger">审批驳回</el-tag>
<el-tag v-if="scope.row.taskStatus == '0'" type="info" @click="openDialog(scope.row)" style="cursor: pointer">待审批</el-tag>
<el-tag v-if="scope.row.taskStatus == '1'" type="warning" @click="openDialog(scope.row)" style="cursor: pointer">审批中</el-tag>
<el-tag v-if="scope.row.taskStatus == '2'" type="success" @click="openDialog(scope.row)" style="cursor: pointer">已审批</el-tag>
<el-tag v-if="scope.row.taskStatus == '3'" type="danger" @click="openDialog(scope.row)" style="cursor: pointer">审批驳回</el-tag>
</template>
</el-table-column>
<el-table-column label="申请人" align="center" prop="createBy" :show-overflow-tooltip="true" width="140px"/>
@ -129,17 +129,23 @@
@pagination="getList"
/>
</el-card>
<ApproveDialog ref="approveDialog" />
</div>
</template>
<script>
import { getToolApplyListApi, deleteToolApplyApi } from '@/api/toolsManage'
import { getListApi,deleteApplyApi } from '@/api/business'
import ApproveDialog from '@/views/business/components/ApproveDialog'
import {
getUseProjectListAPI,
} from '@/api/EquipmentLedger/equ-out'
export default {
name: 'ApplyList',
components: {
ApproveDialog,
},
data() {
return {
isLoading: false,
@ -246,6 +252,9 @@ export default {
}
})
},
openDialog(row) {
this.$refs.approveDialog.openDialog(row.id, 'EQUIPMENT_OUT')
}
},
}
</script>

View File

@ -95,10 +95,10 @@
<el-table-column label="申请工具数" align="center" prop="toolNum" :show-overflow-tooltip="true" />
<el-table-column label="任务状态" align="center" prop="taskStatus" :show-overflow-tooltip="true" >
<template slot-scope="scope">
<el-tag v-if="scope.row.taskStatus == '0'" type="info">待审批</el-tag>
<el-tag v-if="scope.row.taskStatus == '1'" type="warning">审批中</el-tag>
<el-tag v-if="scope.row.taskStatus == '2'" type="success">已审批</el-tag>
<el-tag v-if="scope.row.taskStatus == '3'" type="danger">审批驳回</el-tag>
<el-tag v-if="scope.row.taskStatus == '0'" type="info" @click="openDialog(scope.row)" style="cursor: pointer">待审批</el-tag>
<el-tag v-if="scope.row.taskStatus == '1'" type="warning" @click="openDialog(scope.row)" style="cursor: pointer">审批中</el-tag>
<el-tag v-if="scope.row.taskStatus == '2'" type="success" @click="openDialog(scope.row)" style="cursor: pointer">已审批</el-tag>
<el-tag v-if="scope.row.taskStatus == '3'" type="danger" @click="openDialog(scope.row)" style="cursor: pointer">审批驳回</el-tag>
</template>
</el-table-column>
<el-table-column label="申请人" align="center" prop="createBy" :show-overflow-tooltip="true" width="140px"/>
@ -120,6 +120,8 @@
@pagination="getList"
/>
</el-card>
<ApproveDialog ref="approveDialog" />
</div>
</template>
@ -128,8 +130,13 @@ import { getListApi, } from '@/api/business'
import {
getUseProjectListAPI,
} from '@/api/EquipmentLedger/equ-out'
import ApproveDialog from '@/views/business/components/ApproveDialog'
export default {
name: 'AuditList',
components: {
ApproveDialog,
},
data() {
return {
isLoading: false,
@ -211,6 +218,9 @@ export default {
handleEdit(row) {
this.$router.push({ path: '/business/addAudit', query: { id: row.id, isEdit: true } })
},
openDialog(row) {
this.$refs.approveDialog.openDialog(row.id, 'EQUIPMENT_OUT')
}
},
}
</script>

View File

@ -0,0 +1,110 @@
<template>
<div>
<el-dialog :title="title" :visible.sync="visible" width="800px">
<div v-if="processConfig && processConfig.nodeList" style="margin-top: 30px" v-loading="loading">
<div style="margin-bottom: 15px; font-weight: bold">审批进度</div>
<el-timeline>
<el-timeline-item
v-for="node in processConfig.nodeList"
:key="node.id"
:timestamp="getNodeRecord(node) ? getNodeRecord(node).approveTime : ''"
placement="top"
:type="getNodeTagType(node)"
>
<p>
<strong>{{ node.nodeName }}</strong>
<span style="margin-left: 20px">{{ getNodeStatusLabel(node) }}</span>
</p>
<p v-if="getNodeRecord(node)"> 审批人{{ getNodeRecord(node).approverName }} </p>
<p v-if="getNodeRecord(node)"> 审批意见{{ getNodeRecord(node).approveOpinion }} </p>
</el-timeline-item>
</el-timeline>
</div>
</el-dialog>
</div>
</template>
<script>
import { getApprovalInstanceByBusiness, getApprovalDetail, getProcessConfig } from '@/api/approval'
export default {
name: 'ApproveDialog',
data() {
return {
visible: false,
title: '审批详情',
loading: false,
approvalInstance: {},
processConfig: { nodeList: [] },
}
},
methods: {
//
getNodeTagType(node) {
const record = this.getNodeRecord(node)
if (record) {
return record.approveResult === '1' ? 'success' : 'danger'
}
if (node.id === this.approvalInstance.currentNodeId) {
return 'warning'
}
return 'info'
},
//
getNodeRecord(node) {
if (!this.approvalInstance.recordList) {
return null
}
return this.approvalInstance.recordList.find((record) => record.nodeId === node.id)
},
//
getNodeStatusLabel(node) {
const record = this.getNodeRecord(node)
if (record) {
return record.approveResult === '1' ? '已通过' : '已驳回'
}
if (node.id === this.approvalInstance.currentNodeId) {
return '审批中'
}
return '未开始'
},
async getInfo(id, type) {
try {
this.loading = true
const businessId = id
if (!businessId) {
return
}
const instanceRes = await getApprovalInstanceByBusiness(type, businessId)
if (!instanceRes || !instanceRes.data) {
return
}
const instanceId = instanceRes.data.id
const processId = instanceRes.data.processId
if (!instanceId || !processId) {
return
}
const approvalRes = await getApprovalDetail(instanceId)
this.approvalInstance = approvalRes.data || {}
if (!approvalRes.data) return
const res = await getProcessConfig(processId)
this.processConfig = res.data || { nodeList: [] }
} catch (error) {
console.log('🚀 ~ error:', error)
} finally {
this.loading = false
}
},
openDialog(id, type) {
this.getInfo(id, type)
this.visible = true
},
},
}
</script>
<style lang="scss" scoped></style>

View File

@ -112,10 +112,10 @@
<el-table-column label="退库工具数" align="center" prop="toolNum" :show-overflow-tooltip="true"/>
<el-table-column label="任务状态" align="center" prop="taskStatus" :show-overflow-tooltip="true">
<template slot-scope="scope">
<el-tag v-if="scope.row.taskStatus == '0'" type="info">待审批</el-tag>
<el-tag v-if="scope.row.taskStatus == '1'" type="warning">审批中</el-tag>
<el-tag v-if="scope.row.taskStatus == '2'" type="success">已审批</el-tag>
<el-tag v-if="scope.row.taskStatus == '3'" type="danger">审批驳回</el-tag>
<el-tag v-if="scope.row.taskStatus == '0'" type="info" @click="openDialog(scope.row)" style="cursor: pointer">待审批</el-tag>
<el-tag v-if="scope.row.taskStatus == '1'" type="warning" @click="openDialog(scope.row)" style="cursor: pointer">审批中</el-tag>
<el-tag v-if="scope.row.taskStatus == '2'" type="success" @click="openDialog(scope.row)" style="cursor: pointer">已审批</el-tag>
<el-tag v-if="scope.row.taskStatus == '3'" type="danger" @click="openDialog(scope.row)" style="cursor: pointer">审批驳回</el-tag>
</template>
</el-table-column>
<el-table-column label="申请人" align="center" prop="createBy" :show-overflow-tooltip="true" width="140px"/>
@ -139,6 +139,8 @@
@pagination="getList"
/>
</el-card>
<ApproveDialog ref="approveDialog" />
</div>
</template>
@ -148,9 +150,13 @@ import {
getUseProjectListAPI
} from '@/api/EquipmentLedger/equ-out'
import { deptTreeSelect } from '@/api/system/user'
import ApproveDialog from '@/views/business/components/ApproveDialog'
export default {
name: 'AuditList',
components: {
ApproveDialog
},
data() {
return {
propertyUnitList: [],
@ -249,6 +255,9 @@ export default {
//
handleEdit(row) {
this.$router.push({ path: '/business/warehouse/auditDetails', query: { id: row.id, isEdit: true } })
},
openDialog(row) {
this.$refs.approveDialog.openDialog(row.id, 'EQUIPMENT_RETURN')
}
}
}

View File

@ -54,19 +54,18 @@
<el-input style="width: 200px" disabled v-model="queryParams.proCounty"/>
</el-form-item>
<!-- <el-form-item label="退库日期" prop="useTime">-->
<!-- <el-date-picker-->
<!-- v-model="queryParams.useTime"-->
<!-- :disabled="!routerParams.isEdit"-->
<!-- style="width: 200px"-->
<!-- type="date"-->
<!-- format="yyyy-MM-dd"-->
<!-- value-format="yyyy-MM-dd"-->
<!-- placeholder="选择日期"-->
<!-- @change="useTimeChange"-->
<!-- >-->
<!-- </el-date-picker>-->
<!-- </el-form-item>-->
<el-form-item label="退库日期" prop="useTime">
<el-date-picker
v-model="queryParams.useTime"
style="width: 200px"
type="date"
format="yyyy-MM-dd"
value-format="yyyy-MM-dd"
placeholder="选择日期"
@change="useTimeChange"
>
</el-date-picker>
</el-form-item>
</el-form>
</el-card>
@ -530,6 +529,7 @@ export default {
},
useTimeChange(val) {
console.log('🚀 ~ val:', val)
this.tableList.forEach(item => {
item.useTime = val
})

View File

@ -117,10 +117,10 @@
<el-table-column label="退库工具数" align="center" prop="toolNum" :show-overflow-tooltip="true"/>
<el-table-column label="任务状态" align="center" prop="taskStatus" :show-overflow-tooltip="true">
<template slot-scope="scope">
<el-tag v-if="scope.row.taskStatus == '0'" type="info">待审批</el-tag>
<el-tag v-if="scope.row.taskStatus == '1'" type="warning">审批中</el-tag>
<el-tag v-if="scope.row.taskStatus == '2'" type="success">已审批</el-tag>
<el-tag v-if="scope.row.taskStatus == '3'" type="danger">审批驳回</el-tag>
<el-tag v-if="scope.row.taskStatus == '0'" type="info" @click="openDialog(scope.row)" style="cursor: pointer">待审批</el-tag>
<el-tag v-if="scope.row.taskStatus == '1'" type="warning" @click="openDialog(scope.row)" style="cursor: pointer">审批中</el-tag>
<el-tag v-if="scope.row.taskStatus == '2'" type="success" @click="openDialog(scope.row)" style="cursor: pointer">已审批</el-tag>
<el-tag v-if="scope.row.taskStatus == '3'" type="danger" @click="openDialog(scope.row)" style="cursor: pointer">审批驳回</el-tag>
</template>
</el-table-column>
<el-table-column label="申请人" align="center" prop="createBy" :show-overflow-tooltip="true" width="140px"/>
@ -149,6 +149,8 @@
@pagination="getList"
/>
</el-card>
<ApproveDialog ref="approveDialog" />
</div>
</template>
@ -159,9 +161,13 @@ import {
} from '@/api/EquipmentLedger/equ-out'
import { deptTreeSelect } from '@/api/system/user'
import { deleteApplyApi } from '@/api/business'
import ApproveDialog from '@/views/business/components/ApproveDialog'
export default {
name: 'ApplyList',
components: {
ApproveDialog
},
data() {
return {
propertyUnitList: [],
@ -285,6 +291,9 @@ export default {
this.isLoading = false
}
})
},
openDialog(row) {
this.$refs.approveDialog.openDialog(row.id, 'EQUIPMENT_RETURN')
}
}
}

View File

@ -83,10 +83,10 @@
<!-- <el-tag :type="getStatusType(scope.row.status)">
{{ getStatusLabel(scope.row.status) }}
</el-tag> -->
<el-tag v-if="scope.row.status == '0'" type="info">待审批</el-tag>
<el-tag v-if="scope.row.status == '1'" type="warning">审批中</el-tag>
<el-tag v-if="scope.row.status == '2'" type="success">已审批</el-tag>
<el-tag v-if="scope.row.status == '3'" type="danger">审批驳回</el-tag>
<el-tag v-if="scope.row.status == '0'" type="info" @click="openDialog(scope.row)" style="cursor: pointer">待审批</el-tag>
<el-tag v-if="scope.row.status == '1'" type="warning" @click="openDialog(scope.row)" style="cursor: pointer">审批中</el-tag>
<el-tag v-if="scope.row.status == '2'" type="success" @click="openDialog(scope.row)" style="cursor: pointer">已审批</el-tag>
<el-tag v-if="scope.row.status == '3'" type="danger" @click="openDialog(scope.row)" style="cursor: pointer">审批驳回</el-tag>
</template>
</el-table-column>
@ -110,15 +110,21 @@
@pagination="getList"
/>
</el-card>
<ApproveDialog ref="approveDialog" />
</div>
</template>
<script>
import { getToolApplyListApi, deleteToolApplyApi } from '@/api/toolsManage'
import {deleteRepairList, getRepairList} from "@/api/equipmentRepair";
import ApproveDialog from '@/views/business/components/ApproveDialog'
export default {
name: 'ApplicantList',
components: {
ApproveDialog,
},
data() {
return {
isLoading: false,
@ -270,6 +276,9 @@ export default {
}
})
},
openDialog(row) {
this.$refs.approveDialog.openDialog(row.id, 'EQUIPMENT_REPAIR')
}
},
}
</script>

View File

@ -80,10 +80,10 @@
<!-- <el-tag :type="getStatusType(scope.row.status)">
{{ getStatusLabel(scope.row.status) }}
</el-tag> -->
<el-tag v-if="scope.row.status == '0'" type="info">待审批</el-tag>
<el-tag v-if="scope.row.status == '1'" type="warning">审批中</el-tag>
<el-tag v-if="scope.row.status == '2'" type="success">已审批</el-tag>
<el-tag v-if="scope.row.status == '3'" type="danger">审批驳回</el-tag>
<el-tag v-if="scope.row.status == '0'" type="info" @click="openDialog(scope.row)" style="cursor: pointer">待审批</el-tag>
<el-tag v-if="scope.row.status == '1'" type="warning" @click="openDialog(scope.row)" style="cursor: pointer">审批中</el-tag>
<el-tag v-if="scope.row.status == '2'" type="success" @click="openDialog(scope.row)" style="cursor: pointer">已审批</el-tag>
<el-tag v-if="scope.row.status == '3'" type="danger" @click="openDialog(scope.row)" style="cursor: pointer">审批驳回</el-tag>
</template>
</el-table-column>
<el-table-column label="操作" align="center">
@ -103,15 +103,21 @@
@pagination="getList"
/>
</el-card>
<ApproveDialog ref="approveDialog" />
</div>
</template>
<script>
import { getToolApplyListApi, deleteToolApplyApi } from '@/api/toolsManage'
import {deleteRepairList, getRepairList} from "@/api/equipmentRepair";
import ApproveDialog from '@/views/business/components/ApproveDialog'
export default {
name: 'ApplicantList',
components: {
ApproveDialog,
},
data() {
return {
isLoading: false,
@ -258,6 +264,9 @@ export default {
}
})
},
openDialog(row) {
this.$refs.approveDialog.openDialog(row.id, 'EQUIPMENT_REPAIR')
}
},
}
</script>