7/1 仓库管理 设备管理 查询统计

演示数据2.0
wangwei 9 months ago
parent d54de7a4a2
commit 48fe52f69f

@ -268,7 +268,7 @@
</div>
<div class="fr">
<el-button @click="repairRow = null">取消</el-button>
<el-button type="primary" @click="commitRepair"></el-button>
<el-button type="primary" @click="commitRepair" :loading="commitRepairLoading">提交</el-button>
</div>
</div>
<el-form :model="repairRow" :rules="repairRules" ref="repairForm" label-width="auto">
@ -546,6 +546,7 @@ export default {
maxFiles: 3,
fileSizeLimit: 5,
uploadedFileNames: '',
commitRepairLoading: false,
}
},
created() {
@ -598,7 +599,9 @@ watch: {
})
pData.applyUserPhone = this.repairRow.repairUserPhone
pData.taskId = this.repairRow.taskId
this.commitRepairLoading = true
deviceRepairApplyAdd(pData).then(res => {
this.commitRepairLoading = false
load.close()
if (res.code != 20000) {
this.$message.error(res.message)
@ -609,12 +612,12 @@ watch: {
this.getList()
this.repairRow = null
}).catch(() => {
this.commitRepairLoading = false
load.close()
})
})
},
createRepair(row) {
console.log("hhhhhhhhhh")
let data = copyProperties(row, {...repairData});
this.uploadedFileNames = ""
this.repairRow = _.extend({}, row, data)

@ -191,8 +191,8 @@
<!-- <el-button v-if="createActive==0" @click="changeActive(true)" type="primary"></el-button>-->
<!-- <el-button v-else @click="changeActive(false)" type="primary">上一步</el-button>-->
<el-button-group>
<el-button :disabled="itemList.length===0" type="primary" @click="saveCache">稿</el-button>
<el-button :disabled="itemList.length===0" type="primary" @click="saveForm"></el-button>
<el-button :disabled="itemList.length===0" type="primary" @click="saveCache" :loading="draftLoading">草稿保存</el-button>
<el-button :disabled="itemList.length===0" type="primary" @click="saveForm" :loading="submitLoading">立即提交</el-button>
</el-button-group>
</div>
</div>

@ -78,7 +78,7 @@
<div slot="header" class="clearfix">
<div class="fr">
<el-button @click="createFlag = false">取消</el-button>
<el-button type="primary" @click="saveFunc"></el-button>
<el-button type="primary" @click="saveFunc" :loading="saveLoading">保存</el-button>
</div>
</div>
<el-form :model="saveData" ref="saveForm" :rules="formRule" label-width="auto">

@ -35,7 +35,8 @@
</div>
<el-divider style="margin: 15px"></el-divider>
<el-table :data="list" @row-click="rowClick" v-loading="loading" click-row-light
highlight-current-row>
highlight-current-row
>
<el-table-column label="序号" width="50" type="index"/>
<el-table-column label="计划单号" width="150" prop="planBillNo"/>
<el-table-column label="计划名称" width="150" prop="name"/>
@ -95,7 +96,8 @@
</div>
<el-table :data="detailList"
v-loading="detailLoading" click-row-light
highlight-current-row>
highlight-current-row
>
<el-table-column label="序号" width="50" type="index"/>
<el-table-column label="科室名称" prop="deptName"/>
<el-table-column label="设备编号" prop="deviceCode"/>
@ -135,7 +137,8 @@
>
<devicePlanEdit :originData="planData"
:closePlanEdit="closePlanEdit"
:createFlag="createFlag"/>
:createFlag="createFlag"
/>
</el-dialog>
@ -150,7 +153,8 @@
:planId="detailQuery.planId"
:projectItem="projectItem"
:pullData="planData"
:closeAddDevice="closeAddDevice"/>
:closeAddDevice="closeAddDevice"
/>
</el-dialog>
@ -160,50 +164,49 @@
<script>
import {devicePlanDel, devicePlanInfo, devicePlanPage, devicePlanSave} from "@/api/dev/devicePlanApi";
import { devicePlanDel, devicePlanInfo, devicePlanPage, devicePlanSave } from '@/api/dev/devicePlanApi'
import {
devicePlanDetailDel,
devicePlanDetailPage, devicePlanDetailDelByDeviceCode
} from "@/api/dev/devicePlanDetailApi";
import {getLoading} from "@/utils";
import product from "@/views/basic/product/product.vue";
} from '@/api/dev/devicePlanDetailApi'
import { getLoading } from '@/utils'
import product from '@/views/basic/product/product.vue'
import {
devicePlanDetailItemAdd, devicePlanDetailItemByDeviceCodeDel,
devicePlanDetailItemDel,
devicePlanDetailItemPage
} from "@/api/dev/devicePlanDetailItemApi";
import DeviceCheckItemDict from "@/views/dev/deviceCheckItemDict";
import {deviceCheckGenByPlanId} from "@/api/dev/deviceCheckApi";
import DevicePlanProject from "@/views/dev/devicePlanProject";
import devicePlanEdit from "@/views/dev/devicePlanEdit";
} from '@/api/dev/devicePlanDetailItemApi'
import DeviceCheckItemDict from '@/views/dev/deviceCheckItemDict'
import { deviceCheckGenByPlanId } from '@/api/dev/deviceCheckApi'
import DevicePlanProject from '@/views/dev/devicePlanProject'
import devicePlanEdit from '@/views/dev/devicePlanEdit'
let query = {
page: 1,
limit: 10,
name: null,
chargeDeptCode: null,
type:1,
type: 1
}
let detailQuery = {
page: 1,
limit: 10,
planId: null,
planId: null
}
let rowDeltailQuery = {
page: 1,
limit: 10,
planId: null,
productId: null,
productId: null
}
let itemQuery = {
page: 1,
limit: 10,
planId: null,
productId: null,
productId: null
}
let planData = {
@ -215,12 +218,12 @@ let planData = {
frequency: 1,
dateInterval: null,
remark: null,
type:1,
type: 1
}
export default {
name: "devicePlan",
components: {DeviceCheckItemDict, product, devicePlanEdit, DevicePlanProject},
name: 'devicePlan',
components: { DeviceCheckItemDict, product, devicePlanEdit, DevicePlanProject },
computed: {},
data() {
return {
@ -229,14 +232,14 @@ export default {
loading: false,
total: .0,
list: [],
query: {...query},
query: { ...query },
//=============================================
detailLoading: false,
detailQuery: {...detailQuery},
detailQuery: { ...detailQuery },
detailList: [],
detailTotal: 0,
//=============================================
itemQuery: {...itemQuery},
itemQuery: { ...itemQuery },
itemList: [],
itemTotal: 0,
itemLoading: false,
@ -244,86 +247,86 @@ export default {
chooseDeviceList: [],
chooseItemList: [],
///===================================================
planEditTitle: "新增计划",
planEditTitle: '新增计划',
createActive: 0,
createFlag: false,
chooseDeviceFlag: false,
expandRowKeys: [],
dialogExpandRowKeys: [],
planData: {...planData},
planData: { ...planData },
formRule: {
name: [{required: true, message: "计划名称不能为空", trigger: ["change", "blur"]}],
chargeDeptCode: [{required: true, message: "负责部门不能为空", trigger: ["change", "blur"]}],
dateInterval: [{required: true, message: "计划执行区间不能为空", trigger: ["change", "blur"]}],
name: [{ required: true, message: '计划名称不能为空', trigger: ['change', 'blur'] }],
chargeDeptCode: [{ required: true, message: '负责部门不能为空', trigger: ['change', 'blur'] }],
dateInterval: [{ required: true, message: '计划执行区间不能为空', trigger: ['change', 'blur'] }],
frequency: [{
required: true,
message: "计划执行频率不能为空",
trigger: ["change", "blur"]
}],
message: '计划执行频率不能为空',
trigger: ['change', 'blur']
}]
},
dateInterval: null,
pickerOptions: {
disabledDate: time => {
let nowDate = new Date().getTime();
let pickDate = new Date(time).getTime();
return (nowDate >= pickDate);
let nowDate = new Date().getTime()
let pickDate = new Date(time).getTime()
return (nowDate >= pickDate)
},
shortcuts: [{
text: '一个月(30天)',
onClick(picker) {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() + 3600 * 1000 * 24);
end.setTime(start.getTime() + 3600 * 1000 * 24 * 30);
picker.$emit('pick', [start, end]);
const end = new Date()
const start = new Date()
start.setTime(start.getTime() + 3600 * 1000 * 24)
end.setTime(start.getTime() + 3600 * 1000 * 24 * 30)
picker.$emit('pick', [start, end])
}
}, {
text: '三个月(90天)',
onClick(picker) {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() + 3600 * 1000 * 24);
end.setTime(start.getTime() + 3600 * 1000 * 24 * 30 * 3);
picker.$emit('pick', [start, end]);
const end = new Date()
const start = new Date()
start.setTime(start.getTime() + 3600 * 1000 * 24)
end.setTime(start.getTime() + 3600 * 1000 * 24 * 30 * 3)
picker.$emit('pick', [start, end])
}
}, {
text: '半年(180天)',
onClick(picker) {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() + 3600 * 1000 * 24);
end.setTime(start.getTime() + 3600 * 1000 * 24 * 30 * 6);
picker.$emit('pick', [start, end]);
const end = new Date()
const start = new Date()
start.setTime(start.getTime() + 3600 * 1000 * 24)
end.setTime(start.getTime() + 3600 * 1000 * 24 * 30 * 6)
picker.$emit('pick', [start, end])
}
}, {
text: '一年(365天)',
onClick(picker) {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() + 3600 * 1000 * 24);
end.setTime(start.getTime() + 3600 * 1000 * 24 * 365);
picker.$emit('pick', [start, end]);
const end = new Date()
const start = new Date()
start.setTime(start.getTime() + 3600 * 1000 * 24)
end.setTime(start.getTime() + 3600 * 1000 * 24 * 365)
picker.$emit('pick', [start, end])
}
}]
},
projectVisible: false,
projectItem: null,
projectItem: null
}
},
watch: {
planData(v) {
if (v.planId != null) {
this.$set(v, "dateInterval", [v.startDate, v.endDate])
this.$set(v, 'dateInterval', [v.startDate, v.endDate])
}
},
"planData.dateInterval"(v) {
'planData.dateInterval'(v) {
if (v != null && v.length > 0) {
this.planData.startDate = v[0]
this.planData.endDate = v[1]
}
},
"$refs.dialogTable"(v) {
'$refs.dialogTable'(v) {
this.$refs.dialogTable?.doLayout()
}
@ -336,12 +339,12 @@ export default {
if (expandedRows.length == 0) {
return
}
this.$set(row, "detailData", {
this.$set(row, 'detailData', {
loading: false,
showSearch: true,
list: [],
total: 0,
query: {...rowDeltailQuery, planId: row.planId, productId: row.productId}
query: { ...rowDeltailQuery, planId: row.planId, productId: row.productId }
})
this.getRowDetailList(row.detailData)
},
@ -363,9 +366,9 @@ export default {
})
},
deviceCheckGenFunc(row) {
this.$confirm("此操作将会创建一个任务单,是否继续", "提示", {
confirmButtonText: "继续",
cancelButtonText: "取消"
this.$confirm('此操作将会创建一个任务单,是否继续', '提示', {
confirmButtonText: '继续',
cancelButtonText: '取消'
}).then(() => {
let load = getLoading(this)
deviceCheckGenByPlanId(row.planId).then(res => {
@ -383,9 +386,9 @@ export default {
})
},
delplan(row) {
this.$confirm("此操作将会永久删除该计划,现有任务不受影响,是否继续", "提示", {
confirmButtonText: "继续",
cancelButtonText: "取消"
this.$confirm('此操作将会永久删除该计划,现有任务不受影响,是否继续', '提示', {
confirmButtonText: '继续',
cancelButtonText: '取消'
}).then(() => {
let load = getLoading(this)
devicePlanDel(row.planId).then(res => {
@ -434,9 +437,9 @@ export default {
})
},
delDetailItem(row) {
this.$confirm("此操作将会永久删除该条明细,且将在下一次任务生效,现有任务不受影响,是否继续", "提示", {
confirmButtonText: "继续",
cancelButtonText: "取消"
this.$confirm('此操作将会永久删除该条明细,且将在下一次任务生效,现有任务不受影响,是否继续', '提示', {
confirmButtonText: '继续',
cancelButtonText: '取消'
}).then(() => {
let load = getLoading(this)
if (!row.deviceCode) {
@ -469,9 +472,9 @@ export default {
})
},
delDetail(row) {
this.$confirm("此操作将会永久删除该条明细,且将在下一次任务生效,现有任务不受影响,是否继续", "提示", {
confirmButtonText: "继续",
cancelButtonText: "取消"
this.$confirm('此操作将会永久删除该条明细,且将在下一次任务生效,现有任务不受影响,是否继续', '提示', {
confirmButtonText: '继续',
cancelButtonText: '取消'
}).then(() => {
let load = getLoading(this)
if (row.deviceCode) {
@ -506,7 +509,7 @@ export default {
},
rowClick(row) {
this.clickRow = row
this.detailQuery = {...detailQuery, planId: row.planId}
this.detailQuery = { ...detailQuery, planId: row.planId }
this.getDetailList()
},
getDetailList() {
@ -543,7 +546,7 @@ export default {
return
}
this.planData.planId = res.data
this.detailQuery = {...detailQuery, planId: this.planData.planId}
this.detailQuery = { ...detailQuery, planId: this.planData.planId }
this.getDetailList()
this.createActive += 1
}).catch(e => {
@ -558,8 +561,8 @@ export default {
} else {
if (this.createActive == 2) {
this.planData = {...this.planData}
this.detailQuery = {...detailQuery, planId: this.itemQuery.planId}
this.planData = { ...this.planData }
this.detailQuery = { ...detailQuery, planId: this.itemQuery.planId }
this.getDetailList()
load.close()
this.createActive -= 1
@ -570,7 +573,7 @@ export default {
this.$message.error(res.message)
return
}
this.planData = {...res.data}
this.planData = { ...res.data }
this.createActive -= 1
}).catch(e => {
load.close()
@ -608,11 +611,10 @@ export default {
},
closePlanEdit() {
this.createFlag = false;
this.createFlag = false
this.getList()
},
deviceSelectChangFunc(list) {
this.chooseDeviceList = list.map(i => i.deviceCode)
},
@ -620,16 +622,15 @@ export default {
//
openCreate(planId, row) {
if (planId != null) {
this.planEditTitle = `编辑巡检计划信息${row.planId ? '--(' + row.name + ')' : ''}`;
this.planData = row;
this.planEditTitle = `编辑巡检计划信息${row.planId ? '--(' + row.name + ')' : ''}`
this.planData = row
} else {
this.planEditTitle = "新增计划";
this.planEditTitle = '新增计划'
this.planData = {
type:1
};
type: 1
}
}
this.createFlag = true;
this.createFlag = true
// this.createActive = 0
// if (createActive != null) {
@ -667,7 +668,7 @@ export default {
this.getList()
},
onReset() {
this.query = {...query}
this.query = { ...query }
this.getList()
},
getList() {
@ -688,11 +689,11 @@ export default {
},
setProject(row) {
this.planData = {
type:1
};
type: 1
}
this.projectVisible = true
this.projectItem = row
},
}
}
}

@ -3,10 +3,10 @@
<el-card>
<div slot="header" class="clearfix">
<div class="fr">
<el-button size="mini" type="primary" @click.native="saveOrder(1)"
<el-button size="mini" type="primary" @click.native="saveOrder(1)" :loading="draftLoading"
>草稿保存
</el-button>
<el-button size="mini" type="primary" @click.native="saveOrder(2)"
<el-button size="mini" type="primary" @click.native="saveOrder(2)" :loading="submitLoading"
>立即提交
</el-button>
</div>
@ -265,6 +265,8 @@ export default {
projectVisible: false,
projectItem: null,
chooseDetailItemFlag: false,
draftLoading: false,
submitLoading: false,
}
},
@ -362,8 +364,20 @@ export default {
saveOrder(status) {
this.planData.status = status;
this.planData.type = this.originData.type;
if (status == 1){
//稿
this.draftLoading = true
}else {
this.submitLoading = true
}
if (this.$parent.$options.propsData.title == '新增保养计划'){
deviceUpkeepPlanSave(this.planData).then(res => {
if (status == 1){
//稿
this.draftLoading = false
}else {
this.submitLoading = false
}
if (res.code != 20000) {
this.$message.error(res.message)
return
@ -374,6 +388,12 @@ export default {
})
}else {
devicePlanSave(this.planData).then(res => {
if (status == 1){
//稿
this.draftLoading = false
}else {
this.submitLoading = false
}
if (res.code != 20000) {
this.$message.error(res.message)
return

@ -102,7 +102,7 @@
{{ `设备号:${currentRow.deviceCode}` }}
</div>
<div class="fr">
<el-button type="primary" @click="finishFunc" v-if="!currentRow.finishFlag" >完成维修</el-button>
<el-button type="primary" @click="finishFunc" v-if="!currentRow.finishFlag" :loading="finishLoading"></el-button>
</div>
</div>
<el-descriptions border label-style="width:90px" :column="4">

@ -147,7 +147,7 @@
</div>
<div class="fr">
<el-button @click="createFlag = false">取消</el-button>
<el-button type="primary" @click="saveFunc"></el-button>
<el-button type="primary" @click="saveFunc" :loading="submitLoading">保存</el-button>
</div>
</div>
<el-form :model="saveData" ref="saveForm" :rules="formRule" label-width="auto">

@ -168,7 +168,7 @@
</div>
<div class="fr">
<el-button @click="detailFlag = false">取消</el-button>
<el-button type="primary" @click="commitFunc"></el-button>
<el-button type="primary" @click="commitFunc" :loading="submitLoading">提交</el-button>
</div>
</div>
<el-form :model="diagnosisData" ref="saveForm" :rules="detailRules" label-width="auto">

@ -156,7 +156,7 @@
</div>
<div class="fr">
<el-button @click="detailFlag = false">取消</el-button>
<el-button type="primary" @click="commitFunc"></el-button>
<el-button type="primary" @click="commitFunc" :loading="commitLoading">提交</el-button>
</div>
</div>
<el-form :model="diagnosisData" ref="saveForm" :rules="detailRules" label-width="auto">

@ -90,7 +90,7 @@
<div slot="header" class="clearfix">
<div class="fr">
<el-button @click="createFlag = false">取消</el-button>
<el-button type="primary" @click="saveFunc"></el-button>
<el-button type="primary" @click="saveFunc" :loading="saveLoading">保存</el-button>
</div>
</div>
<el-form :model="saveData" ref="saveForm" :rules="formRule" label-width="auto">

@ -1,91 +1,92 @@
<template>
<div>
<!--设备保养计划 第一列表-->
<el-card>
<el-form :model="query" v-if="showSearch" label-width="auto">
<el-row :gutter="20">
<el-col :span="6">
<el-form-item label="计划名称">
<el-input v-model.trim="query.name" clearable/>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="负责部门">
<deptSelect :value.sync="query.chargeDeptCode"/>
</el-form-item>
</el-col>
</el-row>
</el-form>
<div class="top-right-btn">
<el-button-group>
<el-button icon="el-icon-view" type="primary" @click="showSearch = !showSearch">显示/隐藏搜索栏</el-button>
<el-button
type="primary"
icon="el-icon-refresh"
@click="onReset"
>重置
</el-button>
<el-button type="primary" icon="el-icon-search" @click="search"
>查询
</el-button>
<el-button type="primary" icon="el-icon-plus" @click="openCreate(null,null)"
>新增
</el-button>
</el-button-group>
</div>
<el-divider style="margin: 15px"></el-divider>
<el-table :data="list" @row-click="rowClick" v-loading="loading" click-row-light
highlight-current-row>
<el-table-column label="序号" width="50" type="index"/>
<el-table-column label="计划单号" width="150" prop="planBillNo"/>
<el-table-column label="计划名称" width="150" prop="name"/>
<el-table-column label="负责部门" width="120" prop="chargeDeptName"/>
<el-table-column label="设备数量" width="120" prop="deviceCount"/>
<el-table-column label="单据状态" width="120" prop="chargeDeptName">
<template slot-scope="scope">
<el-tag v-if="scope.row.status==1" type="warning">稿</el-tag>
<el-tag v-if="scope.row.status==2" type="success"></el-tag>
</template>
</el-table-column>
<el-table-column label="执行状态" width="120" prop="chargeDeptName">
<template slot-scope="scope">
<el-tag v-if="scope.row.isActive==true" type="success"></el-tag>
<el-tag v-if="scope.row.isActive==false" type="info"></el-tag>
</template>
</el-table-column>
<el-table-column label="开始日期" width="150" prop="startDate"/>
<el-table-column label="结束日期" width="150" prop="endDate"/>
<el-table-column label="执行频率" width="160" prop="frequency">
<template slot-scope="scope">
{{ `${scope.row.frequency}` }}
</template>
</el-table-column>
<el-table-column label="已执行次数" width="200" prop="execCount"/>
<el-table-column label="备注" width="200" prop="remark"/>
<el-table-column label="操作" width="200" fixed="right">
<template slot-scope="scope">
<el-button type="text" @click.stop="openCreate(scope.row.planId,scope.row)">
编辑
<!--设备保养计划 第一列表-->
<el-card>
<el-form :model="query" v-if="showSearch" label-width="auto">
<el-row :gutter="20">
<el-col :span="6">
<el-form-item label="计划名称">
<el-input v-model.trim="query.name" clearable/>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="负责部门">
<deptSelect :value.sync="query.chargeDeptCode"/>
</el-form-item>
</el-col>
</el-row>
</el-form>
<div class="top-right-btn">
<el-button-group>
<el-button icon="el-icon-view" type="primary" @click="showSearch = !showSearch">显示/隐藏搜索栏</el-button>
<el-button
type="primary"
icon="el-icon-refresh"
@click="onReset"
>重置
</el-button>
<el-button type="text" @click="deviceCheckGenFunc(scope.row)"
>生成保养单
<el-button type="primary" icon="el-icon-search" @click="search"
>查询
</el-button>
<el-button type="text" @click.stop="delplan(scope.row)">
删除
<el-button type="primary" icon="el-icon-plus" @click="openCreate(null,null)"
>新增
</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="query.page"
:limit.sync="query.limit"
@pagination="getList"
/>
</el-card>
</el-button-group>
</div>
<el-divider style="margin: 15px"></el-divider>
<el-table :data="list" @row-click="rowClick" v-loading="loading" click-row-light
highlight-current-row
>
<el-table-column label="序号" width="50" type="index"/>
<el-table-column label="计划单号" width="150" prop="planBillNo"/>
<el-table-column label="计划名称" width="150" prop="name"/>
<el-table-column label="负责部门" width="120" prop="chargeDeptName"/>
<el-table-column label="设备数量" width="120" prop="deviceCount"/>
<el-table-column label="单据状态" width="120" prop="chargeDeptName">
<template slot-scope="scope">
<el-tag v-if="scope.row.status==1" type="warning">稿</el-tag>
<el-tag v-if="scope.row.status==2" type="success"></el-tag>
</template>
</el-table-column>
<el-table-column label="执行状态" width="120" prop="chargeDeptName">
<template slot-scope="scope">
<el-tag v-if="scope.row.isActive==true" type="success"></el-tag>
<el-tag v-if="scope.row.isActive==false" type="info"></el-tag>
</template>
</el-table-column>
<el-table-column label="开始日期" width="150" prop="startDate"/>
<el-table-column label="结束日期" width="150" prop="endDate"/>
<el-table-column label="执行频率" width="160" prop="frequency">
<template slot-scope="scope">
{{ `${scope.row.frequency}` }}
</template>
</el-table-column>
<el-table-column label="已执行次数" width="200" prop="execCount"/>
<el-table-column label="备注" width="200" prop="remark"/>
<el-table-column label="操作" width="200" fixed="right">
<template slot-scope="scope">
<el-button type="text" @click.stop="openCreate(scope.row.planId,scope.row)">
编辑
</el-button>
<el-button type="text" @click="deviceCheckGenFunc(scope.row)"
>生成保养单
</el-button>
<el-button type="text" @click.stop="delplan(scope.row)">
删除
</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="query.page"
:limit.sync="query.limit"
@pagination="getList"
/>
</el-card>
<!-- 保养计划设备明细-->
<el-card>
@ -96,7 +97,8 @@
</div>
<el-table :data="detailList"
v-loading="detailLoading" click-row-light
highlight-current-row>
highlight-current-row
>
<el-table-column label="序号" width="50" type="index"/>
<el-table-column label="科室名称" prop="deptName"/>
<el-table-column label="设备编号" prop="deviceCode"/>
@ -138,7 +140,8 @@
:planId="detailQuery.planId"
:projectItem="projectItem"
:pullData="planData"
:closeAddDevice="closeAddDevice"/>
:closeAddDevice="closeAddDevice"
/>
</el-dialog>
<!--新增保养计划-->
@ -151,12 +154,11 @@
>
<devicePlanEdit :originData="planData"
:closePlanEdit="closePlanEdit"
:createFlag="createFlag"/>
:createFlag="createFlag"
/>
</el-dialog>
</div>
</template>

@ -145,6 +145,8 @@ export default {
invCode: null,
},
thisData: {},
draftLoading: false,
submitLoading: false,
//==================================================
}
@ -229,7 +231,9 @@ export default {
spinner: 'el-icon-loading',
background: 'rgba(0, 0, 0, 0.7)'
});
this.draftLoading = true
saveDraftOrder(this.createData).then(res => {
this.draftLoading = false
loading.close()
if (res.code != 20000) {
this.$message.error(res.message)
@ -240,6 +244,7 @@ export default {
this.query = {...query}
this.getList()
}).catch(() => {
this.draftLoading = false
loading.close()
})
@ -291,7 +296,9 @@ export default {
spinner: 'el-icon-loading',
background: 'rgba(0, 0, 0, 0.7)'
});
this.submitLoading = true
saveChangeOrder(this.createData).then(res => {
this.submitLoading = false
loading.close()
if (res.code != 20000) {
this.$message.error(res.message)
@ -302,6 +309,7 @@ export default {
this.query = {...query}
this.getList()
}).catch(() => {
this.submitLoading = false
loading.close()
})
},

@ -38,6 +38,7 @@ export default {
name: [{required: true, message: "项目名称不能为空", trigger: "change"}],
content: [{required: true, message: "项目内容不能为空", trigger: "change"}]
},
saveLoading: false,
}
},
created() {
@ -79,7 +80,9 @@ export default {
return false
}
let loading = getLoading(this);
this.saveLoading = true
saveDeviceCheckItemDict(this.saveData).then(res => {
this.saveLoading = false
loading.close()
if (res.code != 20000) {
this.$message.error(res.message)
@ -90,6 +93,7 @@ export default {
this.query.page = 1
this.getList()
}).catch(() => {
this.saveLoading = false
loading.close
})
})

@ -28,6 +28,7 @@ export default {
list: [],
query: {...query},
user: null,
finishLoading: false,
}
},
created() {
@ -57,7 +58,9 @@ export default {
// cancelButtonText: "取消"
// }).then((r) => {
let loading = getLoading(this);
this.finishLoading = true
finishRepairByUser(row).then(res => {
this.finishLoading = false
loading.close()
if (res.code != 20000) {
this.$message.error(res.message)
@ -66,6 +69,7 @@ export default {
this.getList()
this.finishFuncFlagClose()
}).catch(e=>{
this.finishLoading = false
loading.close()
})
// })

@ -70,6 +70,7 @@ export default {
detailList: [],
detailTotal: 0,
repairId: null,
submitLoading: false,
//========detail--end===============================
}
},
@ -136,7 +137,9 @@ export default {
return false
}
let loading = getLoading(that);
this.submitLoading = true
deviceRepairApplyAdd(this.saveData).then(res => {
this.submitLoading = false
loading.close()
if (res.code != 20000) {
this.$message.error(res.message)
@ -147,6 +150,7 @@ export default {
this.query.page = 1
this.getList()
}).catch(() => {
this.submitLoading = false
loading.close
})
})

@ -102,6 +102,7 @@ export default {
}],
diagnosisInfo: [{required: true, message: "诊断信息不能为空", trigger: ["change", "blur"]}],
},
submitLoading: false
//========detailDialog--end===============================
}
}
@ -139,7 +140,9 @@ export default {
return
}
this.diagnosisData.diagnosisLivePath = this.uploadedFileNames
this.submitLoading = true
deviceRepairApplyDetailDiagnosis(this.diagnosisData).then(res => {
this.submitLoading = false
if (res.code != 20000) {
this.$message.error(res.message)
return

@ -95,6 +95,7 @@ export default {
}],
diagnosisInfo: [{required: true, message: "诊断信息不能为空", trigger: ["change", "blur"]}],
},
commitLoading: false,
//========detailDialog--end===============================
}
}
@ -121,7 +122,9 @@ export default {
if (!b) {
return
}
this.commitLoading = true
deviceRepairApplyDetailDiagnosis(this.diagnosisData).then(res => {
this.commitLoading = false
if (res.code != 20000) {
this.$message.error(res.message)
return

@ -1,136 +1,143 @@
import {
delDeviceCheckItemDict,
deviceCheckItemDictPage,
genCheckItemCode,
saveDeviceCheckItemDict
} from "@/api/dev/deviceCheckItemDictApi";
import {getLoading, getLoadingObj} from "@/utils";
delDeviceCheckItemDict,
deviceCheckItemDictPage,
genCheckItemCode,
saveDeviceCheckItemDict
} from '@/api/dev/deviceCheckItemDictApi'
import { getLoading, getLoadingObj } from '@/utils'
let query = {
page: 1,
limit: 10,
name: null,
code: null,
type:2,
page: 1,
limit: 10,
name: null,
code: null,
type: 2
}
let saveData = {
code: null,
name: null,
content: null,
type:2,
code: null,
name: null,
content: null,
type: 2
}
export default {
name: "deviceCheckItemDict",
props: {isChoose: {required: false, default: false, type: Boolean}, selectChangFunc: {required: false, type: Function}},
data() {
return {
showSearch: true,
loading: false,
total: .0,
list: [],
query: {...query},
createFlag: false,
saveData: {...saveData},
formRule: {
code: [{required: true, message: "项目编码不能为空", trigger: "change"}],
name: [{required: true, message: "项目名称不能为空", trigger: "change"}],
content: [{required: true, message: "项目内容不能为空", trigger: "change"}]
},
options: [
{ label: '巡检项目', value: '1' },
{ label: '保养项目', value: '2' }
]
name: 'deviceCheckItemDict',
props: {
isChoose: { required: false, default: false, type: Boolean },
selectChangFunc: { required: false, type: Function }
},
data() {
return {
showSearch: true,
loading: false,
total: .0,
list: [],
query: { ...query },
createFlag: false,
saveData: { ...saveData },
formRule: {
code: [{ required: true, message: '项目编码不能为空', trigger: 'change' }],
name: [{ required: true, message: '项目名称不能为空', trigger: 'change' }],
content: [{ required: true, message: '项目内容不能为空', trigger: 'change' }]
},
options: [
{ label: '巡检项目', value: '1' },
{ label: '保养项目', value: '2' }
],
saveLoading: false,
}
},
created() {
this.getList()
},
methods: {
delFunc(row) {
this.$confirm('此操作将会永久删除该数据,是否继续?', '提示', {
confirmButtonText: '继续',
cancelButtonText: '取消'
}).then(() => {
let load = getLoading(this)
delDeviceCheckItemDict(row.code).then(res => {
load.close()
if (res.code != 20000) {
this.$message.error(res.message)
return
}
this.$message.success(res.message)
this.query = { ...query }
this.getList()
}).catch(() => {
load.close()
})
})
},
genCode() {
genCheckItemCode().then(res => {
if (res.code != 20000) {
this.$message.error(res.message)
return
}
this.saveData.code = res.data
})
},
created() {
this.getList()
saveFunc: function() {
this.$refs.saveForm.validate(b => {
if (!b) {
return false
}
let loading = getLoading(this)
this.saveLoading = true
saveDeviceCheckItemDict(this.saveData).then(res => {
this.saveLoading = false
loading.close()
if (res.code != 20000) {
this.$message.error(res.message)
return
}
this.$message.success(res.message)
this.createFlag = false
this.query.page = 1
this.getList()
}).catch(() => {
this.saveLoading = false
loading.close
})
})
},
methods: {
delFunc(row) {
this.$confirm("此操作将会永久删除该数据,是否继续?", "提示", {
confirmButtonText: "继续",
cancelButtonText: "取消"
}).then(() => {
let load = getLoading(this)
delDeviceCheckItemDict(row.code).then(res => {
load.close()
if (res.code != 20000) {
this.$message.error(res.message)
return
}
this.$message.success(res.message)
this.query = {...query}
this.getList()
}).catch(() => {
load.close()
})
})
},
genCode() {
genCheckItemCode().then(res => {
if (res.code != 20000) {
this.$message.error(res.message)
return
}
this.saveData.code = res.data
})
},
saveFunc: function () {
this.$refs.saveForm.validate(b => {
if (!b) {
return false
}
let loading = getLoading(this);
saveDeviceCheckItemDict(this.saveData).then(res => {
loading.close()
if (res.code != 20000) {
this.$message.error(res.message)
return
}
this.$message.success(res.message)
this.createFlag = false
this.query.page = 1
this.getList()
}).catch(() => {
loading.close
})
})
},
openCreate() {
genCheckItemCode().then(res => {
if (res.code != 20000) {
this.$message.error(res.message)
return
}
this.saveData = {...saveData, code: res.data}
this.createFlag = true
})
},
search() {
this.query.page = 1
this.getList()
},
onReset() {
this.query = {...query}
this.getList()
},
getList() {
this.loading = true
deviceCheckItemDictPage(this.query).then(res => {
this.loading = false
if (res.code != 20000) {
this.$message.error(res.message)
return
}
this.list = res.data.list || []
this.total = res.data.total || 0
}).catch(e => {
this.loading = false
})
openCreate() {
genCheckItemCode().then(res => {
if (res.code != 20000) {
this.$message.error(res.message)
return
}
this.saveData = { ...saveData, code: res.data }
this.createFlag = true
})
},
search() {
this.query.page = 1
this.getList()
},
onReset() {
this.query = { ...query }
this.getList()
},
getList() {
this.loading = true
deviceCheckItemDictPage(this.query).then(res => {
this.loading = false
if (res.code != 20000) {
this.$message.error(res.message)
return
}
this.list = res.data.list || []
this.total = res.data.total || 0
}).catch(e => {
this.loading = false
})
}
}
}

@ -5,7 +5,7 @@
style="display: flex; margin: 0px 0 10px 80%; height: 35px"
>
<!-- <el-button size="mini" type="primary" @click.native="selectOrder()">选入单据</el-button>-->
<el-button size="mini" type="primary" @click.native="saveData()"
<el-button size="mini" type="primary" @click.native="saveData()" :loading="saveLoading"
>提交</el-button
>
<el-button
@ -207,6 +207,7 @@ export default {
},
spaceSearchResult: [],
currentOrderId: null,
saveLoading: false,
};
},
methods: {
@ -239,8 +240,10 @@ export default {
type: 2,
oid: this.formData.orderId,
};
this.saveLoading = true
bindInvOrderSpace(params)
.then((res) => {
this.saveLoading = false
if (res.code === 20000) {
this.$message.success("上架成功");
this.clearFormData();
@ -252,10 +255,13 @@ export default {
}
})
.catch((error) => {
this.saveLoading = false
this.$message.error(error.message);
});
})
.catch(() => {});
.catch(() => {
this.saveLoading = false
});
},
clearFormData() {
//

@ -3,7 +3,7 @@
<el-button-group
style="display: flex; margin: 0px 0 10px 80%; height: 35px"
>
<el-button size="mini" type="primary" @click.native="saveData()"
<el-button size="mini" type="primary" @click.native="saveData()" :loading="saveLoading"
>提交</el-button
>
<el-button size="mini" type="primary" @click.native="closePlaceDialog(1)"
@ -197,6 +197,7 @@ export default {
loading: false,
spaceSearchResult: [],
spaceChangeSearchResult: [],
saveLoading: false,
};
},
methods: {
@ -226,8 +227,10 @@ export default {
type: 3, //
orderId: this.orderId,
};
this.saveLoading = true
bindInvSpace(params)
.then((res) => {
this.saveLoading = false
if (res.code === 20000) {
this.$message.success("变更成功");
this.clearFormData();
@ -239,10 +242,13 @@ export default {
}
})
.catch((error) => {
this.saveLoading = false
this.$message.error(error.message);
});
})
.catch(() => {});
.catch(() => {
this.saveLoading = false
});
},
clearFormData() {
//

@ -3,7 +3,7 @@
<el-button-group
style="display: flex; margin: 0px 0 10px 80%; height: 35px"
>
<el-button size="mini" type="primary" @click.native="saveData()"
<el-button size="mini" type="primary" @click.native="saveData()" :loading="saveLoading"
>提交
</el-button
>
@ -207,6 +207,7 @@ export default {
loading: false,
spaceSearchResult: [],
sitcomScan: false,
saveLoading: false,
};
},
methods: {
@ -237,8 +238,10 @@ export default {
type: 1, //
orderId: this.orderId,
};
this.saveLoading = true
bindInvSpace(params)
.then((res) => {
this.saveLoading = false
if (res.code === 20000) {
this.$message.success("上架成功");
this.clearFormData();
@ -246,14 +249,17 @@ export default {
this.$refs.spaceInputRef.focus();
});
} else {
this.saveLoading = false
this.$message.error(res.message);
}
})
.catch((error) => {
this.saveLoading = false
this.$message.error(error.message);
});
})
.catch(() => {
this.saveLoading = false
});
},
updateInvSpaceCode() {

@ -3,7 +3,7 @@
<el-button-group
style="display: flex; margin: 0px 0 10px 80%; height: 35px"
>
<el-button size="mini" type="primary" @click.native="saveData()"
<el-button size="mini" type="primary" @click.native="saveData()" :loading="saveLoading"
>提交
</el-button
>
@ -120,6 +120,7 @@ export default {
spaceList: [],
loading: false,
spaceSearchResult: [],
saveLoading: false,
};
},
methods: {
@ -149,8 +150,10 @@ export default {
orderId: this.orderId,
outCount: this.list.length
};
this.saveLoading = true
unbindInvOrderSpace(params)
.then((res) => {
this.saveLoading = false
if (res.code === 20000) {
this.$message.success("下架成功");
this.clearFormData();
@ -162,10 +165,12 @@ export default {
}
})
.catch((error) => {
this.saveLoading = false
this.$message.error(error.message);
});
})
.catch(() => {
this.saveLoading = false
});
},
clearFormData() {

@ -193,13 +193,16 @@ export default {
this.$message.warning("至少开启一项预警!");
return;
}
this.formLoading = true
saveInvRemindSet(this.formData, "add").then((res) => {
this.formLoading = false
if (res.code === 20000) {
this.closeDialog();
} else {
this.$message.error(res.message);
}
}).catch((error) => {
this.formLoading = false
this.$message.error(error.message);
this.closeDialog();
})

@ -6,11 +6,13 @@
<el-button
type="primary"
@click.native="saveOrder()"
:loading="saveLoading"
>草稿保存
</el-button>
<el-button
type="primary"
@click.native="submitAudit()"
:loading="submitLoading"
>提交审核
</el-button>
</el-button-group>
@ -416,6 +418,8 @@ export default {
multiProduct: [],
selectedIndex: null,
isCodeAlive: true,
saveLoading: false,
submitLoading: false,
}
},
methods: {
@ -468,7 +472,9 @@ export default {
countType: this.countOrder.countType,
codeCount: this.formData.codeCount,
};
this.saveLoading = true
saveCountOrder(orderData).then((res) => {
this.saveLoading = false
if (res.code === 20000) {
this.formData.orderId = res.data.orderId;
this.formData.createTime = res.data.createTime;
@ -480,6 +486,7 @@ export default {
this.closeDialog();
}
} else {
this.saveLoading = false
this.$message.error(res.message);
}
});
@ -500,7 +507,9 @@ export default {
},
submitAudit() {
this.submitLoading = true
submitAudit(this.formData).then((res) => {
this.submitLoading = false
if (res.code === 20000) {
this.$message.success("提交成功!");
this.getList();
@ -509,6 +518,7 @@ export default {
this.$message.error(res.message);
}
}).catch((error) => {
this.submitLoading = false
this.$message.error(error.message);
});
},

@ -122,6 +122,8 @@ export default {
},
currentRow: null,
uploadCompareLoading: false,
compareFuncLoading: false,
}
},
created() {
@ -161,7 +163,9 @@ export default {
let query = {
compareId: this.compareId
}
this.compareFuncLoading = true
dlThrCpProduct(query).then(res => {
this.compareFuncLoading = false
loading.close();
if (res.code != 20000) {
this.$message.error(res.message)
@ -169,12 +173,15 @@ export default {
}
this.getResultList(query)
}).catch(e => {
this.compareFuncLoading = false
loading.close();
})
},
uploadCompare() {
this.uploadCompareLoading = true
uploadCompare(this.compareId).then(res => {
this.uploadCompareLoading = false
if (res.code != 20000) {
this.$message.error(res.message)
return

@ -247,9 +247,9 @@
<el-col align="right">
<el-button-group>
<el-button type="primary" icon="el-icon-plus" @click="showAddProduct"></el-button>
<el-button type="primary" icon="el-icon-download" @click="compareFunc"></el-button>
<el-button type="primary" icon="el-icon-download" @click="compareFunc" :loading="compareFuncLoading">下载第三产品</el-button>
<el-button type="primary" icon="el-icon-upload2"
@click="uploadCompare">提交比对
@click="uploadCompare" :loading="uploadCompareLoading">提交比对
</el-button>
</el-button-group>

@ -237,10 +237,10 @@
>查询
</el-button
>
<el-button type="primary" icon="el-icon-document" @click="selectExport">Excel</el-button>
<el-button type="primary" icon="el-icon-document" @click="searchExport">Excel</el-button>
<el-button type="primary" icon="el-icon-printer" @click="optinPrint"></el-button>
<el-button type="primary" icon="el-icon-printer" @click="selectPrint"></el-button>
<el-button type="primary" icon="el-icon-document" @click="selectExport" :loading="selectExportLoading">选中导出Excel</el-button>
<el-button type="primary" icon="el-icon-document" @click="searchExport" :loading="searchExportLoading">结果导出Excel</el-button>
<el-button type="primary" icon="el-icon-printer" @click="optinPrint" :loading="optinPrintLoading">选中打印</el-button>
<el-button type="primary" icon="el-icon-printer" @click="selectPrint" :loading="selectPrinttLoading">查询结果打印</el-button>
</el-button-group>
</div>
<el-divider style="margin: 15px"></el-divider>
@ -469,6 +469,10 @@ export default {
fromOptions: [],
loading: false,
selectExportLoading: false,
searchExportLoading: false,
optinPrintLoading: false,
selectPrinttLoading: false,
total: 0,
tableHeader:[],
queryList:[],
@ -647,7 +651,9 @@ export default {
return this.$message.error("请选择打印的明细!");
}
let query = {id: 4};
this.optinPrintLoading = true
verifyTemplateFile(query).then((res) => {
this.optinPrintLoading = false
if (res.code === 20000) {
let printParams = {
startAduditTime :this.filterQuery.startAduditTime,
@ -672,9 +678,11 @@ export default {
window.open(url);//pdf
})
} else {
this.optinPrintLoading = false
return this.$message.error(res.message);
}
}).catch((error) => {
this.optinPrintLoading = false
this.loading = false;
this.$message.error(error.message);
})
@ -693,7 +701,9 @@ export default {
.then(() => {
let query = {id: 4};
this.selectPrinttLoading = true
verifyTemplateFile(query).then((res) => {
this.selectPrinttLoading = false
if (res.code === 20000) {
let printParams = {
templateId: res.data,
@ -741,6 +751,7 @@ export default {
return
}
}).catch((error) => {
this.selectPrinttLoading = false
this.loading = false;
this.$message.error(error.message);
})
@ -766,13 +777,17 @@ export default {
let printParams = {
list: this.orderSelection
};
this.selectExportLoading = true
postExcelInoutImport(printParams).then((response) => {
this.selectExportLoading = false
let blob = new Blob([response], {type: "application/vnd.ms-excel"});
let url = window.URL.createObjectURL(blob); // urlblob
let a = document.createElement("a");
a.href = url;
a.click();
this.$message("成功")
}).catch(() => {
this.selectExportLoading = false
})
});
@ -820,7 +835,9 @@ export default {
printParams.confirmStarTime = null;
printParams.confirmEndTime = null;
}
this.searchExportLoading = true
excelInoutImport(printParams).then((response) => {
this.searchExportLoading = false
let blob = new Blob([response], {type: "application/vnd.ms-excel"});
let url = window.URL.createObjectURL(blob); // urlblob
let a = document.createElement("a");

@ -404,7 +404,7 @@
<div slot="footer" class="dialog-footer">
<el-button @click.native="closeConfirmDialog">取消</el-button>
<el-button type="primary" @click.native="updateHandleMsg()"
<el-button type="primary" @click.native="updateHandleMsg()" :loading="updateLoading"
>提交
</el-button>
</div>
@ -499,6 +499,7 @@ export default {
confirmMsgVisible: false,
handleMsg: null,
rowData: null,
updateLoading: false,
};
},
@ -664,7 +665,9 @@ export default {
id: this.rowData.id,
handleMsg: this.handleMsg
};
this.updateLoading = true
confirmMsg(params).then((res) => {
this.updateLoading = false
if (res.code === 20000) {
this.rowData = {};
this.handleMsg = null;
@ -675,6 +678,7 @@ export default {
this.$message.error(res.message);
}
}).catch((error) => {
this.updateLoading = false
this.rowData = {};
this.handleMsg = null;
this.confirmMsgVisible = false;

@ -339,7 +339,7 @@
</el-form>
<div slot="footer" class="dialog-footer">
<el-button @click.native="closeDialog">取消</el-button>
<el-button type="primary" @click.native="postConfirm()"
<el-button type="primary" @click.native="postConfirm()" :loading="confirmLoading"
>提交
</el-button>
</div>
@ -396,6 +396,7 @@ export default {
},
confirmVisible: false,
confirmQuery: {},
confirmLoading: false,
};
},
methods: {
@ -447,7 +448,9 @@ export default {
_this.confirmQuery = row;
},
postConfirm() {
this.confirmLoading = true
confirmMsg(this.confirmQuery).then((res) => {
this.confirmLoading = false
if (res.code === 20000) {
this.confirmVisible = false;
this.$message.success("已确认");

Loading…
Cancel
Save