merge test
This commit is contained in:
commit
b08639f15c
@ -26,6 +26,13 @@ export function getUser(userId) {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function getUserSimple(userId) {
|
||||||
|
return request({
|
||||||
|
url: '/system/user/getSimple?id=' + praseStrEmpty(userId),
|
||||||
|
method: 'get'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
// 新增用户
|
// 新增用户
|
||||||
export function addUser(data) {
|
export function addUser(data) {
|
||||||
return request({
|
return request({
|
||||||
|
@ -360,8 +360,9 @@ export default {
|
|||||||
promiseList.push(async () => {
|
promiseList.push(async () => {
|
||||||
const response = await this.$axios(opt.url, {
|
const response = await this.$axios(opt.url, {
|
||||||
method: opt.method ?? 'get',
|
method: opt.method ?? 'get',
|
||||||
|
// data: opt.method == 'post' ? opt.queryParams : null
|
||||||
});
|
});
|
||||||
console.log('[dialogForm:handleOptions:response]', response);
|
// console.log('[dialogForm:handleOptions:response]', response);
|
||||||
if (opt.select) {
|
if (opt.select) {
|
||||||
// 处理下拉框选项
|
// 处理下拉框选项
|
||||||
const list =
|
const list =
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import moment from 'moment'
|
import moment from 'moment'
|
||||||
import { getUser } from "@/api/system/user.js";
|
import { getUserSimple } from "@/api/system/user.js";
|
||||||
import {getPath} from "@/utils/ruoyi";
|
import {getPath} from "@/utils/ruoyi";
|
||||||
export default {
|
export default {
|
||||||
name: 'navRight',
|
name: 'navRight',
|
||||||
@ -67,8 +67,8 @@ export default {
|
|||||||
},
|
},
|
||||||
getUserMsg() {
|
getUserMsg() {
|
||||||
let id = this.$store.getters.userId
|
let id = this.$store.getters.userId
|
||||||
getUser(id).then(res => {
|
getUserSimple(id).then(res => {
|
||||||
this.dept = res.data.dept ? res.data.dept.name : ''
|
this.dept = res.data.deptName ? res.data.dept.deptName : '---'
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
async logout() {
|
async logout() {
|
||||||
|
@ -106,6 +106,8 @@ export default {
|
|||||||
case 'detail':
|
case 'detail':
|
||||||
this.handleDetail(data);
|
this.handleDetail(data);
|
||||||
break;
|
break;
|
||||||
|
default:
|
||||||
|
this.handleTableActions({data, type});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// 处理搜索栏按钮
|
// 处理搜索栏按钮
|
||||||
@ -133,10 +135,13 @@ export default {
|
|||||||
this.$refs['search-bar'].resetForm();
|
this.$refs['search-bar'].resetForm();
|
||||||
this.resetQuery();
|
this.resetQuery();
|
||||||
break;
|
break;
|
||||||
|
default:
|
||||||
|
this.searchBarClicked(btn);
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
handleEmitFun(val) {
|
handleEmitFun(val) {
|
||||||
console.log('emit unf', val);
|
console.log('[basicPageMixin handleEmitFun]', val);
|
||||||
switch (val.action) {
|
switch (val.action) {
|
||||||
// 查看详情
|
// 查看详情
|
||||||
case 'show-detail':
|
case 'show-detail':
|
||||||
|
@ -108,6 +108,9 @@ export const DICT_TYPE = {
|
|||||||
// ============== EQUIPMENT - 设备模块 =============
|
// ============== EQUIPMENT - 设备模块 =============
|
||||||
MAINTAIN_TYPE: 'maintain_type',
|
MAINTAIN_TYPE: 'maintain_type',
|
||||||
FAULT_LEVEL: 'fault-level',
|
FAULT_LEVEL: 'fault-level',
|
||||||
|
FAULT_TYPE: 'fault-type',
|
||||||
|
REPAIR_MODE: 'repair-mode',
|
||||||
|
REPAIR_RESULT: 'repair-result',
|
||||||
|
|
||||||
// ============== ENVIRONMENTAL - 环保模块 =============
|
// ============== ENVIRONMENTAL - 环保模块 =============
|
||||||
ENVIRONMENT_CHECK_UNIT: 'environment_check_unit',
|
ENVIRONMENT_CHECK_UNIT: 'environment_check_unit',
|
||||||
|
@ -59,10 +59,11 @@
|
|||||||
</base-dialog>
|
</base-dialog>
|
||||||
|
|
||||||
<!-- 设备 详情 - 编辑 -->
|
<!-- 设备 详情 - 编辑 -->
|
||||||
<!-- <EquipmentDrawer
|
<EquipmentDrawer
|
||||||
v-if="editVisible"
|
v-if="editVisible"
|
||||||
ref="drawer"
|
ref="drawer"
|
||||||
:mode="editMode"
|
:mode="editMode"
|
||||||
|
:isFireEquipment="true"
|
||||||
@update-mode="editMode = $event"
|
@update-mode="editMode = $event"
|
||||||
:data-id="form.id"
|
:data-id="form.id"
|
||||||
:sections="[
|
:sections="[
|
||||||
@ -108,14 +109,14 @@
|
|||||||
]"
|
]"
|
||||||
@refreshDataList="getList"
|
@refreshDataList="getList"
|
||||||
@cancel="cancelEdit"
|
@cancel="cancelEdit"
|
||||||
@destroy="cancelEdit" /> -->
|
@destroy="cancelEdit" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import moment from 'moment';
|
import moment from 'moment';
|
||||||
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
||||||
import EquipmentDrawer from '../components/EquipmentDrawer';
|
import EquipmentDrawer from '../components/firefightingDrawer';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
createEquipment,
|
createEquipment,
|
||||||
@ -403,25 +404,41 @@ export default {
|
|||||||
/** 修改按钮操作 */
|
/** 修改按钮操作 */
|
||||||
handleUpdate(row) {
|
handleUpdate(row) {
|
||||||
this.reset();
|
this.reset();
|
||||||
|
this.form.id = row.id;
|
||||||
this.showUploadComponents = false;
|
this.showUploadComponents = false;
|
||||||
this.editMode = 'edit';
|
this.editMode = 'edit';
|
||||||
const id = row.id;
|
this.editVisible = true;
|
||||||
getEquipment(id).then((response) => {
|
this.$nextTick(() => {
|
||||||
this.form = response.data;
|
this.$refs['drawer'].init();
|
||||||
this.open = true;
|
|
||||||
this.title = '修改设备';
|
|
||||||
});
|
});
|
||||||
|
// this.reset();
|
||||||
|
// this.showUploadComponents = false;
|
||||||
|
// this.editMode = 'edit';
|
||||||
|
// const id = row.id;
|
||||||
|
// getEquipment(id).then((response) => {
|
||||||
|
// this.form = response.data;
|
||||||
|
// this.open = true;
|
||||||
|
// this.title = '修改设备';
|
||||||
|
// });
|
||||||
},
|
},
|
||||||
handleDetail(row) {
|
handleDetail(row, mode='detail') {
|
||||||
this.reset();
|
const {id} = row;
|
||||||
this.showUploadComponents = false;
|
this.form.id = id;
|
||||||
const id = row.id;
|
// 打开抽屉
|
||||||
this.editMode = 'detail';
|
this.editMode = mode;
|
||||||
getEquipment(id).then((response) => {
|
this.editVisible = true;
|
||||||
this.form = response.data;
|
this.$nextTick(() => {
|
||||||
this.open = true;
|
this.$refs['drawer'].init();
|
||||||
this.title = '查看详情';
|
})
|
||||||
});
|
// this.reset();
|
||||||
|
// this.showUploadComponents = false;
|
||||||
|
// const id = row.id;
|
||||||
|
// this.editMode = 'detail';
|
||||||
|
// getEquipment(id).then((response) => {
|
||||||
|
// this.form = response.data;
|
||||||
|
// this.open = true;
|
||||||
|
// this.title = '查看详情';
|
||||||
|
// });
|
||||||
},
|
},
|
||||||
/** 提交按钮 */
|
/** 提交按钮 */
|
||||||
submitForm() {
|
submitForm() {
|
||||||
|
@ -59,7 +59,7 @@
|
|||||||
</base-dialog>
|
</base-dialog>
|
||||||
|
|
||||||
<!-- 设备 详情 - 编辑 -->
|
<!-- 设备 详情 - 编辑 -->
|
||||||
<!-- <EquipmentDrawer
|
<EquipmentDrawer
|
||||||
v-if="editVisible"
|
v-if="editVisible"
|
||||||
ref="drawer"
|
ref="drawer"
|
||||||
:mode="editMode"
|
:mode="editMode"
|
||||||
@ -108,14 +108,14 @@
|
|||||||
]"
|
]"
|
||||||
@refreshDataList="getList"
|
@refreshDataList="getList"
|
||||||
@cancel="cancelEdit"
|
@cancel="cancelEdit"
|
||||||
@destroy="cancelEdit" /> -->
|
@destroy="cancelEdit" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import moment from 'moment';
|
import moment from 'moment';
|
||||||
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
||||||
import EquipmentDrawer from '../components/EquipmentDrawer';
|
import EquipmentDrawer from '../components/manageDrawer';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
createEquipment,
|
createEquipment,
|
||||||
@ -388,25 +388,41 @@ export default {
|
|||||||
/** 修改按钮操作 */
|
/** 修改按钮操作 */
|
||||||
handleUpdate(row) {
|
handleUpdate(row) {
|
||||||
this.reset();
|
this.reset();
|
||||||
|
this.form.id = row.id;
|
||||||
this.showUploadComponents = false;
|
this.showUploadComponents = false;
|
||||||
this.editMode = 'edit';
|
this.editMode = 'edit';
|
||||||
const id = row.id;
|
this.editVisible = true;
|
||||||
getEquipment(id).then((response) => {
|
this.$nextTick(() => {
|
||||||
this.form = response.data;
|
this.$refs['drawer'].init();
|
||||||
this.open = true;
|
|
||||||
this.title = '修改设备';
|
|
||||||
});
|
});
|
||||||
|
// this.reset();
|
||||||
|
// this.showUploadComponents = false;
|
||||||
|
// this.editMode = 'edit';
|
||||||
|
// const id = row.id;
|
||||||
|
// getEquipment(id).then((response) => {
|
||||||
|
// this.form = response.data;
|
||||||
|
// this.open = true;
|
||||||
|
// this.title = '修改设备';
|
||||||
|
// });
|
||||||
},
|
},
|
||||||
handleDetail(row) {
|
handleDetail(row, mode='detail') {
|
||||||
this.reset();
|
const {id} = row;
|
||||||
this.showUploadComponents = false;
|
this.form.id = id;
|
||||||
const id = row.id;
|
// 打开抽屉
|
||||||
this.editMode = 'detail';
|
this.editMode = mode;
|
||||||
getEquipment(id).then((response) => {
|
this.editVisible = true;
|
||||||
this.form = response.data;
|
this.$nextTick(() => {
|
||||||
this.open = true;
|
this.$refs['drawer'].init();
|
||||||
this.title = '查看详情';
|
})
|
||||||
});
|
// this.reset();
|
||||||
|
// this.showUploadComponents = false;
|
||||||
|
// const id = row.id;
|
||||||
|
// this.editMode = 'detail';
|
||||||
|
// getEquipment(id).then((response) => {
|
||||||
|
// this.form = response.data;
|
||||||
|
// this.open = true;
|
||||||
|
// this.title = '查看详情';
|
||||||
|
// });
|
||||||
},
|
},
|
||||||
/** 提交按钮 */
|
/** 提交按钮 */
|
||||||
submitForm() {
|
submitForm() {
|
||||||
|
@ -55,11 +55,11 @@
|
|||||||
:has-files="true"
|
:has-files="true"
|
||||||
:disabled="editMode === 'detail'"
|
:disabled="editMode === 'detail'"
|
||||||
:rows="computedRows" />
|
:rows="computedRows" />
|
||||||
<!-- :has-files="['files', 'files2']" -->
|
|
||||||
</base-dialog>
|
</base-dialog>
|
||||||
|
<!-- :has-files="['files', 'files2']" -->
|
||||||
|
|
||||||
<!-- 设备 详情 - 编辑 -->
|
<!-- 设备 详情 - 编辑 -->
|
||||||
<!-- <EquipmentDrawer
|
<EquipmentDrawer
|
||||||
v-if="editVisible"
|
v-if="editVisible"
|
||||||
ref="drawer"
|
ref="drawer"
|
||||||
:mode="editMode"
|
:mode="editMode"
|
||||||
@ -108,15 +108,14 @@
|
|||||||
]"
|
]"
|
||||||
@refreshDataList="getList"
|
@refreshDataList="getList"
|
||||||
@cancel="cancelEdit"
|
@cancel="cancelEdit"
|
||||||
@destroy="cancelEdit" /> -->
|
@destroy="cancelEdit" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import moment from 'moment';
|
import moment from 'moment';
|
||||||
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
||||||
import EquipmentDrawer from '../components/EquipmentDrawer';
|
import EquipmentDrawer from '../components/safetyDrawer';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
createEquipment,
|
createEquipment,
|
||||||
updateEquipment,
|
updateEquipment,
|
||||||
@ -386,26 +385,35 @@ export default {
|
|||||||
this.editMode = 'add';
|
this.editMode = 'add';
|
||||||
},
|
},
|
||||||
/** 修改按钮操作 */
|
/** 修改按钮操作 */
|
||||||
|
// handleUpdate(row) {
|
||||||
|
// this.reset();
|
||||||
|
// this.showUploadComponents = false;
|
||||||
|
// this.editMode = 'edit';
|
||||||
|
// const id = row.id;
|
||||||
|
// getEquipment(id).then((response) => {
|
||||||
|
// this.form = response.data;
|
||||||
|
// this.open = true;
|
||||||
|
// this.title = '修改设备';
|
||||||
|
// });
|
||||||
|
// },
|
||||||
handleUpdate(row) {
|
handleUpdate(row) {
|
||||||
this.reset();
|
this.reset();
|
||||||
|
this.form.id = row.id;
|
||||||
this.showUploadComponents = false;
|
this.showUploadComponents = false;
|
||||||
this.editMode = 'edit';
|
this.editMode = 'edit';
|
||||||
const id = row.id;
|
this.editVisible = true;
|
||||||
getEquipment(id).then((response) => {
|
this.$nextTick(() => {
|
||||||
this.form = response.data;
|
this.$refs['drawer'].init();
|
||||||
this.open = true;
|
|
||||||
this.title = '修改设备';
|
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
handleDetail(row) {
|
handleDetail(row, mode = 'detail') {
|
||||||
this.reset();
|
const { id } = row;
|
||||||
this.showUploadComponents = false;
|
this.form.id = id;
|
||||||
const id = row.id;
|
// 打开抽屉
|
||||||
this.editMode = 'detail';
|
this.editMode = mode;
|
||||||
getEquipment(id).then((response) => {
|
this.editVisible = true;
|
||||||
this.form = response.data;
|
this.$nextTick(() => {
|
||||||
this.open = true;
|
this.$refs['drawer'].init();
|
||||||
this.title = '查看详情';
|
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
/** 提交按钮 */
|
/** 提交按钮 */
|
||||||
|
238
src/views/specialEquipment/check/CheckOrderListTable.vue
Normal file
238
src/views/specialEquipment/check/CheckOrderListTable.vue
Normal file
@ -0,0 +1,238 @@
|
|||||||
|
<!--
|
||||||
|
filename: WaitingListTable.vue
|
||||||
|
author: liubin
|
||||||
|
date: 2024-02-05 16:12:55
|
||||||
|
description:
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<el-table
|
||||||
|
:data="tableDataWithIndex"
|
||||||
|
:border="true"
|
||||||
|
@selection-change="handleSelectionChange"
|
||||||
|
style="width: 100%"
|
||||||
|
:header-cell-style="{
|
||||||
|
background: '#f2f4f9',
|
||||||
|
color: '#606266',
|
||||||
|
}"
|
||||||
|
class="waiting-list-table">
|
||||||
|
<el-table-column
|
||||||
|
type="selection"
|
||||||
|
:width="50"
|
||||||
|
:selectable="checkSelectable" />
|
||||||
|
<el-table-column prop="_pageIndex" width="80" align="center">
|
||||||
|
<template slot="header">
|
||||||
|
<el-popover placement="bottom-start" width="300" trigger="click">
|
||||||
|
<div class="setting-box" style="max-height: 400px; overflow-y: auto">
|
||||||
|
<el-checkbox
|
||||||
|
v-for="(item, index) in tablePropsLabelList"
|
||||||
|
:key="'cb' + index"
|
||||||
|
v-model="selectedBox[index]"
|
||||||
|
:label="item.label" />
|
||||||
|
</div>
|
||||||
|
<i slot="reference" class="el-icon-s-tools" />
|
||||||
|
</el-popover>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
v-if="selectedBox[0]"
|
||||||
|
label="巡检单名称"
|
||||||
|
prop="name"></el-table-column>
|
||||||
|
<el-table-column v-if="selectedBox[1]" label="部门" prop="planName">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
{{ scope.row.department || '---' }}
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
v-if="selectedBox[2]"
|
||||||
|
label="巡检时间"
|
||||||
|
prop="planCheckTime">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
{{ scope.row.planCheckTime | timeFilter }}
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
v-if="selectedBox[3]"
|
||||||
|
label="班次"
|
||||||
|
prop="groupClass">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
{{ scope.row.groupClass || '---' }}
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
v-if="selectedBox[4]"
|
||||||
|
label="确认截止时间"
|
||||||
|
prop="confirmDueTime">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
{{ scope.row.confirmDueTime | timeFilter }}
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
v-if="selectedBox[5]"
|
||||||
|
width="150"
|
||||||
|
label="备注"
|
||||||
|
prop="remark">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
{{ scope.row.remark }}
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
|
||||||
|
<el-table-column width="188" label="操作">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<el-tooltip content="确认" placement="top">
|
||||||
|
<el-button
|
||||||
|
type="text"
|
||||||
|
style="margin: 5px 0; padding: 0"
|
||||||
|
:disabled="!checkSelectable(scope.row)"
|
||||||
|
@click="$emit('confirm', scope.row)">
|
||||||
|
确认
|
||||||
|
</el-button>
|
||||||
|
</el-tooltip>
|
||||||
|
<!-- line -->
|
||||||
|
<span style="margin: 0 4px; font-size: 18px; color: #e5e7eb">|</span>
|
||||||
|
<el-tooltip content="查看详情" placement="top">
|
||||||
|
<el-button
|
||||||
|
type="text"
|
||||||
|
style="margin: 5px 0; padding: 0"
|
||||||
|
@click="$emit('detail', scope.row)">
|
||||||
|
<i class="iconfont icon-detail primary-color" />
|
||||||
|
</el-button>
|
||||||
|
</el-tooltip>
|
||||||
|
<!-- line -->
|
||||||
|
<span style="margin: 0 4px; font-size: 18px; color: #e5e7eb">|</span>
|
||||||
|
<el-tooltip content="编辑" placement="top">
|
||||||
|
<el-button
|
||||||
|
type="text"
|
||||||
|
style="margin: 5px 0; padding: 0"
|
||||||
|
@click="$emit('edit', scope.row)">
|
||||||
|
<i class="iconfont icon-edit primary-color" />
|
||||||
|
</el-button>
|
||||||
|
</el-tooltip>
|
||||||
|
<!-- line -->
|
||||||
|
<span style="margin: 0 4px; font-size: 18px; color: #e5e7eb">|</span>
|
||||||
|
<el-tooltip content="删除" placement="top">
|
||||||
|
<el-button
|
||||||
|
type="text"
|
||||||
|
style="margin: 5px 0; padding: 0"
|
||||||
|
@click="$emit('delete', scope.row)">
|
||||||
|
<i class="iconfont icon-delete delete-color" />
|
||||||
|
</el-button>
|
||||||
|
</el-tooltip>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import moment from 'moment';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'CheckOrderListTable',
|
||||||
|
components: {},
|
||||||
|
props: ['tableData', 'page', 'limit'],
|
||||||
|
filters: {
|
||||||
|
timeFilter: (val) =>
|
||||||
|
val ? moment(val).format('yyyy-MM-DD HH:mm:ss') : '---',
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
tablePropsLabelList: [
|
||||||
|
{
|
||||||
|
label: '巡检单名称',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '部门',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '巡检时间',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '班次',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '确认截止时间',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '备注',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
selectedBox: [true, true, true, true, true, true],
|
||||||
|
selectedOrder: [],
|
||||||
|
};
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
tableDataWithIndex() {
|
||||||
|
return this.tableData.map((item, index) => ({
|
||||||
|
...item,
|
||||||
|
_pageIndex: (this.page - 1) * this.limit + index + 1,
|
||||||
|
}));
|
||||||
|
},
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
checkSelectable(row, index) {
|
||||||
|
return true;
|
||||||
|
// return (
|
||||||
|
// row.relatePlan == 2 ||
|
||||||
|
// (row.relatePlan == 1 &&
|
||||||
|
// (!row.confirmDueTime || +row.confirmDueTime >= new Date().getTime()))
|
||||||
|
// );
|
||||||
|
},
|
||||||
|
handleSelectionChange(val) {
|
||||||
|
this.selectedOrder = val;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
@import './iconfont/iconfont.css';
|
||||||
|
.delete-color {
|
||||||
|
color: #ff5454;
|
||||||
|
}
|
||||||
|
.primary-color {
|
||||||
|
color: #0b58ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.baseTable .show-col-btn {
|
||||||
|
margin-right: 5px;
|
||||||
|
line-height: inherit;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.baseTable .el-icon-refresh {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<style>
|
||||||
|
.waiting-list-table .el-table__body tr.current-row > td.el-table__cell {
|
||||||
|
background-color: #eaf1fc;
|
||||||
|
}
|
||||||
|
.waiting-list-table.el-table .el-table__cell {
|
||||||
|
padding: 0;
|
||||||
|
height: 35px;
|
||||||
|
}
|
||||||
|
.waiting-list-table .addButton {
|
||||||
|
width: 100%;
|
||||||
|
height: 35px;
|
||||||
|
border-top: none;
|
||||||
|
color: #0b58ff;
|
||||||
|
border-color: #ebeef5;
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
.waiting-list-table .addButton:hover {
|
||||||
|
color: #0b58ff;
|
||||||
|
border-color: #ebeef5;
|
||||||
|
background-color: #fff;
|
||||||
|
}
|
||||||
|
.waiting-list-table .addButton:focus {
|
||||||
|
border-color: #ebeef5;
|
||||||
|
background-color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.el-tooltip__popper.is-dark {
|
||||||
|
background: rgba(0, 0, 0, 0.6) !important;
|
||||||
|
}
|
||||||
|
.el-tooltip__popper .popper__arrow,
|
||||||
|
.el-tooltip__popper .popper__arrow::after {
|
||||||
|
border-top-color: rgba(0, 0, 0, 0.4) !important;
|
||||||
|
}
|
||||||
|
</style>
|
@ -2,7 +2,7 @@
|
|||||||
filename: Content.vue
|
filename: Content.vue
|
||||||
author: liubin
|
author: liubin
|
||||||
date: 2023-12-12 13:53:22
|
date: 2023-12-12 13:53:22
|
||||||
description:
|
description: 巡检单设置
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
@ -59,6 +59,7 @@
|
|||||||
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
||||||
import addOrUpdata from './add-or-updata.vue';
|
import addOrUpdata from './add-or-updata.vue';
|
||||||
import add from './add.vue';
|
import add from './add.vue';
|
||||||
|
import { parseTime } from '../../core/mixins/code-filter';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'SpecialEquipmentCheckConfig',
|
name: 'SpecialEquipmentCheckConfig',
|
||||||
@ -68,7 +69,7 @@ export default {
|
|||||||
return {
|
return {
|
||||||
addOrUpdateVisible: false,
|
addOrUpdateVisible: false,
|
||||||
addOrEditTitle: '',
|
addOrEditTitle: '',
|
||||||
searchBarKeys: ['equipmentId', 'name', 'specialType'],
|
searchBarKeys: ['name'],
|
||||||
tableBtn: [
|
tableBtn: [
|
||||||
this.$auth.hasPermi('equipment:check-setting:addInsp')
|
this.$auth.hasPermi('equipment:check-setting:addInsp')
|
||||||
? {
|
? {
|
||||||
@ -83,12 +84,12 @@ export default {
|
|||||||
btnName: '修改',
|
btnName: '修改',
|
||||||
}
|
}
|
||||||
: undefined,
|
: undefined,
|
||||||
this.$auth.hasPermi('equipment:check-setting:update')
|
// this.$auth.hasPermi('equipment:check-setting:update')
|
||||||
? {
|
// ? {
|
||||||
type: 'detail',
|
// type: 'detail',
|
||||||
btnName: '查看详情',
|
// btnName: '查看详情',
|
||||||
}
|
// }
|
||||||
: undefined,
|
// : undefined,
|
||||||
this.$auth.hasPermi('equipment:check-setting:delete')
|
this.$auth.hasPermi('equipment:check-setting:delete')
|
||||||
? {
|
? {
|
||||||
type: 'delete',
|
type: 'delete',
|
||||||
@ -99,55 +100,54 @@ export default {
|
|||||||
tableProps: [
|
tableProps: [
|
||||||
{
|
{
|
||||||
prop: 'name',
|
prop: 'name',
|
||||||
label: '配置名',
|
label: '巡检单名称',
|
||||||
width: 110,
|
width: 100,
|
||||||
showOverflowtooltip: true,
|
showOverflowtooltip: true,
|
||||||
},
|
},
|
||||||
{ prop: 'lineName', label: '产线', showOverflowtooltip: true },
|
|
||||||
{
|
{
|
||||||
prop: 'equipmentCategory',
|
prop: 'code',
|
||||||
label: '设备大类',
|
label: '巡检单编码',
|
||||||
|
showOverflowtooltip: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'department',
|
||||||
|
label: '部门',
|
||||||
|
width: 100,
|
||||||
|
showOverflowtooltip: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'planCheckTime',
|
||||||
|
label: '计划巡检时间',
|
||||||
|
showOverflowtooltip: true,
|
||||||
|
filter: parseTime,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
width: 144,
|
||||||
|
prop: 'confirmTimeLimit',
|
||||||
|
label: '确认时限',
|
||||||
|
showOverflowtooltip: true,
|
||||||
filter: (val) =>
|
filter: (val) =>
|
||||||
val != null ? ['-', '安全', '消防', '特种'][val] : '-',
|
val != null && val > 24
|
||||||
|
? `${(val - (val % 24)) / 24}天${val % 24}小时`
|
||||||
|
: `${val}小时`,
|
||||||
},
|
},
|
||||||
{ prop: 'equipmentName', label: '设备', showOverflowtooltip: true },
|
{ prop: 'groupClass', label: '班次', showOverflowtooltip: true },
|
||||||
|
{ prop: 'creator', label: '创建人', showOverflowtooltip: true },
|
||||||
{
|
{
|
||||||
prop: 'equipmentCode',
|
prop: 'createTime',
|
||||||
label: '设备编码',
|
label: '创建时间',
|
||||||
minWidth: 150,
|
|
||||||
showOverflowtooltip: true,
|
showOverflowtooltip: true,
|
||||||
|
filter: parseTime,
|
||||||
},
|
},
|
||||||
{ prop: 'responsible', label: '负责人' },
|
{ prop: 'remark', label: '备注' },
|
||||||
{ prop: 'remark', label: '描述' },
|
|
||||||
{ prop: 'checkNumber', label: '巡检条数' }, // TODO: 操作 选项,四个,群里询问
|
|
||||||
],
|
],
|
||||||
searchBarFormConfig: [
|
searchBarFormConfig: [
|
||||||
{
|
{
|
||||||
type: 'input',
|
type: 'input',
|
||||||
label: '配置名称',
|
label: '巡检单名称',
|
||||||
placeholder: '请输入配置名称',
|
placeholder: '请输入巡检单名称',
|
||||||
param: 'name',
|
param: 'name',
|
||||||
},
|
},
|
||||||
{
|
|
||||||
type: 'select',
|
|
||||||
label: '设备大类',
|
|
||||||
placeholder: '请选择设备大类',
|
|
||||||
param: 'specialType',
|
|
||||||
onchange: true,
|
|
||||||
selectOptions: [
|
|
||||||
{ id: 1, name: '安全设备' },
|
|
||||||
{ id: 2, name: '消防设备' },
|
|
||||||
{ id: 3, name: '特种设备' },
|
|
||||||
],
|
|
||||||
filterable: true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: 'select',
|
|
||||||
label: '设备名称',
|
|
||||||
placeholder: '请选择设备',
|
|
||||||
param: 'equipmentId',
|
|
||||||
filterable: true,
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: 'button',
|
type: 'button',
|
||||||
btnName: '查询',
|
btnName: '查询',
|
||||||
@ -175,65 +175,18 @@ export default {
|
|||||||
// color: 'warning',
|
// color: 'warning',
|
||||||
// },
|
// },
|
||||||
],
|
],
|
||||||
rows: [
|
|
||||||
[
|
|
||||||
{
|
|
||||||
input: true,
|
|
||||||
label: '配置名称',
|
|
||||||
prop: 'name',
|
|
||||||
rules: [
|
|
||||||
{ required: true, message: '配置名称不能为空', trigger: 'blur' },
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
input: true,
|
|
||||||
label: '配置编码',
|
|
||||||
prop: 'code',
|
|
||||||
url: '/base/equipment-check-config/getCode',
|
|
||||||
rules: [
|
|
||||||
{ required: true, message: '配置编码不能为空', trigger: 'blur' },
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
[
|
|
||||||
{
|
|
||||||
select: true,
|
|
||||||
label: '设备名称',
|
|
||||||
prop: 'equipmentId',
|
|
||||||
url: '/base/core-equipment/listAll',
|
|
||||||
bind: {
|
|
||||||
filterable: true,
|
|
||||||
clearable: true,
|
|
||||||
},
|
|
||||||
rules: [
|
|
||||||
{
|
|
||||||
required: true,
|
|
||||||
message: '设备名称不能为空',
|
|
||||||
trigger: 'change',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
input: true,
|
|
||||||
label: '设备编码', // TODO: 和设备名称联动估计
|
|
||||||
prop: 'equipmentCode',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
],
|
|
||||||
// 是否显示弹出层
|
// 是否显示弹出层
|
||||||
open: false,
|
open: false,
|
||||||
// 查询参数
|
// 查询参数
|
||||||
queryParams: {
|
queryParams: {
|
||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
pageSize: 10,
|
pageSize: 10,
|
||||||
equipmentId: null,
|
|
||||||
name: null,
|
name: null,
|
||||||
special: true,
|
status: 0,
|
||||||
specialType: null,
|
|
||||||
},
|
},
|
||||||
// 表单参数
|
// 表单参数
|
||||||
form: {},
|
form: {},
|
||||||
basePath: '/base/equipment-check-config',
|
basePath: '/base/equipment-check-order',
|
||||||
mode: null,
|
mode: null,
|
||||||
allSpecialEquipments: [],
|
allSpecialEquipments: [],
|
||||||
};
|
};
|
||||||
@ -290,10 +243,9 @@ export default {
|
|||||||
},
|
},
|
||||||
/** 取消按钮 */
|
/** 取消按钮 */
|
||||||
cancel() {
|
cancel() {
|
||||||
this.$refs.add.formClear();
|
this.$refs.add.reset();
|
||||||
this.open = false;
|
this.open = false;
|
||||||
this.title = '';
|
this.title = '';
|
||||||
// this.reset();
|
|
||||||
},
|
},
|
||||||
/** 表单重置 */
|
/** 表单重置 */
|
||||||
reset() {
|
reset() {
|
||||||
@ -318,7 +270,6 @@ export default {
|
|||||||
},
|
},
|
||||||
/** 新增按钮操作 */
|
/** 新增按钮操作 */
|
||||||
handleAdd() {
|
handleAdd() {
|
||||||
// this.reset();
|
|
||||||
this.open = true;
|
this.open = true;
|
||||||
this.title = '添加巡检设置';
|
this.title = '添加巡检设置';
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
@ -327,17 +278,10 @@ export default {
|
|||||||
},
|
},
|
||||||
/** 修改按钮操作 */
|
/** 修改按钮操作 */
|
||||||
handleUpdate(row) {
|
handleUpdate(row) {
|
||||||
// this.reset();
|
|
||||||
// const id = row.id;
|
|
||||||
// this.info({ id }).then((response) => {
|
|
||||||
// this.form = response.data;
|
|
||||||
// this.open = true;
|
|
||||||
// this.title = '修改巡检设置';
|
|
||||||
// });
|
|
||||||
this.open = true;
|
this.open = true;
|
||||||
this.title = '修改巡检设置';
|
this.title = '修改巡检设置';
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.$refs.add.init(row.id);
|
this.$refs.add.init(row);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
/** 提交按钮 */
|
/** 提交按钮 */
|
||||||
@ -401,27 +345,31 @@ export default {
|
|||||||
this.$refs.addOrUpdate.init(id, true);
|
this.$refs.addOrUpdate.init(id, true);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
handleAddDetail({ id }) {
|
handleAddDetail(row) {
|
||||||
this.addOrUpdateVisible = true;
|
this.addOrUpdateVisible = true;
|
||||||
this.addOrEditTitle = '添加巡检';
|
this.addOrEditTitle = '添加内容';
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.$refs.addOrUpdate.init(id);
|
this.$refs.addOrUpdate.init(row);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
/** 导出按钮操作 */
|
/** 导出按钮操作 */
|
||||||
handleExport() {
|
handleExport() {
|
||||||
// 处理查询参数
|
|
||||||
let params = { ...this.queryParams };
|
|
||||||
params.pageNo = undefined;
|
|
||||||
params.pageSize = undefined;
|
|
||||||
this.$modal
|
this.$modal
|
||||||
.confirm('是否确认导出所有巡检设置?')
|
.confirm('是否确认导出所有巡检设置?')
|
||||||
.then(() => {
|
.then(() => {
|
||||||
this.exportLoading = true;
|
this.exportLoading = true;
|
||||||
return exportEquipmentTypeExcel(params);
|
return this.$axios({
|
||||||
|
url: '/base/equipment-check-order/export-excel',
|
||||||
|
params: {
|
||||||
|
name: this.queryParams.name,
|
||||||
|
status: 0,
|
||||||
|
special: true,
|
||||||
|
},
|
||||||
|
responseType: 'blob',
|
||||||
|
});
|
||||||
})
|
})
|
||||||
.then((response) => {
|
.then((response) => {
|
||||||
this.$download.excel(response, '巡检设置.xls');
|
this.$download.excel(response, '巡检单设置.xls');
|
||||||
this.exportLoading = false;
|
this.exportLoading = false;
|
||||||
})
|
})
|
||||||
.catch(() => {});
|
.catch(() => {});
|
||||||
|
193
src/views/specialEquipment/check/Content-add.vue
Normal file
193
src/views/specialEquipment/check/Content-add.vue
Normal file
@ -0,0 +1,193 @@
|
|||||||
|
<!--
|
||||||
|
* @Author: lb
|
||||||
|
* @Date: 2024-2-23 09:16:25
|
||||||
|
* @LastEditors: lb
|
||||||
|
* @LastEditTime: 2024-2-23 09:16:25
|
||||||
|
* @Description: 设备巡检待确认弹窗
|
||||||
|
-->
|
||||||
|
<template>
|
||||||
|
<el-form
|
||||||
|
ref="form"
|
||||||
|
:model="dataForm"
|
||||||
|
:rules="dataRule"
|
||||||
|
@keyup.enter.native="dataFormSubmit()"
|
||||||
|
label-width="128px"
|
||||||
|
v-loading="formLoading"
|
||||||
|
label-position="top">
|
||||||
|
<el-row :gutter="20">
|
||||||
|
<el-col>
|
||||||
|
<el-form-item label="巡检单名称" prop="name">
|
||||||
|
<el-input v-model="dataForm.name" placeholder="请输入巡检单名称" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col>
|
||||||
|
<el-form-item label="部门" prop="departmentId">
|
||||||
|
<el-select
|
||||||
|
v-model="dataForm.departmentId"
|
||||||
|
:placeholder="`请选择部门`">
|
||||||
|
<el-option
|
||||||
|
v-for="opt in departmentOptions"
|
||||||
|
:key="opt.value"
|
||||||
|
:label="opt.label"
|
||||||
|
:value="opt.value" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col>
|
||||||
|
<el-form-item label="班次" prop="groupClass">
|
||||||
|
<el-select
|
||||||
|
v-model="dataForm.groupClass"
|
||||||
|
filterable
|
||||||
|
clearable
|
||||||
|
multiple
|
||||||
|
style="width: 100%"
|
||||||
|
placeholder="请选择班次">
|
||||||
|
<el-option
|
||||||
|
v-for="d in groupOptions"
|
||||||
|
:key="d.value"
|
||||||
|
:label="d.label"
|
||||||
|
:value="d.label" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<!-- <el-col>
|
||||||
|
<el-form-item label="备注" prop="remark">
|
||||||
|
<el-input v-model="dataForm.remark" placeholder="请输入备注" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col> -->
|
||||||
|
</el-row>
|
||||||
|
</el-form>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: 'ContentAdd',
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
formLoading: false,
|
||||||
|
dataForm: {
|
||||||
|
id: null,
|
||||||
|
name: null,
|
||||||
|
departmentId: null,
|
||||||
|
groupClass: null,
|
||||||
|
// special: true,
|
||||||
|
},
|
||||||
|
dataRule: {
|
||||||
|
name: [
|
||||||
|
{ required: true, message: '巡检单名称不能为空', trigger: 'blur' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
equipmentOptions: [],
|
||||||
|
groupOptions: [],
|
||||||
|
departmentOptions: [],
|
||||||
|
};
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.initOptions();
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
reset() {
|
||||||
|
this.dataForm = {
|
||||||
|
id: null,
|
||||||
|
name: null,
|
||||||
|
departmentId: null,
|
||||||
|
groupClass: null,
|
||||||
|
// special: true,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
|
async initOptions() {
|
||||||
|
this.formLoading = true;
|
||||||
|
const urls = [
|
||||||
|
'/base/core-department/listAll',
|
||||||
|
'/base/group-classes/listAll',
|
||||||
|
];
|
||||||
|
try {
|
||||||
|
const [dpt, grp] = await Promise.all(
|
||||||
|
urls.map((url) => this.$axios(url))
|
||||||
|
);
|
||||||
|
if (dpt.code == 0) {
|
||||||
|
this.departmentOptions = dpt.data.map((item) => ({
|
||||||
|
label: item.name,
|
||||||
|
value: item.id,
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
if (grp.code == 0) {
|
||||||
|
this.groupOptions = grp.data.map((item) => ({
|
||||||
|
label: item.name,
|
||||||
|
value: item.id,
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
this.formLoading = false;
|
||||||
|
} catch (err) {
|
||||||
|
this.formLoading = false;
|
||||||
|
console.error(err);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
async init(row) {
|
||||||
|
if (!row || !row.id) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const res = await this.$axios({
|
||||||
|
url: '/base/equipment-check-order/get?id=' + row.id,
|
||||||
|
});
|
||||||
|
if (res.code == 0) {
|
||||||
|
Object.keys(this.dataForm).forEach((key) => {
|
||||||
|
this.dataForm[key] = res.data[key];
|
||||||
|
if (key == 'groupClass') {
|
||||||
|
this.dataForm.groupClass = res.data.groupClass.split(',');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
getConfirmed() {
|
||||||
|
return this.$confirm('是否直接确认保养记录', '提示', {
|
||||||
|
confirmButtonText: '确定',
|
||||||
|
cancelButtonText: '取消',
|
||||||
|
type: 'warning',
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
async dataFormSubmit() {
|
||||||
|
let valid = false;
|
||||||
|
try {
|
||||||
|
valid = await this.$refs.form.validate();
|
||||||
|
} catch (err) {}
|
||||||
|
if (!valid) return;
|
||||||
|
|
||||||
|
let confirmed = false;
|
||||||
|
try {
|
||||||
|
confirmed = await this.getConfirmed();
|
||||||
|
} catch (err) {
|
||||||
|
confirmed = false;
|
||||||
|
}
|
||||||
|
const res = await this.$axios({
|
||||||
|
url:
|
||||||
|
'/base/equipment-check-order' +
|
||||||
|
(this.dataForm.id ? '/update' : '/create'),
|
||||||
|
method: this.dataForm.id ? 'put' : 'post',
|
||||||
|
data: {
|
||||||
|
...this.dataForm,
|
||||||
|
special: true,
|
||||||
|
status: confirmed ? 2 : 1,
|
||||||
|
groupClass: this.dataForm.groupClass.join(','),
|
||||||
|
checkPerson: this.$store.getters.userId,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.$emit('refreshDataList');
|
||||||
|
this.$message.success(this.dataForm.id ? '更新成功' : '创建成功');
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
.el-date-editor,
|
||||||
|
.el-select {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
</style>
|
685
src/views/specialEquipment/check/Content-edit.vue
Normal file
685
src/views/specialEquipment/check/Content-edit.vue
Normal file
@ -0,0 +1,685 @@
|
|||||||
|
<!--
|
||||||
|
filename: Content-edit.vue
|
||||||
|
author: liubin
|
||||||
|
date: 2024-2-24 11:38:56
|
||||||
|
description:
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<el-drawer
|
||||||
|
:visible="visible"
|
||||||
|
:show-close="false"
|
||||||
|
:wrapper-closable="false"
|
||||||
|
class="drawer"
|
||||||
|
custom-class="mes-drawer"
|
||||||
|
size="60%"
|
||||||
|
@closed="$emit('destroy')">
|
||||||
|
<SmallTitle slot="title">编辑</SmallTitle>
|
||||||
|
|
||||||
|
<div class="drawer-body flex">
|
||||||
|
<div class="drawer-body__content">
|
||||||
|
<div class="form-part" style="margin-bottom: 32px">
|
||||||
|
<!-- <el-skeleton v-if="!showForm" animated /> -->
|
||||||
|
<el-form
|
||||||
|
class="equipment-info-form"
|
||||||
|
ref="form"
|
||||||
|
:model="form"
|
||||||
|
label-width="200px"
|
||||||
|
label-position="top"
|
||||||
|
v-loading="formLoading">
|
||||||
|
<el-row :gutter="20">
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="巡检单名称" prop="name">
|
||||||
|
<el-input
|
||||||
|
v-model="form.name"
|
||||||
|
:disabled="disableEdit"
|
||||||
|
placeholder="请输入巡检单名称" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="部门" prop="departmentId">
|
||||||
|
<el-select
|
||||||
|
v-model="form.departmentId"
|
||||||
|
filterable
|
||||||
|
clearable
|
||||||
|
:disabled="disableEdit"
|
||||||
|
:placeholder="`请选择部门`">
|
||||||
|
<el-option
|
||||||
|
v-for="opt in departmentOptions"
|
||||||
|
:key="opt.value"
|
||||||
|
:label="opt.label"
|
||||||
|
:value="opt.value" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="班次" prop="groupClass">
|
||||||
|
<el-select
|
||||||
|
v-model="form.groupClass"
|
||||||
|
filterable
|
||||||
|
clearable
|
||||||
|
multiple
|
||||||
|
:disabled="disableEdit"
|
||||||
|
style="width: 100%"
|
||||||
|
placeholder="请选择班次">
|
||||||
|
<el-option
|
||||||
|
v-for="d in groupOptions"
|
||||||
|
:key="d.value"
|
||||||
|
:label="d.label"
|
||||||
|
:value="d.label" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="巡检人" prop="checkPerson">
|
||||||
|
<!-- :rules="[
|
||||||
|
{
|
||||||
|
required: true,
|
||||||
|
message: '请选择巡检人',
|
||||||
|
trigger: 'blur',
|
||||||
|
},
|
||||||
|
]" -->
|
||||||
|
<el-select
|
||||||
|
v-model="form.checkPerson"
|
||||||
|
:placeholder="`请选择巡检人`"
|
||||||
|
multiple
|
||||||
|
clearable
|
||||||
|
:disabled="disableEdit"
|
||||||
|
filterable>
|
||||||
|
<el-option
|
||||||
|
v-for="opt in inspectorOptions"
|
||||||
|
:key="opt.value"
|
||||||
|
:label="opt.label"
|
||||||
|
:value="opt.value" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="巡检时间" prop="planCheckTime">
|
||||||
|
<el-date-picker
|
||||||
|
v-model="form.planCheckTime"
|
||||||
|
type="datetime"
|
||||||
|
:disabled="disableEdit"
|
||||||
|
placeholder="请选择计划开始时间"
|
||||||
|
value-format="timestamp"></el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<!-- <el-col :span="24">
|
||||||
|
<el-form-item label="备注" prop="remark">
|
||||||
|
<el-input v-model="form.remark" :placeholder="`请输入备注`" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col> -->
|
||||||
|
</el-row>
|
||||||
|
</el-form>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<SmallTitle>巡检内容</SmallTitle>
|
||||||
|
|
||||||
|
<div style="margin-top: 12px; position: relative">
|
||||||
|
<SearchBar
|
||||||
|
:formConfigs="searchBarFormConfig"
|
||||||
|
ref="attr-search-bar"
|
||||||
|
@headBtnClick="handleSearchBarBtnClick" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div style="margin-top: 12px; position: relative">
|
||||||
|
<div
|
||||||
|
v-if="!disableEdit"
|
||||||
|
style="position: absolute; top: -40px; right: 0">
|
||||||
|
<el-button @click="handleAddAttr" type="text">
|
||||||
|
<i class="el-icon-plus"></i>
|
||||||
|
添加内容
|
||||||
|
</el-button>
|
||||||
|
</div>
|
||||||
|
<base-table
|
||||||
|
v-loading="attrListLoading"
|
||||||
|
:table-props="attrTableProps"
|
||||||
|
:page="attrQuery?.params.pageNo || 1"
|
||||||
|
:limit="attrQuery?.params.pageSize || 10"
|
||||||
|
:table-data="attrList"
|
||||||
|
@emitFun="handleEmitFun">
|
||||||
|
<method-btn
|
||||||
|
slot="handleBtn"
|
||||||
|
label="操作"
|
||||||
|
v-if="!disableEdit"
|
||||||
|
:method-list="tableBtn"
|
||||||
|
@clickBtn="handleTableBtnClick" />
|
||||||
|
</base-table>
|
||||||
|
|
||||||
|
<!-- 分页组件 -->
|
||||||
|
<pagination
|
||||||
|
v-show="attrTotal > 0"
|
||||||
|
:total="attrTotal"
|
||||||
|
:page.sync="attrQuery.params.pageNo"
|
||||||
|
:limit.sync="attrQuery.params.pageSize"
|
||||||
|
@pagination="getAttrList" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="drawer-body__footer">
|
||||||
|
<el-button style="" @click="handleCancel">
|
||||||
|
{{ disableEdit ? '返回' : '取消' }}
|
||||||
|
</el-button>
|
||||||
|
<el-button
|
||||||
|
v-if="!disableEdit"
|
||||||
|
type="primary"
|
||||||
|
:loading="btnLoading"
|
||||||
|
@click="handleConfirm">
|
||||||
|
保存
|
||||||
|
</el-button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- 属性对话框 -->
|
||||||
|
<base-dialog
|
||||||
|
:dialogTitle="attrTitle"
|
||||||
|
:dialogVisible="attrFormVisible"
|
||||||
|
width="35%"
|
||||||
|
:append-to-body="true"
|
||||||
|
custom-class="baseDialog"
|
||||||
|
@close="closeAttrForm"
|
||||||
|
@cancel="closeAttrForm"
|
||||||
|
@confirm="submitAttrForm">
|
||||||
|
<DialogForm
|
||||||
|
v-if="attrFormVisible"
|
||||||
|
ref="attrForm"
|
||||||
|
v-model="attrForm"
|
||||||
|
:rows="attrRows" />
|
||||||
|
</base-dialog>
|
||||||
|
</el-drawer>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import DialogForm from '../../../components/DialogForm/index.vue';
|
||||||
|
|
||||||
|
const SmallTitle = {
|
||||||
|
name: 'SmallTitle',
|
||||||
|
props: ['size'],
|
||||||
|
components: {},
|
||||||
|
data() {
|
||||||
|
return {};
|
||||||
|
},
|
||||||
|
methods: {},
|
||||||
|
render: function (h) {
|
||||||
|
return h(
|
||||||
|
'span',
|
||||||
|
{
|
||||||
|
class: 'small-title',
|
||||||
|
style: {
|
||||||
|
fontSize: '18px',
|
||||||
|
lineHeight:
|
||||||
|
this.size == 'lg' ? '24px' : this.size == 'sm' ? '18px' : '20px',
|
||||||
|
fontWeight: 500,
|
||||||
|
fontFamily: '微软雅黑, Microsoft YaHei, Arial, Helvetica, sans-serif',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
this.$slots.default
|
||||||
|
);
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: { SmallTitle, DialogForm },
|
||||||
|
props: ['dataId'], // dataId 作为一个通用的存放id的字段
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
visible: false,
|
||||||
|
btnLoading: false,
|
||||||
|
form: {},
|
||||||
|
formLoading: false,
|
||||||
|
departmentList: [],
|
||||||
|
inspectorOptions: [],
|
||||||
|
attrTableProps: [
|
||||||
|
{
|
||||||
|
prop: 'equipmentName',
|
||||||
|
label: '设备名称',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'program',
|
||||||
|
label: '巡检项目',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'checkResult',
|
||||||
|
label: '巡检结果',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
attrList: [],
|
||||||
|
attrTotal: 0,
|
||||||
|
attrTitle: '',
|
||||||
|
attrForm: {
|
||||||
|
id: null,
|
||||||
|
orderId: null,
|
||||||
|
program: null,
|
||||||
|
checkResult: null,
|
||||||
|
equipmentId: null,
|
||||||
|
},
|
||||||
|
attrFormVisible: false,
|
||||||
|
attrRows: [
|
||||||
|
[
|
||||||
|
{
|
||||||
|
select: true,
|
||||||
|
label: '设备名称',
|
||||||
|
prop: 'equipmentId',
|
||||||
|
url: '/base/core-equipment/page?pageNo=1&pageSize=100&special=true',
|
||||||
|
rules: [
|
||||||
|
{ required: true, message: '设备不能为空', trigger: 'blur' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
input: true,
|
||||||
|
label: '巡检项目',
|
||||||
|
prop: 'program',
|
||||||
|
rules: [
|
||||||
|
{ required: true, message: '巡检项目不能为空', trigger: 'blur' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
input: true,
|
||||||
|
label: '巡检结果',
|
||||||
|
prop: 'checkResult',
|
||||||
|
rules: [
|
||||||
|
{ required: true, message: '巡检结果不能为空', trigger: 'blur' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
],
|
||||||
|
attrQuery: {
|
||||||
|
params: {
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
equipmentName: null,
|
||||||
|
},
|
||||||
|
}, // 属性列表的请求
|
||||||
|
searchBarFormConfig: [
|
||||||
|
{
|
||||||
|
type: 'input',
|
||||||
|
label: '设备',
|
||||||
|
placeholder: '请输入设备名称',
|
||||||
|
param: 'equipmentName',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'button',
|
||||||
|
btnName: '查询',
|
||||||
|
name: 'search',
|
||||||
|
color: 'primary',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
attrFormSubmitting: false,
|
||||||
|
attrListLoading: false,
|
||||||
|
// syncFileListFlag: null,
|
||||||
|
tableBtn: [
|
||||||
|
{
|
||||||
|
type: 'edit',
|
||||||
|
btnName: '编辑',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'delete',
|
||||||
|
btnName: '删除',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
row: null,
|
||||||
|
groupOptions: [],
|
||||||
|
disableEdit: false,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
departmentOptions() {
|
||||||
|
return (this.departmentList || []).map((item) => ({
|
||||||
|
id: item.id,
|
||||||
|
label: item.name,
|
||||||
|
value: item.id,
|
||||||
|
}));
|
||||||
|
},
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.formLoading = true;
|
||||||
|
this.getList('department');
|
||||||
|
this.getList('groupClass');
|
||||||
|
this.getList('inspector');
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
handleSearchBarBtnClick(btn) {
|
||||||
|
switch (btn.btnName) {
|
||||||
|
case 'search':
|
||||||
|
this.attrQuery.params.equipmentName = btn.equipmentName;
|
||||||
|
this.getAttrList();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
handleTableBtnClick({ type, data }) {
|
||||||
|
switch (type) {
|
||||||
|
case 'edit':
|
||||||
|
this.handleEditAttr(data.id);
|
||||||
|
break;
|
||||||
|
case 'delete':
|
||||||
|
this.handleDeleteAttr(data.id);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
async handleConfirm() {
|
||||||
|
this.btnLoading = true;
|
||||||
|
this.$nextTick(async () => {
|
||||||
|
const { code, data } = await this.$axios({
|
||||||
|
url: '/base/equipment-check-order/update',
|
||||||
|
method: 'put',
|
||||||
|
data: {
|
||||||
|
...this.form,
|
||||||
|
groupClass: this.form.groupClass.join(','),
|
||||||
|
checkPerson: this.form.checkPerson.join(','),
|
||||||
|
},
|
||||||
|
});
|
||||||
|
if (code == 0) {
|
||||||
|
this.$modal.msgSuccess('更新成功');
|
||||||
|
}
|
||||||
|
this.btnLoading = false;
|
||||||
|
this.$emit('refreshDataList');
|
||||||
|
this.handleCancel();
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
handleEmitFun(val) {
|
||||||
|
console.log('handleEmitFun', val);
|
||||||
|
},
|
||||||
|
|
||||||
|
init(row, detail) {
|
||||||
|
if (detail) this.disableEdit = true;
|
||||||
|
this.visible = true;
|
||||||
|
this.row = row;
|
||||||
|
this.getInfo(row);
|
||||||
|
this.getAttrList(row);
|
||||||
|
},
|
||||||
|
|
||||||
|
async getInfo(row) {
|
||||||
|
const res = await this.$axios(
|
||||||
|
'/base/equipment-check-order/get?id=' + row.id
|
||||||
|
);
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.form = res.data;
|
||||||
|
this.form.groupClass = res.data.groupClass.split(',');
|
||||||
|
this.form.checkPerson = res.data.checkPerson?.split(',');
|
||||||
|
this.formLoading = false;
|
||||||
|
}
|
||||||
|
this.formLoading = false;
|
||||||
|
},
|
||||||
|
|
||||||
|
async getAttrList(row, condition = {}) {
|
||||||
|
if (!row) row = this.row;
|
||||||
|
this.attrListLoading = true;
|
||||||
|
const res = await this.$axios({
|
||||||
|
url: '/base/equipment-check-order-det/page',
|
||||||
|
method: 'get',
|
||||||
|
params: {
|
||||||
|
...this.attrQuery.params,
|
||||||
|
orderId: row.id,
|
||||||
|
...condition,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.attrList = res.data.list;
|
||||||
|
this.attrTotal = res.data.total;
|
||||||
|
}
|
||||||
|
this.attrListLoading = false;
|
||||||
|
},
|
||||||
|
|
||||||
|
async getList(source = 'department') {
|
||||||
|
const urls = [
|
||||||
|
'/base/core-department/listAll',
|
||||||
|
'/base/group-classes/listAll',
|
||||||
|
];
|
||||||
|
let res;
|
||||||
|
switch (source) {
|
||||||
|
case 'department':
|
||||||
|
res = await this.$axios(urls[0]);
|
||||||
|
this.departmentList = res.data || [];
|
||||||
|
break;
|
||||||
|
case 'inspector':
|
||||||
|
let inspectorList = [];
|
||||||
|
const userlist = await this.$axios({
|
||||||
|
url: '/system/user/page',
|
||||||
|
params: { pageNo: 1, pageSize: 100 },
|
||||||
|
});
|
||||||
|
if (userlist.code == 0) {
|
||||||
|
inspectorList = inspectorList.concat(
|
||||||
|
(userlist.data?.list || []).map((item) => ({
|
||||||
|
label: item.username,
|
||||||
|
value: item.id,
|
||||||
|
}))
|
||||||
|
);
|
||||||
|
}
|
||||||
|
const workerlist = await this.$axios('/base/core-worker/listAll');
|
||||||
|
if (workerlist.code == 0) {
|
||||||
|
inspectorList = inspectorList.concat(
|
||||||
|
workerlist.data.map((item) => ({
|
||||||
|
label: item.name,
|
||||||
|
value: item.id,
|
||||||
|
}))
|
||||||
|
);
|
||||||
|
}
|
||||||
|
this.inspectorOptions = inspectorList;
|
||||||
|
break;
|
||||||
|
case 'groupClass':
|
||||||
|
res = await this.$axios(urls[1]);
|
||||||
|
this.groupOptions = (res.data || []).map((item) => ({
|
||||||
|
label: item.name,
|
||||||
|
value: item.id,
|
||||||
|
}));
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
this.formLoading = false;
|
||||||
|
},
|
||||||
|
|
||||||
|
// 保存表单
|
||||||
|
handleSave() {
|
||||||
|
this.$refs.form.validate(async (valid) => {
|
||||||
|
if (valid) {
|
||||||
|
await this.$axios({
|
||||||
|
url: '/urlupdate', // this.sections[0][isEdit ? 'urlUpdate' : 'urlCreate'],
|
||||||
|
method: 'post', // isEdit ? 'put' : 'post',
|
||||||
|
data: this.form,
|
||||||
|
});
|
||||||
|
this.$modal.msgSuccess(`${isEdit ? '更新' : '创建'}成功`);
|
||||||
|
this.visible = false;
|
||||||
|
this.$emit('refreshDataList');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
handleCancel() {
|
||||||
|
this.visible = false;
|
||||||
|
},
|
||||||
|
|
||||||
|
resetAttrform() {
|
||||||
|
this.attrForm = {
|
||||||
|
id: null,
|
||||||
|
orderId: null,
|
||||||
|
equipmentId: null,
|
||||||
|
program: null,
|
||||||
|
checkResult: null,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
|
// 新增属性
|
||||||
|
handleAddAttr() {
|
||||||
|
if (!this.row.id) return this.$message.error('请先选中保养记录');
|
||||||
|
this.resetAttrform();
|
||||||
|
this.attrTitle = '添加设备属性';
|
||||||
|
this.attrFormVisible = true;
|
||||||
|
},
|
||||||
|
|
||||||
|
// 编辑属性
|
||||||
|
async handleEditAttr(attrId) {
|
||||||
|
const res = await this.$axios({
|
||||||
|
url: '/base/equipment-check-order-det/get',
|
||||||
|
method: 'get',
|
||||||
|
params: { id: attrId },
|
||||||
|
});
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.attrForm = res.data;
|
||||||
|
this.attrTitle = '编辑巡检单详情';
|
||||||
|
this.attrFormVisible = true;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// 删除属性
|
||||||
|
handleDeleteAttr(attrId) {
|
||||||
|
this.$confirm('确定删除该巡检内容?', '提示', {
|
||||||
|
confirmButtonText: '确定',
|
||||||
|
cancelButtonText: '取消',
|
||||||
|
type: 'warning',
|
||||||
|
})
|
||||||
|
.then(async () => {
|
||||||
|
const res = await this.$axios({
|
||||||
|
url: '/base/equipment-check-order-det/delete?id=' + attrId,
|
||||||
|
method: 'delete',
|
||||||
|
});
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.$message({
|
||||||
|
message: '删除成功',
|
||||||
|
type: 'success',
|
||||||
|
duration: 1500,
|
||||||
|
onClose: () => {
|
||||||
|
this.getAttrList();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(() => {});
|
||||||
|
},
|
||||||
|
|
||||||
|
// 提交属性表
|
||||||
|
submitAttrForm() {
|
||||||
|
this.$refs['attrForm'].validate(async (valid) => {
|
||||||
|
if (!valid) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
const isEdit = this.attrForm.id != null;
|
||||||
|
this.attrFormSubmitting = true;
|
||||||
|
const res = await this.$axios({
|
||||||
|
url: isEdit
|
||||||
|
? '/base/equipment-check-order-det/update'
|
||||||
|
: '/base/equipment-check-order-det/create',
|
||||||
|
method: isEdit ? 'put' : 'post',
|
||||||
|
data: { ...this.attrForm, orderId: this.row.id },
|
||||||
|
});
|
||||||
|
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.closeAttrForm();
|
||||||
|
this.$message({
|
||||||
|
message: `${isEdit ? '更新' : '创建'}成功`,
|
||||||
|
type: 'success',
|
||||||
|
duration: 1500,
|
||||||
|
onClose: () => {
|
||||||
|
this.getAttrList();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
this.attrFormSubmitting = false;
|
||||||
|
} catch (err) {
|
||||||
|
this.$message({
|
||||||
|
message: err,
|
||||||
|
type: 'error',
|
||||||
|
duration: 1500,
|
||||||
|
});
|
||||||
|
this.attrFormSubmitting = false;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
closeAttrForm() {
|
||||||
|
this.attrFormVisible = false;
|
||||||
|
},
|
||||||
|
|
||||||
|
handleClick(raw) {
|
||||||
|
if (raw.type === 'delete') {
|
||||||
|
this.$confirm(
|
||||||
|
`确定对${
|
||||||
|
raw.data.name
|
||||||
|
? '[名称=' + raw.data.name + ']'
|
||||||
|
: '[序号=' + raw.data._pageIndex + ']'
|
||||||
|
}进行删除操作?`,
|
||||||
|
'提示',
|
||||||
|
{
|
||||||
|
confirmButtonText: '确定',
|
||||||
|
cancelButtonText: '取消',
|
||||||
|
type: 'warning',
|
||||||
|
}
|
||||||
|
)
|
||||||
|
.then(() => {
|
||||||
|
deleteProductAttr(raw.data.id).then(({ data }) => {
|
||||||
|
this.$message({
|
||||||
|
message: '操作成功',
|
||||||
|
type: 'success',
|
||||||
|
duration: 1500,
|
||||||
|
onClose: () => {
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
});
|
||||||
|
})
|
||||||
|
.catch(() => {});
|
||||||
|
} else {
|
||||||
|
this.addNew(raw.data.id);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.drawer >>> .el-drawer {
|
||||||
|
border-radius: 8px 0 0 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer >>> .el-date-editor,
|
||||||
|
.drawer >>> .el-select {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer >>> .el-drawer__header {
|
||||||
|
margin: 0;
|
||||||
|
padding: 32px 32px 24px;
|
||||||
|
border-bottom: 1px solid #dcdfe6;
|
||||||
|
margin-bottom: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.small-title::before {
|
||||||
|
content: '';
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: top;
|
||||||
|
width: 4px;
|
||||||
|
height: 22px;
|
||||||
|
border-radius: 1px;
|
||||||
|
margin-right: 8px;
|
||||||
|
background-color: #0b58ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer-body {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer-body__content {
|
||||||
|
flex: 1;
|
||||||
|
/* background: #eee; */
|
||||||
|
padding: 20px 30px;
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer-body__footer {
|
||||||
|
display: flex;
|
||||||
|
justify-content: flex-end;
|
||||||
|
padding: 18px;
|
||||||
|
}
|
||||||
|
</style>
|
@ -2,32 +2,26 @@
|
|||||||
filename: Content.vue
|
filename: Content.vue
|
||||||
author: liubin
|
author: liubin
|
||||||
date: 2023-12-12 13:53:22
|
date: 2023-12-12 13:53:22
|
||||||
description:
|
description: 巡检单设置
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="app-container SpecialEquipmentCheckContent">
|
<div class="app-container SpecialEquipmentCheckConfig">
|
||||||
<!-- 搜索工作栏 -->
|
<!-- 搜索工作栏 -->
|
||||||
<SearchBar
|
<SearchBar
|
||||||
:formConfigs="searchBarFormConfig"
|
:formConfigs="searchBarFormConfig"
|
||||||
ref="search-bar"
|
ref="search-bar"
|
||||||
@headBtnClick="handleSearchBarBtnClick" />
|
@headBtnClick="handleSearchBarBtnClick" />
|
||||||
|
|
||||||
<!-- 列表 -->
|
<CheckOrderListTable
|
||||||
<base-table
|
ref="check-order-list-table"
|
||||||
:table-props="tableProps"
|
:table-data="list"
|
||||||
:page="queryParams.pageNo"
|
:page="queryParams.pageNo"
|
||||||
:limit="queryParams.pageSize"
|
:limit="queryParams.pageSize"
|
||||||
:table-data="list"
|
@edit="handleEdit"
|
||||||
@emitFun="handleEmitFun">
|
@detail="handleDetail"
|
||||||
<method-btn
|
@delete="handleDelete"
|
||||||
v-if="tableBtn.length"
|
@confirm="handleConfirm" />
|
||||||
slot="handleBtn"
|
|
||||||
label="操作"
|
|
||||||
:width="120"
|
|
||||||
:method-list="tableBtn"
|
|
||||||
@clickBtn="handleTableBtnClick" />
|
|
||||||
</base-table>
|
|
||||||
|
|
||||||
<!-- 分页组件 -->
|
<!-- 分页组件 -->
|
||||||
<pagination
|
<pagination
|
||||||
@ -43,44 +37,59 @@
|
|||||||
:dialogVisible="open"
|
:dialogVisible="open"
|
||||||
@close="cancel"
|
@close="cancel"
|
||||||
@cancel="cancel"
|
@cancel="cancel"
|
||||||
@confirm="submitForm">
|
@confirm="handleSubmit">
|
||||||
<DialogForm
|
<add ref="add" @refreshDataList="successSubmit" />
|
||||||
v-if="open"
|
|
||||||
ref="form"
|
|
||||||
v-model="form"
|
|
||||||
:disabled="mode == 'detail'"
|
|
||||||
:has-files="false"
|
|
||||||
:rows="rows" />
|
|
||||||
</base-dialog>
|
</base-dialog>
|
||||||
|
|
||||||
|
<!-- 添加巡检,查看详情 -->
|
||||||
|
<addOrUpdata
|
||||||
|
v-if="addOrUpdateVisible"
|
||||||
|
ref="addOrUpdate"
|
||||||
|
@refreshDataList="getList" />
|
||||||
|
|
||||||
|
<edit
|
||||||
|
ref="content-edit"
|
||||||
|
v-if="editOpen"
|
||||||
|
@refreshDataList="getList"
|
||||||
|
@destroy="editOpen = false" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import moment from 'moment';
|
|
||||||
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
||||||
import { deleteCheck } from '@/api/equipment/base/inspection/settings';
|
import addOrUpdata from './add-or-updata.vue';
|
||||||
|
import add from './Content-add.vue';
|
||||||
|
import { parseTime } from '../../core/mixins/code-filter';
|
||||||
|
import CheckOrderListTable from './CheckOrderListTable.vue';
|
||||||
|
import edit from './Content-edit.vue';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'SpecialEquipmentCheckContent',
|
name: 'SpecialEquipmentCheckConfig',
|
||||||
components: {},
|
components: { addOrUpdata, add, edit, CheckOrderListTable },
|
||||||
mixins: [basicPageMixin],
|
mixins: [basicPageMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
searchBarKeys: ['content'],
|
editOpen: false,
|
||||||
|
addOrUpdateVisible: false,
|
||||||
|
addOrEditTitle: '',
|
||||||
|
searchBarKeys: ['name'],
|
||||||
tableBtn: [
|
tableBtn: [
|
||||||
// this.$auth.hasPermi('equipment:check:update')
|
{
|
||||||
// ? {
|
type: 'confirm',
|
||||||
// type: 'detail',
|
btnName: '确认',
|
||||||
// btnName: '详情',
|
showTip: '确认',
|
||||||
// }
|
},
|
||||||
// : undefined,
|
this.$auth.hasPermi('equipment:check-setting:update')
|
||||||
this.$auth.hasPermi('equipment:check:update')
|
|
||||||
? {
|
? {
|
||||||
type: 'edit',
|
type: 'edit',
|
||||||
btnName: '修改',
|
btnName: '修改',
|
||||||
}
|
}
|
||||||
: undefined,
|
: undefined,
|
||||||
this.$auth.hasPermi('equipment:check:delete')
|
{
|
||||||
|
type: 'detail',
|
||||||
|
btnName: '巡检内容详情',
|
||||||
|
},
|
||||||
|
this.$auth.hasPermi('equipment:check-setting:delete')
|
||||||
? {
|
? {
|
||||||
type: 'delete',
|
type: 'delete',
|
||||||
btnName: '删除',
|
btnName: '删除',
|
||||||
@ -88,22 +97,42 @@ export default {
|
|||||||
: undefined,
|
: undefined,
|
||||||
].filter((v) => v),
|
].filter((v) => v),
|
||||||
tableProps: [
|
tableProps: [
|
||||||
{ prop: 'program', label: '巡检项目', showOverflowtooltip: true },
|
|
||||||
{
|
{
|
||||||
prop: 'content',
|
prop: 'name',
|
||||||
label: '巡检内容',
|
label: '巡检单名称',
|
||||||
minWidth: 150,
|
width: 100,
|
||||||
showOverflowtooltip: true,
|
showOverflowtooltip: true,
|
||||||
},
|
},
|
||||||
{ prop: 'code', label: '巡检内容编码', showOverflowtooltip: true },
|
{
|
||||||
{ prop: 'remark', label: '备注', showOverflowtooltip: true },
|
prop: 'department',
|
||||||
|
label: '部门',
|
||||||
|
width: 100,
|
||||||
|
showOverflowtooltip: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'planCheckTime',
|
||||||
|
label: '巡检时间',
|
||||||
|
showOverflowtooltip: true,
|
||||||
|
filter: parseTime,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'confirmDueTime',
|
||||||
|
label: '确认截止时间',
|
||||||
|
showOverflowtooltip: true,
|
||||||
|
filter: parseTime,
|
||||||
|
// filter: (val) =>
|
||||||
|
// val != null && val > 24
|
||||||
|
// ? `${(val - (val % 24)) / 24}天${val % 24}小时`
|
||||||
|
// : `${val}小时`,
|
||||||
|
},
|
||||||
|
{ prop: 'remark', label: '备注' },
|
||||||
],
|
],
|
||||||
searchBarFormConfig: [
|
searchBarFormConfig: [
|
||||||
{
|
{
|
||||||
type: 'input',
|
type: 'input',
|
||||||
label: '巡检内容',
|
label: '巡检单名称',
|
||||||
placeholder: '请输入巡检内容',
|
placeholder: '请输入巡检单名称',
|
||||||
param: 'content',
|
param: 'name',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: 'button',
|
type: 'button',
|
||||||
@ -115,60 +144,28 @@ export default {
|
|||||||
type: 'separate',
|
type: 'separate',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: this.$auth.hasPermi('equipment:check:create') ? 'button' : '',
|
type: this.$auth.hasPermi('equipment:check-setting:create')
|
||||||
|
? 'button'
|
||||||
|
: '',
|
||||||
btnName: '新增',
|
btnName: '新增',
|
||||||
name: 'add',
|
name: 'add',
|
||||||
plain: true,
|
plain: true,
|
||||||
color: 'success',
|
color: 'success',
|
||||||
},
|
},
|
||||||
// {
|
{
|
||||||
// type: this.$auth.hasPermi('equipment:check:export')
|
type: 'button',
|
||||||
// ? 'button'
|
btnName: '导出',
|
||||||
// : '',
|
name: 'export',
|
||||||
// btnName: '导出',
|
plain: true,
|
||||||
// name: 'export',
|
color: 'warning',
|
||||||
// color: 'warning',
|
},
|
||||||
// },
|
{
|
||||||
],
|
type: 'button',
|
||||||
rows: [
|
btnName: '批量确认',
|
||||||
[
|
name: 'batch-confirm',
|
||||||
{
|
plain: true,
|
||||||
input: true,
|
color: 'primary',
|
||||||
label: '巡检内容编号',
|
},
|
||||||
prop: 'code',
|
|
||||||
url: '/base/equipment-check/getCode',
|
|
||||||
rules: [
|
|
||||||
{
|
|
||||||
required: true,
|
|
||||||
message: '巡检内容编号不能为空',
|
|
||||||
trigger: 'blur',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
input: true,
|
|
||||||
label: '巡检项目',
|
|
||||||
prop: 'program',
|
|
||||||
rules: [
|
|
||||||
{ required: true, message: '巡检项目不能为空', trigger: 'blur' },
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
[
|
|
||||||
{
|
|
||||||
input: true,
|
|
||||||
label: '巡检内容',
|
|
||||||
prop: 'content',
|
|
||||||
rules: [
|
|
||||||
{ required: true, message: '巡检内容不能为空', trigger: 'blur' },
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
input: true,
|
|
||||||
label: '备注',
|
|
||||||
prop: 'remark',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
],
|
],
|
||||||
// 是否显示弹出层
|
// 是否显示弹出层
|
||||||
open: false,
|
open: false,
|
||||||
@ -176,36 +173,48 @@ export default {
|
|||||||
queryParams: {
|
queryParams: {
|
||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
pageSize: 10,
|
pageSize: 10,
|
||||||
content: null,
|
name: null,
|
||||||
|
status: 1,
|
||||||
},
|
},
|
||||||
// 表单参数
|
// 表单参数
|
||||||
form: {
|
form: {},
|
||||||
code: '',
|
basePath: '/base/equipment-check-order',
|
||||||
program: '',
|
|
||||||
id: undefined,
|
|
||||||
content: '',
|
|
||||||
},
|
|
||||||
basePath: '/base/equipment-check',
|
|
||||||
mode: null,
|
mode: null,
|
||||||
|
allSpecialEquipments: [],
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
// this.initSearchBar();
|
this.initSearchBar();
|
||||||
this.getList();
|
this.getList();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
// initSearchBar() {
|
handleSubmit() {
|
||||||
// this.http('/base/core-equipment/listAll', 'get').then(({ data }) => {
|
this.$refs.add.dataFormSubmit();
|
||||||
// this.$set(
|
},
|
||||||
// this.searchBarFormConfig[0],
|
|
||||||
// 'selectOptions',
|
successSubmit() {
|
||||||
// data.map((item) => ({
|
this.cancel();
|
||||||
// name: item.name,
|
this.getList();
|
||||||
// id: item.id,
|
},
|
||||||
// }))
|
|
||||||
// );
|
initSearchBar() {
|
||||||
// });
|
this.http('/base/core-equipment/listAll', 'get').then(({ data }) => {
|
||||||
// },
|
this.allSpecialEquipments = data.filter((item) => item.special);
|
||||||
|
this.setSearchBarEquipmentList(data.filter((item) => item.special));
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
setSearchBarEquipmentList(eqList) {
|
||||||
|
this.$set(
|
||||||
|
this.searchBarFormConfig[2],
|
||||||
|
'selectOptions',
|
||||||
|
eqList.map((item) => ({
|
||||||
|
name: item.name,
|
||||||
|
id: item.id,
|
||||||
|
}))
|
||||||
|
);
|
||||||
|
},
|
||||||
|
|
||||||
/** 查询列表 */
|
/** 查询列表 */
|
||||||
getList() {
|
getList() {
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
@ -216,80 +225,102 @@ export default {
|
|||||||
this.loading = false;
|
this.loading = false;
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
/** 取消按钮 */
|
/** 取消按钮 */
|
||||||
cancel() {
|
cancel() {
|
||||||
|
this.$refs.add.reset();
|
||||||
this.open = false;
|
this.open = false;
|
||||||
this.mode = null;
|
this.title = '';
|
||||||
this.reset();
|
|
||||||
},
|
},
|
||||||
/** 表单重置 */
|
|
||||||
reset() {
|
/** search bar click */
|
||||||
this.form = {
|
async searchBarClicked(btn) {
|
||||||
id: null,
|
switch (btn.btnName) {
|
||||||
name: null,
|
/** 批量确认 */
|
||||||
content: null,
|
case 'batch-confirm':
|
||||||
program: null,
|
if (this.$refs['check-order-list-table'].selectedOrder.length == 0) {
|
||||||
remark: null,
|
this.$message.warning('请选择待确认的巡检单');
|
||||||
};
|
return;
|
||||||
this.resetForm('form');
|
}
|
||||||
|
const res = await this.$axios({
|
||||||
|
url:
|
||||||
|
'/base/equipment-check-order/confirm?confirmPerson=' +
|
||||||
|
this.$store.getters.userId,
|
||||||
|
method: 'put',
|
||||||
|
data: this.$refs['check-order-list-table'].selectedOrder.map(
|
||||||
|
(item) => item.id
|
||||||
|
),
|
||||||
|
});
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.$message.success('确认成功');
|
||||||
|
this.getList();
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
/** 搜索按钮操作 */
|
/** 搜索按钮操作 */
|
||||||
handleQuery() {
|
handleQuery() {
|
||||||
this.queryParams.pageNo = 1;
|
this.queryParams.pageNo = 1;
|
||||||
this.getList();
|
this.getList();
|
||||||
},
|
},
|
||||||
/** 重置按钮操作 */
|
|
||||||
resetQuery() {
|
|
||||||
this.resetForm('queryForm');
|
|
||||||
this.handleQuery();
|
|
||||||
},
|
|
||||||
/** 新增按钮操作 */
|
/** 新增按钮操作 */
|
||||||
handleAdd() {
|
handleAdd() {
|
||||||
// this.reset();
|
|
||||||
this.open = true;
|
this.open = true;
|
||||||
this.title = '添加巡检内容';
|
this.title = '添加待确认巡检设置';
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs.add.init();
|
||||||
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
/** 修改按钮操作 */
|
/** 修改按钮操作 */
|
||||||
handleUpdate(row) {
|
handleUpdate(row) {
|
||||||
this.reset();
|
this.open = true;
|
||||||
|
this.title = '修改巡检设置';
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs.add.init(row);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
/** 编辑 */
|
||||||
|
handleEdit(row, detail) {
|
||||||
|
this.editOpen = true;
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs['content-edit'].init(row, detail ?? false);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
/** 确认巡检单 */
|
||||||
|
handleConfirm(row) {
|
||||||
const id = row.id;
|
const id = row.id;
|
||||||
this.info({ id }).then((response) => {
|
this.$modal
|
||||||
this.form = response.data;
|
.confirm('是否确认巡检单"' + row.name + '"?')
|
||||||
this.open = true;
|
.then(() => {
|
||||||
this.title = '修改巡检内容';
|
return this.$axios({
|
||||||
});
|
url:
|
||||||
},
|
'/base/equipment-check-order/confirm?confirmPerson=' +
|
||||||
/** 提交按钮 */
|
this.$store.getters.userId,
|
||||||
submitForm() {
|
// '/base/equipment-check-order/confirm?ids=' + JSON.stringify([id]).replaceAll("\"", ''),
|
||||||
this.$refs['form'].validate((valid) => {
|
method: 'put',
|
||||||
if (!valid) {
|
data: [id],
|
||||||
return;
|
|
||||||
}
|
|
||||||
// 修改的提交
|
|
||||||
if (this.form.id != null) {
|
|
||||||
this.put(this.form).then((response) => {
|
|
||||||
this.$modal.msgSuccess('修改成功');
|
|
||||||
this.open = false;
|
|
||||||
this.getList();
|
|
||||||
});
|
});
|
||||||
return;
|
})
|
||||||
}
|
.then((res) => {
|
||||||
// 添加的提交
|
|
||||||
this.post(this.form).then((response) => {
|
|
||||||
this.$modal.msgSuccess('新增成功');
|
|
||||||
this.open = false;
|
|
||||||
this.getList();
|
this.getList();
|
||||||
});
|
res.code == 0 && this.$modal.msgSuccess('确认成功');
|
||||||
});
|
res.code != 0 && this.$modal.msgError('确认失败');
|
||||||
|
})
|
||||||
|
.catch(() => {});
|
||||||
},
|
},
|
||||||
/** 删除按钮操作 */
|
|
||||||
|
/** 删除巡检单 */
|
||||||
handleDelete(row) {
|
handleDelete(row) {
|
||||||
const id = row.id;
|
const id = row.id;
|
||||||
this.$modal
|
this.$modal
|
||||||
.confirm('是否确认删除该巡检项目?')
|
.confirm('是否确认删除巡检单"' + row.name + '"?')
|
||||||
.then(function () {
|
.then(() => {
|
||||||
// return this.del({ id });
|
return this.del({ id });
|
||||||
return deleteCheck(id);
|
|
||||||
})
|
})
|
||||||
.then(() => {
|
.then(() => {
|
||||||
this.getList();
|
this.getList();
|
||||||
@ -297,29 +328,29 @@ export default {
|
|||||||
})
|
})
|
||||||
.catch(() => {});
|
.catch(() => {});
|
||||||
},
|
},
|
||||||
handleDetail({ id }) {
|
|
||||||
this.reset();
|
handleDetail(row) {
|
||||||
this.mode = 'detail';
|
this.handleEdit(row, true);
|
||||||
this.info({ id }).then((response) => {
|
|
||||||
this.form = response.data;
|
|
||||||
this.open = true;
|
|
||||||
this.title = '修改巡检内容';
|
|
||||||
});
|
|
||||||
},
|
},
|
||||||
|
|
||||||
/** 导出按钮操作 */
|
/** 导出按钮操作 */
|
||||||
handleExport() {
|
handleExport() {
|
||||||
// 处理查询参数
|
|
||||||
let params = { ...this.queryParams };
|
|
||||||
params.pageNo = undefined;
|
|
||||||
params.pageSize = undefined;
|
|
||||||
this.$modal
|
this.$modal
|
||||||
.confirm('是否确认导出所有巡检内容?')
|
.confirm('是否确认导出所有巡检设置?')
|
||||||
.then(() => {
|
.then(() => {
|
||||||
this.exportLoading = true;
|
this.exportLoading = true;
|
||||||
return exportEquipmentTypeExcel(params);
|
return this.$axios({
|
||||||
|
url: '/base/equipment-check-order/export-excel',
|
||||||
|
// params: {
|
||||||
|
// name: this.queryParams.name,
|
||||||
|
// status: 1,
|
||||||
|
// special: true,
|
||||||
|
// },
|
||||||
|
responseType: 'blob',
|
||||||
|
});
|
||||||
})
|
})
|
||||||
.then((response) => {
|
.then((response) => {
|
||||||
this.$download.excel(response, '巡检内容.xls');
|
this.$download.excel(response, '巡检单待确认.xls');
|
||||||
this.exportLoading = false;
|
this.exportLoading = false;
|
||||||
})
|
})
|
||||||
.catch(() => {});
|
.catch(() => {});
|
||||||
@ -327,8 +358,3 @@ export default {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped lang="scss">
|
|
||||||
.SpecialEquipmentCheckContent {
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
@ -1,504 +0,0 @@
|
|||||||
<!--
|
|
||||||
filename: dialogForm.vue
|
|
||||||
author: liubin
|
|
||||||
date: 2023-10-31 15:55:13
|
|
||||||
description:
|
|
||||||
-->
|
|
||||||
|
|
||||||
<template>
|
|
||||||
<el-drawer
|
|
||||||
ref="drawer"
|
|
||||||
:visible.sync="visible"
|
|
||||||
:show-close="false"
|
|
||||||
:wrapper-closable="isdetail"
|
|
||||||
class="drawer"
|
|
||||||
size="55%"
|
|
||||||
@closed="$emit('destroy')">
|
|
||||||
<small-title slot="title" :no-padding="true">
|
|
||||||
{{ isdetail ? '查看详情' : !dataForm.id ? '新增' : '编辑' }}
|
|
||||||
</small-title>
|
|
||||||
|
|
||||||
<el-form
|
|
||||||
ref="dataForm"
|
|
||||||
style="margin: 0 16px; padding: 0 16px"
|
|
||||||
:model="dataForm"
|
|
||||||
:rules="dataRule"
|
|
||||||
label-width="100px"
|
|
||||||
label-position="top"
|
|
||||||
v-loading="formLoading">
|
|
||||||
<el-row :gutter="20">
|
|
||||||
<el-col :span="8">
|
|
||||||
<el-form-item
|
|
||||||
label="设备大类"
|
|
||||||
prop="equipmentCategory"
|
|
||||||
:rules="[
|
|
||||||
{ required: true, message: '请选择设备大类', trigger: 'blur' },
|
|
||||||
]">
|
|
||||||
<el-select
|
|
||||||
v-model="dataForm.equipmentCategory"
|
|
||||||
:disabled="isdetail"
|
|
||||||
:placeholder="`请选择设备大类`"
|
|
||||||
filterable
|
|
||||||
@change="handleEqTypeChange">
|
|
||||||
<el-option
|
|
||||||
v-for="opt in equipmentTypeOptions"
|
|
||||||
:key="opt.value"
|
|
||||||
:label="opt.label"
|
|
||||||
:value="opt.value" />
|
|
||||||
</el-select>
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
|
|
||||||
<el-col :span="8">
|
|
||||||
<el-form-item
|
|
||||||
label="设备名称"
|
|
||||||
prop="equipmentId"
|
|
||||||
:rules="[
|
|
||||||
{ required: true, message: '设备不能为空', trigger: 'blur' },
|
|
||||||
]">
|
|
||||||
<el-select
|
|
||||||
v-model="dataForm.equipmentId"
|
|
||||||
filterable
|
|
||||||
clearable
|
|
||||||
:disabled="isdetail"
|
|
||||||
style="width: 100%"
|
|
||||||
placeholder="请选择设备名称"
|
|
||||||
@change="setConfig">
|
|
||||||
<el-option
|
|
||||||
v-for="dict in equipmentOptions"
|
|
||||||
:key="dict.value"
|
|
||||||
:label="dict.label"
|
|
||||||
:value="dict.value" />
|
|
||||||
</el-select>
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="8">
|
|
||||||
<!-- <el-form-item label="物料名称" prop="name">
|
|
||||||
<el-input v-model="dataForm.name" :disabled="isdetail" clearable placeholder="请输入物料名称" />
|
|
||||||
</el-form-item> -->
|
|
||||||
<el-form-item
|
|
||||||
label="巡检配置名称"
|
|
||||||
prop="configId"
|
|
||||||
:rules="[
|
|
||||||
{ required: true, message: '巡检配置不能为空', trigger: 'blur' },
|
|
||||||
]">
|
|
||||||
<el-select
|
|
||||||
v-model="dataForm.configId"
|
|
||||||
filterable
|
|
||||||
clearable
|
|
||||||
:disabled="isdetail"
|
|
||||||
style="width: 100%"
|
|
||||||
placeholder="请选择巡检配置"
|
|
||||||
@change="setInspectionContet">
|
|
||||||
<el-option
|
|
||||||
v-for="dict in configList"
|
|
||||||
:key="dict.id"
|
|
||||||
:label="dict.name"
|
|
||||||
:value="dict.id" />
|
|
||||||
</el-select>
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="8">
|
|
||||||
<el-form-item label="设备编码" prop="equipmentCode">
|
|
||||||
<el-input
|
|
||||||
v-model="dataForm.equipmentCode"
|
|
||||||
disabled
|
|
||||||
clearable
|
|
||||||
placeholder="请输入设备编码" />
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
|
|
||||||
<el-col :span="8">
|
|
||||||
<el-form-item label="巡检人" prop="responsible">
|
|
||||||
<el-input
|
|
||||||
v-model="dataForm.responsible"
|
|
||||||
:disabled="isdetail"
|
|
||||||
clearable
|
|
||||||
placeholder="请输入巡检人" />
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="8">
|
|
||||||
<el-form-item label="巡检时间" prop="actualTime">
|
|
||||||
<el-date-picker
|
|
||||||
v-model="dataForm.actualTime"
|
|
||||||
type="datetime"
|
|
||||||
:disabled="isdetail"
|
|
||||||
format="yyyy-MM-dd HH:mm:ss"
|
|
||||||
value-format="timestamp"
|
|
||||||
placeholder="选择巡检时间" />
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="8">
|
|
||||||
<el-form-item label="数据来源" prop="origin">
|
|
||||||
<el-select
|
|
||||||
v-model="dataForm.origin"
|
|
||||||
filterable
|
|
||||||
clearable
|
|
||||||
:disabled="isdetail"
|
|
||||||
style="width: 100%"
|
|
||||||
placeholder="请选择数据来源">
|
|
||||||
<el-option key="1" label="手动" :value="1" />
|
|
||||||
<el-option key="2" label="PDA" :value="2" />
|
|
||||||
</el-select>
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
</el-row>
|
|
||||||
|
|
||||||
<el-form-item label="巡检内容">
|
|
||||||
<base-table
|
|
||||||
:table-props="tableProps"
|
|
||||||
:page="listQuery.pageNo"
|
|
||||||
:limit="listQuery.pageSize"
|
|
||||||
:table-data="list" />
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="巡检详情" prop="description">
|
|
||||||
<editor
|
|
||||||
v-if="!isdetail"
|
|
||||||
v-model="dataForm.description"
|
|
||||||
:min-height="150" />
|
|
||||||
<div
|
|
||||||
v-else
|
|
||||||
v-html="dataForm.description"
|
|
||||||
style="padding: 5px; margin-left: 5px; border: 1px solid #dfdfdf" />
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="附件">
|
|
||||||
<FileUpload
|
|
||||||
v-model="file"
|
|
||||||
:limit="1"
|
|
||||||
:f-name="fileName"
|
|
||||||
:disabled="isdetail"
|
|
||||||
@name="setFileName" />
|
|
||||||
</el-form-item>
|
|
||||||
</el-form>
|
|
||||||
|
|
||||||
<div v-if="!isdetail" class="drawer-body__footer">
|
|
||||||
<el-button @click="goback()">取消</el-button>
|
|
||||||
<el-button type="primary" @click="dataFormSubmit()">确定</el-button>
|
|
||||||
</div>
|
|
||||||
</el-drawer>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import SmallTitle from './SmallTitle.vue';
|
|
||||||
import {
|
|
||||||
createCheckLog,
|
|
||||||
updateCheckLog,
|
|
||||||
getcheckConfigByEqList,
|
|
||||||
getEqCheckLog,
|
|
||||||
} from '@/api/equipment/base/inspection/record';
|
|
||||||
import { getEquipmentAll } from '@/api/base/equipment';
|
|
||||||
import Editor from '@/components/Editor';
|
|
||||||
import { getCheckDetPage } from '@/api/equipment/base/inspection/settings';
|
|
||||||
// import FileUpload from "@/components/FileUpload";
|
|
||||||
// import { parseTime } from '../../../../core/mixins/code-filter';
|
|
||||||
// import attrAdd from './attr-add';
|
|
||||||
import FileUpload from '@/components/FileUpload';
|
|
||||||
|
|
||||||
const tableBtn = [
|
|
||||||
{
|
|
||||||
type: 'delete',
|
|
||||||
btnName: '删除',
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
const tableProps = [
|
|
||||||
{
|
|
||||||
prop: 'program',
|
|
||||||
label: '巡检项目',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'content',
|
|
||||||
label: '巡检内容',
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
export default {
|
|
||||||
name: 'AddRecord',
|
|
||||||
model: {
|
|
||||||
prop: 'dataForm',
|
|
||||||
event: 'update',
|
|
||||||
},
|
|
||||||
emits: ['update'],
|
|
||||||
components: { SmallTitle, Editor, FileUpload },
|
|
||||||
props: {
|
|
||||||
// dataForm: {
|
|
||||||
// type: Object,
|
|
||||||
// default: () => ({}),
|
|
||||||
// },
|
|
||||||
// disabled: {
|
|
||||||
// type: Boolean,
|
|
||||||
// default: false
|
|
||||||
// },
|
|
||||||
},
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
tableBtn,
|
|
||||||
tableProps,
|
|
||||||
addOrUpdateVisible: false,
|
|
||||||
formLoading: true,
|
|
||||||
visible: false,
|
|
||||||
isdetail: false,
|
|
||||||
dataForm: {
|
|
||||||
id: undefined,
|
|
||||||
configId: undefined,
|
|
||||||
equipmentId: undefined,
|
|
||||||
actualTime: undefined,
|
|
||||||
responsible: undefined,
|
|
||||||
description: undefined,
|
|
||||||
equipmentCode: undefined,
|
|
||||||
equipmentCategory: undefined,
|
|
||||||
origin: 1,
|
|
||||||
files: [],
|
|
||||||
},
|
|
||||||
equipmentTypeOptions: [
|
|
||||||
{ label: '安全设备', value: 1 },
|
|
||||||
{ label: '消防设备', value: 2 },
|
|
||||||
{ label: '特种设备', value: 3 },
|
|
||||||
],
|
|
||||||
list: [],
|
|
||||||
eqList: [],
|
|
||||||
configList: [],
|
|
||||||
listQuery: {
|
|
||||||
pageSize: 10,
|
|
||||||
pageNo: 1,
|
|
||||||
total: 0,
|
|
||||||
},
|
|
||||||
file: '',
|
|
||||||
fileName: '',
|
|
||||||
dataRule: {
|
|
||||||
responsible: [
|
|
||||||
{ required: true, message: '巡检人不能为空', trigger: 'blur' },
|
|
||||||
],
|
|
||||||
actualTime: [
|
|
||||||
{ required: true, message: '巡检时间不能为空', trigger: 'blur' },
|
|
||||||
],
|
|
||||||
},
|
|
||||||
};
|
|
||||||
},
|
|
||||||
mounted() {
|
|
||||||
this.getDict();
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
setFileName(val) {
|
|
||||||
this.fileName = val;
|
|
||||||
},
|
|
||||||
async getDict() {
|
|
||||||
const res = await getEquipmentAll();
|
|
||||||
this.eqList = res.data;
|
|
||||||
this.handleEqTypeChange();
|
|
||||||
|
|
||||||
const configres = await getcheckConfigByEqList();
|
|
||||||
this.configList = configres.data;
|
|
||||||
},
|
|
||||||
async setConfig() {
|
|
||||||
const configres = await getcheckConfigByEqList({
|
|
||||||
equipmentId: this.dataForm.equipmentId,
|
|
||||||
});
|
|
||||||
this.configList = configres.data;
|
|
||||||
this.dataForm.configId =
|
|
||||||
this.configList.filter((it) => {
|
|
||||||
return it.id === this.dataForm.configId;
|
|
||||||
})[0]?.id ?? undefined;
|
|
||||||
this.dataForm.equipmentCode =
|
|
||||||
this.eqList.filter((item) => {
|
|
||||||
return item.id === this.dataForm.equipmentId;
|
|
||||||
})[0]?.code ?? undefined;
|
|
||||||
},
|
|
||||||
goback() {
|
|
||||||
this.$emit('refreshDataList');
|
|
||||||
this.visible = false;
|
|
||||||
},
|
|
||||||
goEdit() {
|
|
||||||
this.isdetail = false;
|
|
||||||
},
|
|
||||||
/** 模拟透传 ref */
|
|
||||||
validate(cb) {
|
|
||||||
return this.$refs.dataForm.validate(cb);
|
|
||||||
},
|
|
||||||
resetFields(args) {
|
|
||||||
return this.$refs.dataForm.resetFields(args);
|
|
||||||
},
|
|
||||||
initData() {
|
|
||||||
this.list = [];
|
|
||||||
this.file = '';
|
|
||||||
this.fileName = '';
|
|
||||||
},
|
|
||||||
init(id, isdetail) {
|
|
||||||
this.initData();
|
|
||||||
this.isdetail = isdetail || false;
|
|
||||||
this.dataForm.id = id || undefined;
|
|
||||||
this.visible = true;
|
|
||||||
|
|
||||||
// const scrollContainer = this.$refs.dataForm;
|
|
||||||
// const scrollPosition = scrollContainer.scrollTop;
|
|
||||||
// console.log('12', scrollPosition);
|
|
||||||
|
|
||||||
this.$nextTick(() => {
|
|
||||||
this.$refs['dataForm'].resetFields();
|
|
||||||
|
|
||||||
if (this.dataForm.id) {
|
|
||||||
// 获取巡检记录
|
|
||||||
getEqCheckLog(this.dataForm.id).then((response) => {
|
|
||||||
this.formLoading = false;
|
|
||||||
this.dataForm = response.data;
|
|
||||||
if (this.dataForm.files.length > 0) {
|
|
||||||
this.file = this.dataForm.files[0].fileUrl;
|
|
||||||
this.fileName = this.dataForm.files[0].fileName;
|
|
||||||
}
|
|
||||||
this.dataForm.description = this.dataForm.description || '无';
|
|
||||||
this.setConfig();
|
|
||||||
this.setInspectionContet();
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
// if (this.urlOptions.isGetCode) {
|
|
||||||
// this.getCode()
|
|
||||||
// }
|
|
||||||
}
|
|
||||||
});
|
|
||||||
this.formLoading = false;
|
|
||||||
},
|
|
||||||
setInspectionContet() {
|
|
||||||
// 根据巡检配置名称获得巡检配置详细对应巡检内容
|
|
||||||
getCheckDetPage({
|
|
||||||
pageNo: 1,
|
|
||||||
pageSize: 99,
|
|
||||||
configId: this.dataForm.configId,
|
|
||||||
}).then((response) => {
|
|
||||||
this.list = response.data.list;
|
|
||||||
this.listQuery.total = response.data.total;
|
|
||||||
});
|
|
||||||
},
|
|
||||||
// 新增 / 修改
|
|
||||||
addNew(id) {
|
|
||||||
this.addOrUpdateVisible = true;
|
|
||||||
this.$nextTick(() => {
|
|
||||||
this.$refs.addOrUpdate.init(id);
|
|
||||||
});
|
|
||||||
},
|
|
||||||
handleEqTypeChange(type) {
|
|
||||||
this.dataForm.equipmentId = null;
|
|
||||||
this.dataForm.equipmentCode = null;
|
|
||||||
if (type) {
|
|
||||||
this.equipmentOptions = this.eqList
|
|
||||||
.filter((item) => item.special)
|
|
||||||
.filter((item) => item.specialType === type)
|
|
||||||
.map((item) => ({ label: item.name, value: item.id }));
|
|
||||||
} else
|
|
||||||
this.equipmentOptions = this.eqList
|
|
||||||
// .filter((item) => item.special)
|
|
||||||
.map((item) => ({
|
|
||||||
label: item.name,
|
|
||||||
value: item.id,
|
|
||||||
}));
|
|
||||||
// this.$emit('update', this.form)
|
|
||||||
},
|
|
||||||
// 表单提交
|
|
||||||
dataFormSubmit() {
|
|
||||||
this.$refs['dataForm'].validate((valid) => {
|
|
||||||
if (!valid) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
if (this.file) {
|
|
||||||
const temp = this.file.split(','); // 获取文件个数
|
|
||||||
let arry = [];
|
|
||||||
temp.forEach((item, index) => {
|
|
||||||
arry.push({
|
|
||||||
fileName: this.fileName,
|
|
||||||
fileType: 2,
|
|
||||||
fileUrl: item,
|
|
||||||
});
|
|
||||||
});
|
|
||||||
this.dataForm.files = arry;
|
|
||||||
} else {
|
|
||||||
this.dataForm.files = [];
|
|
||||||
}
|
|
||||||
|
|
||||||
// 修改的提交
|
|
||||||
if (this.dataForm.id) {
|
|
||||||
updateCheckLog(this.dataForm).then((response) => {
|
|
||||||
this.$modal.msgSuccess('修改成功');
|
|
||||||
this.visible = false;
|
|
||||||
this.$emit('refreshDataList');
|
|
||||||
});
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
// 添加的提交
|
|
||||||
createCheckLog(this.dataForm).then((response) => {
|
|
||||||
this.$modal.msgSuccess('新增成功');
|
|
||||||
this.visible = false;
|
|
||||||
this.$emit('refreshDataList');
|
|
||||||
});
|
|
||||||
});
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style scoped>
|
|
||||||
.el-date-editor,
|
|
||||||
.el-select {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
.drawer-body__footer {
|
|
||||||
display: flex;
|
|
||||||
justify-content: flex-end;
|
|
||||||
padding: 18px;
|
|
||||||
}
|
|
||||||
.action_btn {
|
|
||||||
float: right;
|
|
||||||
margin: 5px 15px;
|
|
||||||
font-size: 14px;
|
|
||||||
}
|
|
||||||
.add {
|
|
||||||
color: #0b58ff;
|
|
||||||
}
|
|
||||||
.drawer >>> .el-drawer {
|
|
||||||
border-radius: 8px 0 0 8px;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
|
|
||||||
.drawer >>> .el-form-item__label {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.drawer >>> .el-drawer__header {
|
|
||||||
margin: 0;
|
|
||||||
padding: 32px 32px 24px;
|
|
||||||
border-bottom: 1px solid #dcdfe6;
|
|
||||||
}
|
|
||||||
.drawer >>> .el-drawer__body {
|
|
||||||
flex: 1;
|
|
||||||
height: 1px;
|
|
||||||
margin: 10px 0;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
|
|
||||||
.drawer >>> .content {
|
|
||||||
padding: 30px 24px;
|
|
||||||
flex: 1;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
/* height: 100%; */
|
|
||||||
}
|
|
||||||
|
|
||||||
.drawer >>> .visual-part {
|
|
||||||
flex: 1 auto;
|
|
||||||
max-height: 76vh;
|
|
||||||
overflow: hidden;
|
|
||||||
overflow-y: scroll;
|
|
||||||
padding-right: 10px; /* 调整滚动条样式 */
|
|
||||||
}
|
|
||||||
|
|
||||||
.drawer >>> .el-form,
|
|
||||||
.drawer >>> .attr-list {
|
|
||||||
padding: 0 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.drawer-body__footer {
|
|
||||||
display: flex;
|
|
||||||
justify-content: flex-end;
|
|
||||||
padding: 18px;
|
|
||||||
}
|
|
||||||
</style>
|
|
636
src/views/specialEquipment/check/Record-detail.vue
Normal file
636
src/views/specialEquipment/check/Record-detail.vue
Normal file
@ -0,0 +1,636 @@
|
|||||||
|
<!--
|
||||||
|
filename: Record-detail.vue
|
||||||
|
author: liubin
|
||||||
|
date: 2024-2-24 11:38:56
|
||||||
|
description:
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<el-drawer
|
||||||
|
:visible="visible"
|
||||||
|
:show-close="false"
|
||||||
|
:wrapper-closable="false"
|
||||||
|
class="drawer"
|
||||||
|
custom-class="mes-drawer"
|
||||||
|
size="60%"
|
||||||
|
@closed="$emit('destroy')">
|
||||||
|
<SmallTitle slot="title">查看详情</SmallTitle>
|
||||||
|
|
||||||
|
<div class="drawer-body flex">
|
||||||
|
<div class="drawer-body__content">
|
||||||
|
<div class="form-part" style="margin-bottom: 32px">
|
||||||
|
<!-- <el-skeleton v-if="!showForm" animated /> -->
|
||||||
|
<el-form
|
||||||
|
class="equipment-info-form"
|
||||||
|
ref="form"
|
||||||
|
:model="form"
|
||||||
|
label-width="200px"
|
||||||
|
label-position="top"
|
||||||
|
v-loading="formLoading">
|
||||||
|
<el-row :gutter="20">
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="巡检单名称" prop="name">
|
||||||
|
{{ form.name }}
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="部门" prop="department">
|
||||||
|
{{ form.department }}
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="班次" prop="groupClass">
|
||||||
|
{{ form.groupClass }}
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="巡检人" prop="checkPerson">
|
||||||
|
{{ form.checkPerson }}
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="巡检时间" prop="planCheckTime">
|
||||||
|
{{ form.planCheckTime | parseTime }}
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="确认人" prop="confirmPerson">
|
||||||
|
{{ form.confirmPerson }}
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-form>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<SmallTitle>巡检内容</SmallTitle>
|
||||||
|
|
||||||
|
<div style="margin-top: 12px; position: relative">
|
||||||
|
<!-- <SearchBar
|
||||||
|
:formConfigs="searchBarFormConfig"
|
||||||
|
ref="attr-search-bar"
|
||||||
|
@headBtnClick="handleSearchBarBtnClick" /> -->
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div style="margin-top: 12px; position: relative">
|
||||||
|
<div
|
||||||
|
v-if="!disableEdit"
|
||||||
|
style="position: absolute; top: -40px; right: 0">
|
||||||
|
<el-button @click="handleAddAttr" type="text">
|
||||||
|
<i class="el-icon-plus"></i>
|
||||||
|
添加内容
|
||||||
|
</el-button>
|
||||||
|
</div>
|
||||||
|
<base-table
|
||||||
|
v-loading="attrListLoading"
|
||||||
|
:table-props="attrTableProps"
|
||||||
|
:page="attrQuery?.params.pageNo || 1"
|
||||||
|
:limit="attrQuery?.params.pageSize || 10"
|
||||||
|
:table-data="attrList"
|
||||||
|
@emitFun="handleEmitFun">
|
||||||
|
<method-btn
|
||||||
|
slot="handleBtn"
|
||||||
|
label="操作"
|
||||||
|
v-if="!disableEdit"
|
||||||
|
:method-list="tableBtn"
|
||||||
|
@clickBtn="handleTableBtnClick" />
|
||||||
|
</base-table>
|
||||||
|
|
||||||
|
<!-- 分页组件 -->
|
||||||
|
<pagination
|
||||||
|
v-show="attrTotal > 0"
|
||||||
|
:total="attrTotal"
|
||||||
|
:page.sync="attrQuery.params.pageNo"
|
||||||
|
:limit.sync="attrQuery.params.pageSize"
|
||||||
|
@pagination="getAttrList" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="drawer-body__footer">
|
||||||
|
<el-button style="" @click="handleCancel">
|
||||||
|
{{ disableEdit ? '返回' : '取消' }}
|
||||||
|
</el-button>
|
||||||
|
<el-button
|
||||||
|
v-if="!disableEdit"
|
||||||
|
type="primary"
|
||||||
|
:loading="btnLoading"
|
||||||
|
@click="handleConfirm">
|
||||||
|
保存
|
||||||
|
</el-button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- 属性对话框 -->
|
||||||
|
<base-dialog
|
||||||
|
:dialogTitle="attrTitle"
|
||||||
|
:dialogVisible="attrFormVisible"
|
||||||
|
width="35%"
|
||||||
|
:append-to-body="true"
|
||||||
|
custom-class="baseDialog"
|
||||||
|
@close="closeAttrForm"
|
||||||
|
@cancel="closeAttrForm"
|
||||||
|
@confirm="submitAttrForm">
|
||||||
|
<DialogForm
|
||||||
|
v-if="attrFormVisible"
|
||||||
|
ref="attrForm"
|
||||||
|
v-model="attrForm"
|
||||||
|
:rows="attrRows" />
|
||||||
|
</base-dialog>
|
||||||
|
</el-drawer>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { parseTime } from '../../core/mixins/code-filter';
|
||||||
|
import DialogForm from '../../../components/DialogForm/index.vue';
|
||||||
|
|
||||||
|
const SmallTitle = {
|
||||||
|
name: 'SmallTitle',
|
||||||
|
props: ['size'],
|
||||||
|
components: {},
|
||||||
|
data() {
|
||||||
|
return {};
|
||||||
|
},
|
||||||
|
methods: {},
|
||||||
|
render: function (h) {
|
||||||
|
return h(
|
||||||
|
'span',
|
||||||
|
{
|
||||||
|
class: 'small-title',
|
||||||
|
style: {
|
||||||
|
fontSize: '18px',
|
||||||
|
lineHeight:
|
||||||
|
this.size == 'lg' ? '24px' : this.size == 'sm' ? '18px' : '20px',
|
||||||
|
fontWeight: 500,
|
||||||
|
fontFamily: '微软雅黑, Microsoft YaHei, Arial, Helvetica, sans-serif',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
this.$slots.default
|
||||||
|
);
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: { SmallTitle, DialogForm },
|
||||||
|
props: ['dataId'], // dataId 作为一个通用的存放id的字段
|
||||||
|
filters: { parseTime },
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
visible: false,
|
||||||
|
btnLoading: false,
|
||||||
|
form: {},
|
||||||
|
formLoading: false,
|
||||||
|
departmentList: [],
|
||||||
|
inspectorOptions: [],
|
||||||
|
attrTableProps: [
|
||||||
|
{
|
||||||
|
prop: 'equipmentName',
|
||||||
|
label: '设备名称',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'program',
|
||||||
|
label: '巡检项目',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'checkResult',
|
||||||
|
label: '巡检结果',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
attrList: [],
|
||||||
|
attrTotal: 0,
|
||||||
|
attrTitle: '',
|
||||||
|
attrForm: {
|
||||||
|
id: null,
|
||||||
|
orderId: null,
|
||||||
|
program: null,
|
||||||
|
checkResult: null,
|
||||||
|
equipmentId: null,
|
||||||
|
},
|
||||||
|
attrFormVisible: false,
|
||||||
|
attrRows: [
|
||||||
|
[
|
||||||
|
{
|
||||||
|
select: true,
|
||||||
|
label: '设备名称',
|
||||||
|
prop: 'equipmentId',
|
||||||
|
url: '/base/core-equipment/page?pageNo=1&pageSize=100&special=true',
|
||||||
|
rules: [
|
||||||
|
{ required: true, message: '设备不能为空', trigger: 'blur' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
input: true,
|
||||||
|
label: '巡检项目',
|
||||||
|
prop: 'program',
|
||||||
|
rules: [
|
||||||
|
{ required: true, message: '巡检项目不能为空', trigger: 'blur' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
input: true,
|
||||||
|
label: '巡检结果',
|
||||||
|
prop: 'checkResult',
|
||||||
|
rules: [
|
||||||
|
{ required: true, message: '巡检结果不能为空', trigger: 'blur' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
],
|
||||||
|
attrQuery: {
|
||||||
|
params: {
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
equipmentName: null,
|
||||||
|
},
|
||||||
|
}, // 属性列表的请求
|
||||||
|
searchBarFormConfig: [
|
||||||
|
{
|
||||||
|
type: 'input',
|
||||||
|
label: '设备',
|
||||||
|
placeholder: '请输入设备名称',
|
||||||
|
param: 'equipmentName',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'button',
|
||||||
|
btnName: '查询',
|
||||||
|
name: 'search',
|
||||||
|
color: 'primary',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
attrFormSubmitting: false,
|
||||||
|
attrListLoading: false,
|
||||||
|
// syncFileListFlag: null,
|
||||||
|
tableBtn: [
|
||||||
|
{
|
||||||
|
type: 'edit',
|
||||||
|
btnName: '编辑',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'delete',
|
||||||
|
btnName: '删除',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
row: null,
|
||||||
|
groupOptions: [],
|
||||||
|
disableEdit: false,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
departmentOptions() {
|
||||||
|
return (this.departmentList || []).map((item) => ({
|
||||||
|
id: item.id,
|
||||||
|
label: item.name,
|
||||||
|
value: item.id,
|
||||||
|
}));
|
||||||
|
},
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
// this.formLoading = true;
|
||||||
|
// this.getList('department');
|
||||||
|
// this.getList('groupClass');
|
||||||
|
// this.getList('inspector');
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
handleSearchBarBtnClick(btn) {
|
||||||
|
switch (btn.btnName) {
|
||||||
|
case 'search':
|
||||||
|
this.attrQuery.params.equipmentName = btn.equipmentName;
|
||||||
|
this.getAttrList();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
handleTableBtnClick({ type, data }) {
|
||||||
|
switch (type) {
|
||||||
|
case 'edit':
|
||||||
|
this.handleEditAttr(data.id);
|
||||||
|
break;
|
||||||
|
case 'delete':
|
||||||
|
this.handleDeleteAttr(data.id);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
async handleConfirm() {
|
||||||
|
this.btnLoading = true;
|
||||||
|
this.$nextTick(async () => {
|
||||||
|
const { code, data } = await this.$axios({
|
||||||
|
url: '/base/equipment-check-order/update',
|
||||||
|
method: 'put',
|
||||||
|
data: {
|
||||||
|
...this.form,
|
||||||
|
groupClass: this.form.groupClass.join(','),
|
||||||
|
checkPerson: this.form.checkPerson.join(','),
|
||||||
|
},
|
||||||
|
});
|
||||||
|
if (code == 0) {
|
||||||
|
this.$modal.msgSuccess('更新成功');
|
||||||
|
}
|
||||||
|
this.btnLoading = false;
|
||||||
|
this.$emit('refreshDataList');
|
||||||
|
this.handleCancel();
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
handleEmitFun(val) {
|
||||||
|
console.log('handleEmitFun', val);
|
||||||
|
},
|
||||||
|
|
||||||
|
init(row, detail) {
|
||||||
|
if (detail) this.disableEdit = true;
|
||||||
|
this.visible = true;
|
||||||
|
this.row = row;
|
||||||
|
this.getInfo(row);
|
||||||
|
this.getAttrList(row);
|
||||||
|
},
|
||||||
|
|
||||||
|
async getInfo(row) {
|
||||||
|
const res = await this.$axios(
|
||||||
|
'/base/equipment-check-order/get?id=' + row.id
|
||||||
|
);
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.form = res.data;
|
||||||
|
// this.form.groupClass = res.data.groupClass.split(',');
|
||||||
|
// this.form.checkPerson = res.data.checkPerson?.split(',');
|
||||||
|
this.formLoading = false;
|
||||||
|
}
|
||||||
|
this.formLoading = false;
|
||||||
|
},
|
||||||
|
|
||||||
|
async getAttrList(row, condition = {}) {
|
||||||
|
if (!row) row = this.row;
|
||||||
|
this.attrListLoading = true;
|
||||||
|
const res = await this.$axios({
|
||||||
|
url: '/base/equipment-check-order-det/page',
|
||||||
|
method: 'get',
|
||||||
|
params: {
|
||||||
|
...this.attrQuery.params,
|
||||||
|
orderId: row.id,
|
||||||
|
...condition,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.attrList = res.data.list;
|
||||||
|
this.attrTotal = res.data.total;
|
||||||
|
}
|
||||||
|
this.attrListLoading = false;
|
||||||
|
},
|
||||||
|
|
||||||
|
async getList(source = 'department') {
|
||||||
|
const urls = [
|
||||||
|
'/base/core-department/listAll',
|
||||||
|
'/base/group-classes/listAll',
|
||||||
|
];
|
||||||
|
let res;
|
||||||
|
switch (source) {
|
||||||
|
case 'department':
|
||||||
|
res = await this.$axios(urls[0]);
|
||||||
|
this.departmentList = res.data || [];
|
||||||
|
break;
|
||||||
|
case 'inspector':
|
||||||
|
let inspectorList = [];
|
||||||
|
const userlist = await this.$axios({
|
||||||
|
url: '/system/user/page',
|
||||||
|
params: { pageNo: 1, pageSize: 100 },
|
||||||
|
});
|
||||||
|
if (userlist.code == 0) {
|
||||||
|
inspectorList = inspectorList.concat(
|
||||||
|
(userlist.data?.list || []).map((item) => ({
|
||||||
|
label: item.username,
|
||||||
|
value: item.id,
|
||||||
|
}))
|
||||||
|
);
|
||||||
|
}
|
||||||
|
const workerlist = await this.$axios('/base/core-worker/listAll');
|
||||||
|
if (workerlist.code == 0) {
|
||||||
|
inspectorList = inspectorList.concat(
|
||||||
|
workerlist.data.map((item) => ({
|
||||||
|
label: item.name,
|
||||||
|
value: item.id,
|
||||||
|
}))
|
||||||
|
);
|
||||||
|
}
|
||||||
|
this.inspectorOptions = inspectorList;
|
||||||
|
break;
|
||||||
|
case 'groupClass':
|
||||||
|
res = await this.$axios(urls[1]);
|
||||||
|
this.groupOptions = (res.data || []).map((item) => ({
|
||||||
|
label: item.name,
|
||||||
|
value: item.id,
|
||||||
|
}));
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
this.formLoading = false;
|
||||||
|
},
|
||||||
|
|
||||||
|
// 保存表单
|
||||||
|
handleSave() {
|
||||||
|
this.$refs.form.validate(async (valid) => {
|
||||||
|
if (valid) {
|
||||||
|
await this.$axios({
|
||||||
|
url: '/urlupdate', // this.sections[0][isEdit ? 'urlUpdate' : 'urlCreate'],
|
||||||
|
method: 'post', // isEdit ? 'put' : 'post',
|
||||||
|
data: this.form,
|
||||||
|
});
|
||||||
|
this.$modal.msgSuccess(`${isEdit ? '更新' : '创建'}成功`);
|
||||||
|
this.visible = false;
|
||||||
|
this.$emit('refreshDataList');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
handleCancel() {
|
||||||
|
this.visible = false;
|
||||||
|
},
|
||||||
|
|
||||||
|
resetAttrform() {
|
||||||
|
this.attrForm = {
|
||||||
|
id: null,
|
||||||
|
orderId: null,
|
||||||
|
equipmentId: null,
|
||||||
|
program: null,
|
||||||
|
checkResult: null,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
|
// 新增属性
|
||||||
|
handleAddAttr() {
|
||||||
|
if (!this.row.id) return this.$message.error('请先选中保养记录');
|
||||||
|
this.resetAttrform();
|
||||||
|
this.attrTitle = '添加设备属性';
|
||||||
|
this.attrFormVisible = true;
|
||||||
|
},
|
||||||
|
|
||||||
|
// 编辑属性
|
||||||
|
async handleEditAttr(attrId) {
|
||||||
|
const res = await this.$axios({
|
||||||
|
url: '/base/equipment-check-order-det/get',
|
||||||
|
method: 'get',
|
||||||
|
params: { id: attrId },
|
||||||
|
});
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.attrForm = res.data;
|
||||||
|
this.attrTitle = '编辑巡检单详情';
|
||||||
|
this.attrFormVisible = true;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// 删除属性
|
||||||
|
handleDeleteAttr(attrId) {
|
||||||
|
this.$confirm('确定删除该巡检内容?', '提示', {
|
||||||
|
confirmButtonText: '确定',
|
||||||
|
cancelButtonText: '取消',
|
||||||
|
type: 'warning',
|
||||||
|
})
|
||||||
|
.then(async () => {
|
||||||
|
const res = await this.$axios({
|
||||||
|
url: '/base/equipment-check-order-det/delete?id=' + attrId,
|
||||||
|
method: 'delete',
|
||||||
|
});
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.$message({
|
||||||
|
message: '删除成功',
|
||||||
|
type: 'success',
|
||||||
|
duration: 1500,
|
||||||
|
onClose: () => {
|
||||||
|
this.getAttrList();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(() => {});
|
||||||
|
},
|
||||||
|
|
||||||
|
// 提交属性表
|
||||||
|
submitAttrForm() {
|
||||||
|
this.$refs['attrForm'].validate(async (valid) => {
|
||||||
|
if (!valid) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
const isEdit = this.attrForm.id != null;
|
||||||
|
this.attrFormSubmitting = true;
|
||||||
|
const res = await this.$axios({
|
||||||
|
url: isEdit
|
||||||
|
? '/base/equipment-check-order-det/update'
|
||||||
|
: '/base/equipment-check-order-det/create',
|
||||||
|
method: isEdit ? 'put' : 'post',
|
||||||
|
data: { ...this.attrForm, orderId: this.row.id },
|
||||||
|
});
|
||||||
|
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.closeAttrForm();
|
||||||
|
this.$message({
|
||||||
|
message: `${isEdit ? '更新' : '创建'}成功`,
|
||||||
|
type: 'success',
|
||||||
|
duration: 1500,
|
||||||
|
onClose: () => {
|
||||||
|
this.getAttrList();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
this.attrFormSubmitting = false;
|
||||||
|
} catch (err) {
|
||||||
|
this.$message({
|
||||||
|
message: err,
|
||||||
|
type: 'error',
|
||||||
|
duration: 1500,
|
||||||
|
});
|
||||||
|
this.attrFormSubmitting = false;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
closeAttrForm() {
|
||||||
|
this.attrFormVisible = false;
|
||||||
|
},
|
||||||
|
|
||||||
|
handleClick(raw) {
|
||||||
|
if (raw.type === 'delete') {
|
||||||
|
this.$confirm(
|
||||||
|
`确定对${
|
||||||
|
raw.data.name
|
||||||
|
? '[名称=' + raw.data.name + ']'
|
||||||
|
: '[序号=' + raw.data._pageIndex + ']'
|
||||||
|
}进行删除操作?`,
|
||||||
|
'提示',
|
||||||
|
{
|
||||||
|
confirmButtonText: '确定',
|
||||||
|
cancelButtonText: '取消',
|
||||||
|
type: 'warning',
|
||||||
|
}
|
||||||
|
)
|
||||||
|
.then(() => {
|
||||||
|
deleteProductAttr(raw.data.id).then(({ data }) => {
|
||||||
|
this.$message({
|
||||||
|
message: '操作成功',
|
||||||
|
type: 'success',
|
||||||
|
duration: 1500,
|
||||||
|
onClose: () => {
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
});
|
||||||
|
})
|
||||||
|
.catch(() => {});
|
||||||
|
} else {
|
||||||
|
this.addNew(raw.data.id);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.drawer >>> .el-drawer {
|
||||||
|
border-radius: 8px 0 0 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer >>> .el-date-editor,
|
||||||
|
.drawer >>> .el-select {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer >>> .el-drawer__header {
|
||||||
|
margin: 0;
|
||||||
|
padding: 32px 32px 24px;
|
||||||
|
border-bottom: 1px solid #dcdfe6;
|
||||||
|
margin-bottom: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.small-title::before {
|
||||||
|
content: '';
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: top;
|
||||||
|
width: 4px;
|
||||||
|
height: 22px;
|
||||||
|
border-radius: 1px;
|
||||||
|
margin-right: 8px;
|
||||||
|
background-color: #0b58ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer-body {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer-body__content {
|
||||||
|
flex: 1;
|
||||||
|
/* background: #eee; */
|
||||||
|
padding: 20px 30px;
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer-body__footer {
|
||||||
|
display: flex;
|
||||||
|
justify-content: flex-end;
|
||||||
|
padding: 18px;
|
||||||
|
}
|
||||||
|
</style>
|
@ -11,7 +11,6 @@
|
|||||||
<SearchBar
|
<SearchBar
|
||||||
:formConfigs="searchBarFormConfig"
|
:formConfigs="searchBarFormConfig"
|
||||||
ref="search-bar"
|
ref="search-bar"
|
||||||
@select-changed="handleSearchBarChange"
|
|
||||||
@headBtnClick="handleSearchBarBtnClick" />
|
@headBtnClick="handleSearchBarBtnClick" />
|
||||||
|
|
||||||
<!-- 列表 -->
|
<!-- 列表 -->
|
||||||
@ -25,7 +24,7 @@
|
|||||||
v-if="tableBtn.length"
|
v-if="tableBtn.length"
|
||||||
slot="handleBtn"
|
slot="handleBtn"
|
||||||
label="操作"
|
label="操作"
|
||||||
:width="120"
|
:width="70"
|
||||||
:method-list="tableBtn"
|
:method-list="tableBtn"
|
||||||
@clickBtn="handleTableBtnClick" />
|
@clickBtn="handleTableBtnClick" />
|
||||||
</base-table>
|
</base-table>
|
||||||
@ -38,49 +37,28 @@
|
|||||||
:limit.sync="queryParams.pageSize"
|
:limit.sync="queryParams.pageSize"
|
||||||
@pagination="getList" />
|
@pagination="getList" />
|
||||||
|
|
||||||
<!-- 对话框(添加 / 修改) -->
|
<RecordDetail
|
||||||
<base-dialog
|
ref="record-detail"
|
||||||
:dialogTitle="title"
|
v-if="detailOpen"
|
||||||
:dialogVisible="open"
|
|
||||||
@close="cancel"
|
|
||||||
@cancel="cancel"
|
|
||||||
@confirm="submitForm">
|
|
||||||
<DialogForm
|
|
||||||
v-if="open"
|
|
||||||
ref="form"
|
|
||||||
v-model="form"
|
|
||||||
:disabled="mode == 'detail'"
|
|
||||||
:has-files="true"
|
|
||||||
:rows="rows" />
|
|
||||||
</base-dialog>
|
|
||||||
|
|
||||||
<addRecord
|
|
||||||
v-if="addOrUpdateVisible"
|
|
||||||
ref="addOrUpdate"
|
|
||||||
@refreshDataList="getList"
|
@refreshDataList="getList"
|
||||||
@destroy="addOrUpdateVisible = false" />
|
@destroy="detailOpen = false" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import moment from 'moment';
|
|
||||||
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
||||||
import addRecord from './Record-add.vue';
|
|
||||||
import {
|
|
||||||
exportCheckLogExcel,
|
|
||||||
deleteEqCheckLog,
|
|
||||||
} from '@/api/equipment/base/inspection/record';
|
|
||||||
import { parseTime } from '../../core/mixins/code-filter';
|
import { parseTime } from '../../core/mixins/code-filter';
|
||||||
|
import RecordDetail from './Record-detail.vue';
|
||||||
|
|
||||||
const timeFilter = (val) => moment(val).format('yyyy-MM-DD HH:mm:ss');
|
|
||||||
export default {
|
export default {
|
||||||
name: 'SpecialEquipmentCheckRecord',
|
name: 'SpecialEquipmentCheckRecord',
|
||||||
components: { addRecord },
|
components: { RecordDetail },
|
||||||
mixins: [basicPageMixin],
|
mixins: [basicPageMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
detailOpen: false,
|
||||||
addOrUpdateVisible: false,
|
addOrUpdateVisible: false,
|
||||||
searchBarKeys: ['equipmentId', 'actualTime', 'specialType'],
|
searchBarKeys: ['name', 'actualCheckTime'],
|
||||||
tableBtn: [
|
tableBtn: [
|
||||||
this.$auth.hasPermi('equipment:check-record:detail')
|
this.$auth.hasPermi('equipment:check-record:detail')
|
||||||
? {
|
? {
|
||||||
@ -88,57 +66,83 @@ export default {
|
|||||||
btnName: '详情',
|
btnName: '详情',
|
||||||
}
|
}
|
||||||
: undefined,
|
: undefined,
|
||||||
this.$auth.hasPermi('equipment:check-record:update')
|
// this.$auth.hasPermi('equipment:check-record:update')
|
||||||
? {
|
// ? {
|
||||||
type: 'edit',
|
// type: 'edit',
|
||||||
btnName: '修改',
|
// btnName: '修改',
|
||||||
}
|
// }
|
||||||
: undefined,
|
// : undefined,
|
||||||
this.$auth.hasPermi('equipment:check-record:delete')
|
// this.$auth.hasPermi('equipment:check-record:delete')
|
||||||
? {
|
// ? {
|
||||||
type: 'delete',
|
// type: 'delete',
|
||||||
btnName: '删除',
|
// btnName: '删除',
|
||||||
}
|
// }
|
||||||
: undefined,
|
// : undefined,
|
||||||
].filter((v) => v),
|
].filter((v) => v),
|
||||||
tableProps: [
|
tableProps: [
|
||||||
{ prop: 'configName', label: '配置名称' },
|
{ prop: 'name', label: '巡检单名称' },
|
||||||
{ prop: 'equipmentName', label: '设备名称' },
|
{ prop: 'department', label: '部门' },
|
||||||
{
|
{ prop: 'actualCheckTime', label: '巡检时间', filter: parseTime },
|
||||||
prop: 'origin',
|
{ prop: 'groupClass', label: '班次' },
|
||||||
label: '数据来源',
|
// {
|
||||||
filter: (val) => ['', '手动', 'PDA'][val],
|
// prop: '_detail',
|
||||||
},
|
// label: '巡检内容',
|
||||||
// { prop: 'sectionName', label: '计划巡检时间' },
|
// subcomponent: {
|
||||||
{ prop: 'actualTime', label: '实际巡检时间', filter: parseTime },
|
// name: 'ViewDetail',
|
||||||
// { prop: 'maintenanceDetail', label: '完成状态' },
|
// props: ['injectData'],
|
||||||
{ prop: 'responsible', label: '巡检人' },
|
// data() {
|
||||||
|
// return {};
|
||||||
|
// },
|
||||||
|
// methods: {
|
||||||
|
// handleClick() {
|
||||||
|
// this.$emit('emitData', {
|
||||||
|
// action: this.injectData.label,
|
||||||
|
// value: this.injectData,
|
||||||
|
// });
|
||||||
|
// },
|
||||||
|
// },
|
||||||
|
// render: function (h) {
|
||||||
|
// return (
|
||||||
|
// <el-button type="text" onClick={this.handleClick}>
|
||||||
|
// 详情
|
||||||
|
// </el-button>
|
||||||
|
// );
|
||||||
|
// },
|
||||||
|
// },
|
||||||
|
// },
|
||||||
|
{ prop: 'remark', label: '备注' },
|
||||||
],
|
],
|
||||||
searchBarFormConfig: [
|
searchBarFormConfig: [
|
||||||
|
// {
|
||||||
|
// type: 'select',
|
||||||
|
// label: '设备大类',
|
||||||
|
// placeholder: '请选择设备大类',
|
||||||
|
// param: 'specialType',
|
||||||
|
// onchange: true,
|
||||||
|
// selectOptions: [
|
||||||
|
// { id: 1, name: '安全设备' },
|
||||||
|
// { id: 2, name: '消防设备' },
|
||||||
|
// { id: 3, name: '特种设备' },
|
||||||
|
// ],
|
||||||
|
// filterable: true,
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// type: 'select',
|
||||||
|
// label: '设备',
|
||||||
|
// placeholder: '请选择设备',
|
||||||
|
// param: 'equipmentId',
|
||||||
|
// filterable: true,
|
||||||
|
// },
|
||||||
{
|
{
|
||||||
type: 'select',
|
type: 'input',
|
||||||
label: '设备大类',
|
label: '巡检单名称',
|
||||||
placeholder: '请选择设备大类',
|
placeholder: '请输入巡检单名称',
|
||||||
param: 'specialType',
|
param: 'name',
|
||||||
onchange: true,
|
|
||||||
selectOptions: [
|
|
||||||
{ id: 1, name: '安全设备' },
|
|
||||||
{ id: 2, name: '消防设备' },
|
|
||||||
{ id: 3, name: '特种设备' },
|
|
||||||
],
|
|
||||||
filterable: true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: 'select',
|
|
||||||
label: '设备',
|
|
||||||
placeholder: '请选择设备',
|
|
||||||
param: 'equipmentId',
|
|
||||||
filterable: true,
|
|
||||||
},
|
},
|
||||||
// 开始结束时间
|
// 开始结束时间
|
||||||
{
|
{
|
||||||
type: 'datePicker',
|
type: 'datePicker',
|
||||||
label: '时间段',
|
label: '巡检时间',
|
||||||
dateType: 'daterange', // datetimerange
|
dateType: 'daterange', // datetimerange
|
||||||
format: 'yyyy-MM-dd',
|
format: 'yyyy-MM-dd',
|
||||||
valueFormat: 'yyyy-MM-dd HH:mm:ss',
|
valueFormat: 'yyyy-MM-dd HH:mm:ss',
|
||||||
@ -146,7 +150,7 @@ export default {
|
|||||||
startPlaceholder: '开始日期',
|
startPlaceholder: '开始日期',
|
||||||
endPlaceholder: '结束日期',
|
endPlaceholder: '结束日期',
|
||||||
defaultTime: ['00:00:00', '23:59:59'],
|
defaultTime: ['00:00:00', '23:59:59'],
|
||||||
param: 'actualTime',
|
param: 'actualCheckTime',
|
||||||
// width: 350,
|
// width: 350,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -167,137 +171,35 @@ export default {
|
|||||||
plain: true,
|
plain: true,
|
||||||
color: 'primary',
|
color: 'primary',
|
||||||
},
|
},
|
||||||
{
|
// {
|
||||||
type: this.$auth.hasPermi('equipment:check-record:create')
|
// type: this.$auth.hasPermi('equipment:check-record:create')
|
||||||
? 'button'
|
// ? 'button'
|
||||||
: '',
|
// : '',
|
||||||
btnName: '新增',
|
// btnName: '新增',
|
||||||
name: 'add',
|
// name: 'add',
|
||||||
plain: true,
|
// plain: true,
|
||||||
},
|
// },
|
||||||
],
|
|
||||||
rows: [
|
|
||||||
[
|
|
||||||
{
|
|
||||||
input: true,
|
|
||||||
label: '维修单号',
|
|
||||||
prop: 'repairOrderNumber',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
select: true,
|
|
||||||
label: '设备名称',
|
|
||||||
prop: 'equipmentId',
|
|
||||||
url: '/base/core-equipment/listAll',
|
|
||||||
bind: {
|
|
||||||
filterable: true,
|
|
||||||
clearable: true,
|
|
||||||
},
|
|
||||||
rules: [
|
|
||||||
{ required: true, message: '设备名称不能为空', trigger: 'blur' },
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
[
|
|
||||||
{
|
|
||||||
// TODO: 和班组联动
|
|
||||||
select: true,
|
|
||||||
label: '维修工',
|
|
||||||
prop: 'repairman',
|
|
||||||
// url: '/base/core-equipment/listAll',
|
|
||||||
bind: {
|
|
||||||
filterable: true,
|
|
||||||
clearable: true,
|
|
||||||
multiple: true,
|
|
||||||
},
|
|
||||||
rules: [
|
|
||||||
{ required: true, message: '维修工不能为空', trigger: 'blur' },
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
input: true,
|
|
||||||
label: '联系方式',
|
|
||||||
prop: 'repairmanPhone',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
[
|
|
||||||
{
|
|
||||||
datetime: true,
|
|
||||||
label: '故障发生时间',
|
|
||||||
prop: 'faultTime',
|
|
||||||
rules: [
|
|
||||||
{
|
|
||||||
required: true,
|
|
||||||
message: '故障发生时间不能为空',
|
|
||||||
trigger: 'blur',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
bind: {
|
|
||||||
format: 'yyyy-MM-dd HH:mm:ss',
|
|
||||||
'value-format': 'timestamp',
|
|
||||||
// 'value-format': 'yyyy-MM-dd HH:mm:ss',
|
|
||||||
clearable: true,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
select: true,
|
|
||||||
label: '故障级别',
|
|
||||||
prop: 'faultLevel', // 数据字典
|
|
||||||
options: this.getDictDatas(this.DICT_TYPE.FAULT_LEVEL),
|
|
||||||
},
|
|
||||||
],
|
|
||||||
],
|
],
|
||||||
|
|
||||||
// 是否显示弹出层
|
// 是否显示弹出层
|
||||||
open: false,
|
open: false,
|
||||||
// 查询参数
|
// 查询参数
|
||||||
queryParams: {
|
queryParams: {
|
||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
pageSize: 10,
|
pageSize: 10,
|
||||||
maintenanceStatus: null,
|
|
||||||
createTime: null,
|
|
||||||
equipmentId: null,
|
|
||||||
special: true,
|
special: true,
|
||||||
specialType: null,
|
status: 2,
|
||||||
},
|
},
|
||||||
// 表单参数
|
// 表单参数
|
||||||
form: {},
|
form: {},
|
||||||
basePath: '/base/equipment-check-log',
|
basePath: '/base/equipment-check-order',
|
||||||
mode: null,
|
mode: null,
|
||||||
allSpecialEquipments: [],
|
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
this.initSearchBar();
|
|
||||||
this.getList();
|
this.getList();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
initSearchBar() {
|
|
||||||
this.http('/base/core-equipment/listAll', 'get').then(({ data }) => {
|
|
||||||
this.allSpecialEquipments = data.filter((item) => item.special);
|
|
||||||
this.setSearchBarEquipmentList(data.filter((item) => item.special));
|
|
||||||
});
|
|
||||||
},
|
|
||||||
// 设备大类改变
|
|
||||||
handleSearchBarChange({ param, value }) {
|
|
||||||
if ('specialType' === param) {
|
|
||||||
if (!value) {
|
|
||||||
this.setSearchBarEquipmentList(this.allSpecialEquipments);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
this.setSearchBarEquipmentList(
|
|
||||||
this.allSpecialEquipments.filter((item) => item.specialType == value)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
setSearchBarEquipmentList(eqList) {
|
|
||||||
this.$set(
|
|
||||||
this.searchBarFormConfig[1],
|
|
||||||
'selectOptions',
|
|
||||||
eqList.map((item) => ({
|
|
||||||
name: item.name,
|
|
||||||
id: item.id,
|
|
||||||
}))
|
|
||||||
);
|
|
||||||
},
|
|
||||||
/** 查询列表 */
|
/** 查询列表 */
|
||||||
getList() {
|
getList() {
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
@ -312,128 +214,44 @@ export default {
|
|||||||
cancel() {
|
cancel() {
|
||||||
this.open = false;
|
this.open = false;
|
||||||
this.mode = null;
|
this.mode = null;
|
||||||
this.reset();
|
|
||||||
},
|
|
||||||
/** 表单重置 */
|
|
||||||
reset() {
|
|
||||||
this.form = {
|
|
||||||
id: null,
|
|
||||||
repairOrderNumber: null,
|
|
||||||
equipmentId: null,
|
|
||||||
repairman: null,
|
|
||||||
repairmanPhone: null,
|
|
||||||
faultTime: null,
|
|
||||||
faultLevel: null,
|
|
||||||
maintenanceStartTime: null,
|
|
||||||
maintenanceFinishTime: null,
|
|
||||||
faultType: null,
|
|
||||||
repairMode: null,
|
|
||||||
maintenanceStatus: null,
|
|
||||||
faultDetail: null,
|
|
||||||
maintenanceDetail: null,
|
|
||||||
remark: null,
|
|
||||||
files: [
|
|
||||||
// {
|
|
||||||
// fileName: '',
|
|
||||||
// fileType: '',
|
|
||||||
// fileUrl: '',
|
|
||||||
// },
|
|
||||||
],
|
|
||||||
};
|
|
||||||
this.resetForm('form');
|
|
||||||
},
|
},
|
||||||
/** 搜索按钮操作 */
|
/** 搜索按钮操作 */
|
||||||
handleQuery() {
|
handleQuery() {
|
||||||
this.queryParams.pageNo = 1;
|
this.queryParams.pageNo = 1;
|
||||||
this.getList();
|
this.getList();
|
||||||
},
|
},
|
||||||
/** 重置按钮操作 */
|
|
||||||
resetQuery() {
|
handleDetail(row) {
|
||||||
this.resetForm('queryForm');
|
this.detailOpen = true;
|
||||||
this.handleQuery();
|
|
||||||
},
|
|
||||||
/** 新增按钮操作 */
|
|
||||||
handleAdd() {
|
|
||||||
// this.reset();
|
|
||||||
// this.open = true;
|
|
||||||
// this.title = '添加维修记录';
|
|
||||||
this.addOrUpdateVisible = true;
|
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.$refs.addOrUpdate.init();
|
this.$refs['record-detail'].init(row, true);
|
||||||
});
|
|
||||||
},
|
|
||||||
/** 修改按钮操作 */
|
|
||||||
handleUpdate(row) {
|
|
||||||
// this.reset();
|
|
||||||
// const id = row.id;
|
|
||||||
// this.info({ id }).then((response) => {
|
|
||||||
// this.form = response.data;
|
|
||||||
// this.open = true;
|
|
||||||
// this.title = '修改维修记录';
|
|
||||||
// });
|
|
||||||
this.addOrUpdateVisible = true;
|
|
||||||
this.$nextTick(() => {
|
|
||||||
this.$refs.addOrUpdate.init(row.id);
|
|
||||||
});
|
|
||||||
},
|
|
||||||
/** 提交按钮 */
|
|
||||||
submitForm() {
|
|
||||||
this.$refs['form'].validate((valid) => {
|
|
||||||
if (!valid) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
// 修改的提交
|
|
||||||
if (this.form.id != null) {
|
|
||||||
this.put(this.form).then((response) => {
|
|
||||||
this.$modal.msgSuccess('修改成功');
|
|
||||||
this.open = false;
|
|
||||||
this.getList();
|
|
||||||
});
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
// 添加的提交
|
|
||||||
this.post(this.form).then((response) => {
|
|
||||||
this.$modal.msgSuccess('新增成功');
|
|
||||||
this.open = false;
|
|
||||||
this.getList();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
},
|
|
||||||
/** 删除按钮操作 */
|
|
||||||
handleDelete(row) {
|
|
||||||
const id = row.id;
|
|
||||||
this.$modal
|
|
||||||
.confirm(
|
|
||||||
'是否删除设备巡检记录配置名称为"' + row.configName + '"的数据项?'
|
|
||||||
)
|
|
||||||
.then(function () {
|
|
||||||
return deleteEqCheckLog(id);
|
|
||||||
})
|
|
||||||
.then(() => {
|
|
||||||
this.getList();
|
|
||||||
this.$modal.msgSuccess('删除成功');
|
|
||||||
})
|
|
||||||
.catch(() => {});
|
|
||||||
},
|
|
||||||
handleDetail({ id }) {
|
|
||||||
this.addOrUpdateVisible = true;
|
|
||||||
this.$nextTick(() => {
|
|
||||||
this.$refs.addOrUpdate.init(id, true);
|
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
/** 导出按钮操作 */
|
/** 导出按钮操作 */
|
||||||
handleExport() {
|
handleExport() {
|
||||||
// 处理查询参数
|
|
||||||
let params = { ...this.queryParams };
|
|
||||||
params.pageNo = undefined;
|
|
||||||
params.pageSize = undefined;
|
|
||||||
this.$modal
|
this.$modal
|
||||||
.confirm('是否确认导出所有设备巡检记录?')
|
.confirm('是否确认导出所有设备巡检记录?')
|
||||||
.then(() => {
|
.then(() => {
|
||||||
this.exportLoading = true;
|
this.exportLoading = true;
|
||||||
return exportCheckLogExcel(params);
|
return this.$axios({
|
||||||
|
url: '/base/equipment-check-order/export-excel',
|
||||||
|
params: {
|
||||||
|
name: this.queryParams.name,
|
||||||
|
status: 2,
|
||||||
|
special: true,
|
||||||
|
},
|
||||||
|
responseType: 'blob',
|
||||||
|
});
|
||||||
})
|
})
|
||||||
.then((response) => {
|
.then((response) => {
|
||||||
|
// const link = document.createElement('a');
|
||||||
|
// link.href = window.URL.createObjectURL(new Blob([response]));
|
||||||
|
// link.download = '设备巡检记录.xls';
|
||||||
|
// document.body.appendChild(link);
|
||||||
|
// link.click();
|
||||||
|
// document.body.removeChild(link);
|
||||||
|
// window.URL.revokeObjectURL(link.href);
|
||||||
this.$download.excel(response, '设备巡检记录.xls');
|
this.$download.excel(response, '设备巡检记录.xls');
|
||||||
this.exportLoading = false;
|
this.exportLoading = false;
|
||||||
})
|
})
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<!--
|
<!--
|
||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2021-11-18 14:16:25
|
* @Date: 2021-11-18 14:16:25
|
||||||
* @LastEditors: DY
|
* @LastEditors: lb
|
||||||
* @LastEditTime: 2023-12-01 11:02:43
|
* @LastEditTime: 2024-02-22 11:02:43
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -24,7 +24,7 @@
|
|||||||
@keyup.enter.native="dataFormSubmit()"
|
@keyup.enter.native="dataFormSubmit()"
|
||||||
label-position="top">
|
label-position="top">
|
||||||
<el-row :gutter="20">
|
<el-row :gutter="20">
|
||||||
<el-col :span="8">
|
<!-- <el-col :span="8">
|
||||||
<el-form-item label="设备大类" prop="equipmentCategory">
|
<el-form-item label="设备大类" prop="equipmentCategory">
|
||||||
<span>
|
<span>
|
||||||
{{
|
{{
|
||||||
@ -34,21 +34,20 @@
|
|||||||
}}
|
}}
|
||||||
</span>
|
</span>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col> -->
|
||||||
<el-col :span="8">
|
<el-col :span="8">
|
||||||
<el-form-item label="设备名称" prop="equipmentName">
|
<el-form-item label="巡检单名称" prop="name">
|
||||||
{{ dataForm.equipmentName }}
|
{{ dataForm.name }}
|
||||||
<!-- <el-input v-model="dataForm.equipmentName" disabled clearable placeholder="请输入设备名称" /> -->
|
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="8">
|
<el-col :span="8">
|
||||||
<el-form-item label="设备编码" prop="equipmentCode">
|
<el-form-item label="部门" prop="department">
|
||||||
{{ dataForm.equipmentCode }}
|
{{ dataForm.department }}
|
||||||
<!-- <el-input
|
</el-form-item>
|
||||||
v-model="dataForm.equipmentCode"
|
</el-col>
|
||||||
clearable
|
<el-col :span="8">
|
||||||
disabled
|
<el-form-item label="巡检时间" prop="planCheckTime">
|
||||||
placeholder="请输入设备编码" /> -->
|
{{ dataForm.planCheckTime | parseTime }}
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
@ -87,8 +86,8 @@
|
|||||||
@clickBtn="handleClick" />
|
@clickBtn="handleClick" />
|
||||||
</base-table>
|
</base-table>
|
||||||
<pagination
|
<pagination
|
||||||
v-show="listQuery.total > 0"
|
v-show="checkDetList.total > 0"
|
||||||
:total="listQuery.total"
|
:total="checkDetList.total"
|
||||||
:page.sync="listQuery.pageNo"
|
:page.sync="listQuery.pageNo"
|
||||||
:limit.sync="listQuery.pageSize"
|
:limit.sync="listQuery.pageSize"
|
||||||
:page-sizes="[5, 10, 15]"
|
:page-sizes="[5, 10, 15]"
|
||||||
@ -103,20 +102,17 @@
|
|||||||
<attr-add
|
<attr-add
|
||||||
v-if="addOrUpdateVisible"
|
v-if="addOrUpdateVisible"
|
||||||
ref="addOrUpdate"
|
ref="addOrUpdate"
|
||||||
:config-id="dataForm.id"
|
:orderId="dataForm.id"
|
||||||
|
@closed="addOrUpdateVisible = false"
|
||||||
@refreshDataList="getList" />
|
@refreshDataList="getList" />
|
||||||
</el-drawer>
|
</el-drawer>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import {
|
|
||||||
getEqCheck,
|
|
||||||
getCheckDetPage,
|
|
||||||
deleteCheckDet,
|
|
||||||
} from '@/api/equipment/base/inspection/settings';
|
|
||||||
import SmallTitle from './SmallTitle';
|
import SmallTitle from './SmallTitle';
|
||||||
import attrAdd from './attr-add';
|
import attrAdd from './attr-add';
|
||||||
import { DICT_TYPE, getDictDatas } from '@/utils/dict';
|
import { DICT_TYPE, getDictDatas } from '@/utils/dict';
|
||||||
|
import { parseTime } from '../../core/mixins/code-filter';
|
||||||
|
|
||||||
const tableBtn = [
|
const tableBtn = [
|
||||||
{
|
{
|
||||||
@ -129,50 +125,35 @@ const tableBtn = [
|
|||||||
},
|
},
|
||||||
];
|
];
|
||||||
const tableProps = [
|
const tableProps = [
|
||||||
|
{
|
||||||
|
prop: 'equipmentName',
|
||||||
|
label: '设备名称',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
prop: 'program',
|
prop: 'program',
|
||||||
label: '巡检项目',
|
label: '检查项目',
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'content',
|
|
||||||
label: '巡检内容',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'code',
|
|
||||||
label: '巡检内容编码',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'description',
|
|
||||||
label: '备注',
|
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: { SmallTitle, attrAdd },
|
components: { SmallTitle, attrAdd },
|
||||||
|
filters: {
|
||||||
|
parseTime,
|
||||||
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
tableBtn,
|
tableBtn,
|
||||||
tableProps,
|
tableProps,
|
||||||
addOrUpdateVisible: false,
|
addOrUpdateVisible: false,
|
||||||
urlOptions: {
|
|
||||||
infoURL: getEqCheck,
|
|
||||||
},
|
|
||||||
listQuery: {
|
listQuery: {
|
||||||
pageSize: 10,
|
pageSize: 10,
|
||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
total: 0,
|
|
||||||
},
|
},
|
||||||
dataForm: {
|
dataForm: {
|
||||||
id: undefined,
|
id: undefined,
|
||||||
code: undefined,
|
name: undefined,
|
||||||
name: '',
|
department: undefined,
|
||||||
materialType: undefined,
|
planCheckTime: undefined,
|
||||||
productType: undefined,
|
|
||||||
area: undefined,
|
|
||||||
specifications: undefined,
|
|
||||||
processTime: 0,
|
|
||||||
remark: undefined,
|
|
||||||
unit: undefined,
|
|
||||||
},
|
},
|
||||||
checkDetList: [],
|
checkDetList: [],
|
||||||
visible: false,
|
visible: false,
|
||||||
@ -204,7 +185,7 @@ export default {
|
|||||||
methods: {
|
methods: {
|
||||||
initData() {
|
initData() {
|
||||||
this.checkDetList.splice(0);
|
this.checkDetList.splice(0);
|
||||||
this.listQuery.total = 0;
|
this.checkDetList.total = 0;
|
||||||
},
|
},
|
||||||
handleClick(raw) {
|
handleClick(raw) {
|
||||||
if (raw.type === 'delete') {
|
if (raw.type === 'delete') {
|
||||||
@ -231,39 +212,35 @@ export default {
|
|||||||
})
|
})
|
||||||
.catch(() => {});
|
.catch(() => {});
|
||||||
} else {
|
} else {
|
||||||
this.addNew(raw.data.id);
|
console.log('handle click....', raw);
|
||||||
|
this.addNew(raw.data);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
getList() {
|
async getList() {
|
||||||
// 获取巡检项目分页
|
// 获取巡检项目分页
|
||||||
getCheckDetPage({
|
const res = await this.$axios({
|
||||||
...this.listQuery,
|
url: '/base/equipment-check-order-det/page',
|
||||||
configId: this.dataForm.id,
|
params: { ...this.listQuery, orderId: this.dataForm.id },
|
||||||
}).then((response) => {
|
|
||||||
this.checkDetList = response.data.list;
|
|
||||||
this.listQuery.total = response.data.total;
|
|
||||||
});
|
});
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.checkDetList = res.data.list;
|
||||||
|
this.checkDetList.total = res.data.total;
|
||||||
|
}
|
||||||
},
|
},
|
||||||
init(id, isdetail) {
|
init(row, isdetail) {
|
||||||
this.initData();
|
this.initData();
|
||||||
this.isdetail = isdetail || false;
|
this.isdetail = isdetail || false;
|
||||||
this.dataForm.id = id || undefined;
|
this.dataForm.id = row.id;
|
||||||
this.visible = true;
|
this.visible = true;
|
||||||
|
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.$refs['dataForm'].resetFields();
|
this.$refs['dataForm'].resetFields();
|
||||||
|
|
||||||
if (this.dataForm.id) {
|
if (this.dataForm.id) {
|
||||||
// 获取设备巡检详情
|
|
||||||
this.urlOptions.infoURL(id).then((response) => {
|
|
||||||
this.dataForm = response.data;
|
|
||||||
});
|
|
||||||
// 获取设备项目列表
|
// 获取设备项目列表
|
||||||
|
Object.keys(this.dataForm).forEach((key) => {
|
||||||
|
this.dataForm[key] = row[key];
|
||||||
|
});
|
||||||
this.getList();
|
this.getList();
|
||||||
} else {
|
|
||||||
if (this.urlOptions.isGetCode) {
|
|
||||||
this.getCode();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
@ -7,63 +7,81 @@
|
|||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
<el-form
|
<el-form
|
||||||
|
ref="form"
|
||||||
:model="dataForm"
|
:model="dataForm"
|
||||||
:rules="dataRule"
|
:rules="dataRule"
|
||||||
ref="dataForm"
|
|
||||||
@keyup.enter.native="dataFormSubmit()"
|
@keyup.enter.native="dataFormSubmit()"
|
||||||
label-width="80px">
|
label-width="128px"
|
||||||
|
v-loading="formLoading"
|
||||||
|
label-position="top">
|
||||||
<el-row :gutter="20">
|
<el-row :gutter="20">
|
||||||
<el-col :span="12">
|
<el-col>
|
||||||
<el-form-item label="配置名称" prop="name">
|
<el-form-item label="巡检单名称" prop="name">
|
||||||
<el-input v-model="dataForm.name" placeholder="请输入配置名称" />
|
<el-input v-model="dataForm.name" placeholder="请输入巡检单名称" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="12">
|
<el-col>
|
||||||
<el-form-item label="配置编码" prop="code">
|
<el-form-item label="巡检单编码" prop="code">
|
||||||
<el-input v-model="dataForm.code" placeholder="请输入配置编码" />
|
<el-input v-model="dataForm.code" placeholder="请输入巡检单编码" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="12">
|
<el-col>
|
||||||
<el-form-item
|
<el-form-item
|
||||||
label="设备大类"
|
label="部门"
|
||||||
prop="equipmentCategory"
|
prop="departmentId"
|
||||||
:rules="[
|
:rules="[{ required: true, message: '请选择部门', trigger: 'blur' }]">
|
||||||
{ required: true, message: '请选择设备大类', trigger: 'blur' },
|
|
||||||
]">
|
|
||||||
<el-select
|
<el-select
|
||||||
v-model="dataForm.equipmentCategory"
|
v-model="dataForm.departmentId"
|
||||||
:placeholder="`请选择设备大类`"
|
:placeholder="`请选择部门`">
|
||||||
@change="handleEqTypeChange">
|
|
||||||
<el-option
|
<el-option
|
||||||
v-for="opt in equipmentTypeOptions"
|
v-for="opt in departmentOptions"
|
||||||
:key="opt.value"
|
:key="opt.value"
|
||||||
:label="opt.label"
|
:label="opt.label"
|
||||||
:value="opt.value" />
|
:value="opt.value" />
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="12">
|
<el-col>
|
||||||
<el-form-item label="设备名称" prop="equipmentId">
|
<el-form-item label="计划巡检时间" prop="planCheckTime">
|
||||||
<el-select
|
<el-date-picker
|
||||||
v-model="dataForm.equipmentId"
|
v-model="dataForm.planCheckTime"
|
||||||
filterable
|
type="datetime"
|
||||||
style="width: 100%"
|
:placeholder="`请选择计划巡检时间`"
|
||||||
placeholder="请选择设备名称"
|
value-format="timestamp" />
|
||||||
@change="setCode">
|
|
||||||
<el-option
|
|
||||||
v-for="d in equipmentOptions"
|
|
||||||
:key="d.value"
|
|
||||||
:label="d.label"
|
|
||||||
:value="d.value" />
|
|
||||||
</el-select>
|
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item label="设备编码" prop="equipmentCode">
|
<el-form-item label="确认时限 (时)" prop="confirmTimeLimit">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="dataForm.equipmentCode"
|
v-model="dataForm.confirmTimeLimit"
|
||||||
disabled
|
:placeholder="`请输入确认时限`" />
|
||||||
placeholder="请输入设备编码" />
|
<!-- <el-date-picker
|
||||||
|
v-model="dataForm.confirmTimeLimit"
|
||||||
|
type="datetime"
|
||||||
|
:placeholder="`请选择确认时限`"
|
||||||
|
value-format="timestamp" /> -->
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="班次" prop="groupClass">
|
||||||
|
<el-select
|
||||||
|
v-model="dataForm.groupClass"
|
||||||
|
filterable
|
||||||
|
clearable
|
||||||
|
multiple
|
||||||
|
style="width: 100%"
|
||||||
|
placeholder="请选择班次">
|
||||||
|
<el-option
|
||||||
|
v-for="d in groupOptions"
|
||||||
|
:key="d.value"
|
||||||
|
:label="d.label"
|
||||||
|
:value="d.label" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col>
|
||||||
|
<el-form-item label="备注" prop="remark">
|
||||||
|
<el-input v-model="dataForm.remark" placeholder="请输入备注" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
@ -71,89 +89,131 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import basicAdd from '../../core/mixins/basic-add';
|
|
||||||
import {
|
|
||||||
getEqCheck,
|
|
||||||
getCode,
|
|
||||||
createCheckConfig,
|
|
||||||
updateCheckConfig,
|
|
||||||
} from '@/api/equipment/base/inspection/settings';
|
|
||||||
import { getEquipmentAll } from '@/api/base/equipment';
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
mixins: [basicAdd],
|
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
urlOptions: {
|
formLoading: false,
|
||||||
isGetCode: true,
|
|
||||||
codeURL: getCode,
|
|
||||||
createURL: createCheckConfig,
|
|
||||||
updateURL: updateCheckConfig,
|
|
||||||
infoURL: getEqCheck,
|
|
||||||
},
|
|
||||||
dataForm: {
|
dataForm: {
|
||||||
id: undefined,
|
id: null,
|
||||||
code: undefined,
|
code: null,
|
||||||
name: undefined,
|
name: null,
|
||||||
equipmentId: undefined,
|
departmentId: null,
|
||||||
equipmentCode: undefined,
|
planCheckTime: null,
|
||||||
equipmentCategory: undefined,
|
confirmTimeLimit: null,
|
||||||
|
groupClass: null,
|
||||||
|
remark: null,
|
||||||
|
// special: true,
|
||||||
},
|
},
|
||||||
eqList: [],
|
|
||||||
dataRule: {
|
dataRule: {
|
||||||
equipmentId: [
|
confirmTimeLimit: [
|
||||||
{ required: true, message: '设备不能为空', trigger: 'blur' },
|
{ required: true, message: '确认时限不能为空', trigger: 'blur' },
|
||||||
],
|
],
|
||||||
code: [
|
code: [
|
||||||
{ required: true, message: '配置编码不能为空', trigger: 'blur' },
|
{ required: true, message: '巡检单编码不能为空', trigger: 'blur' },
|
||||||
],
|
],
|
||||||
name: [
|
name: [
|
||||||
{ required: true, message: '配置名称不能为空', trigger: 'blur' },
|
{ required: true, message: '巡检单名称不能为空', trigger: 'blur' },
|
||||||
|
],
|
||||||
|
planCheckTime: [
|
||||||
|
{ required: true, message: '计划巡检时间不能为空', trigger: 'blur' },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
equipmentOptions: [],
|
equipmentOptions: [],
|
||||||
equipmentTypeOptions: [
|
groupOptions: [],
|
||||||
{ label: '安全设备', value: 1 },
|
departmentOptions: [],
|
||||||
{ label: '消防设备', value: 2 },
|
|
||||||
{ label: '特种设备', value: 3 },
|
|
||||||
],
|
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.getDict();
|
this.initOptions();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
async getDict() {
|
reset() {
|
||||||
// 设备列表
|
this.dataForm = {
|
||||||
const res = await getEquipmentAll();
|
id: null,
|
||||||
this.eqList = res.data;
|
code: null,
|
||||||
this.$nextTick(() => {
|
name: null,
|
||||||
this.handleEqTypeChange();
|
departmentId: null,
|
||||||
});
|
planCheckTime: null,
|
||||||
|
confirmTimeLimit: null,
|
||||||
|
groupClass: null,
|
||||||
|
remark: null,
|
||||||
|
// special: true,
|
||||||
|
};
|
||||||
},
|
},
|
||||||
setCode() {
|
|
||||||
const chooseM = this.eqList.filter((item) => {
|
async initOptions() {
|
||||||
return item.id === this.dataForm.equipmentId;
|
this.formLoading = true;
|
||||||
});
|
const urls = [
|
||||||
this.dataForm.equipmentCode = chooseM[0].code;
|
'/base/core-department/listAll',
|
||||||
},
|
'/base/group-classes/listAll',
|
||||||
// handlers
|
'/base/equipment-check-order/getCode',
|
||||||
handleEqTypeChange(type) {
|
];
|
||||||
this.dataForm.equipmentId = null;
|
try {
|
||||||
this.dataForm.equipmentCode = null;
|
const [dpt, grp, code] = await Promise.all(
|
||||||
if (type) {
|
urls.map((url) => this.$axios(url))
|
||||||
this.equipmentOptions = this.eqList
|
);
|
||||||
.filter((item) => item.special)
|
if (dpt.code == 0) {
|
||||||
.filter((item) => item.specialType === type)
|
this.departmentOptions = dpt.data.map((item) => ({
|
||||||
.map((item) => ({ label: item.name, value: item.id }));
|
|
||||||
} else
|
|
||||||
this.equipmentOptions = this.eqList
|
|
||||||
.filter((item) => item.special)
|
|
||||||
.map((item) => ({
|
|
||||||
label: item.name,
|
label: item.name,
|
||||||
value: item.id,
|
value: item.id,
|
||||||
}));
|
}));
|
||||||
// this.$emit('update', this.form)
|
}
|
||||||
|
if (grp.code == 0) {
|
||||||
|
this.groupOptions = grp.data.map((item) => ({
|
||||||
|
label: item.name,
|
||||||
|
value: item.id,
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
if (code.code == 0) {
|
||||||
|
this.dataForm.code = code.data;
|
||||||
|
}
|
||||||
|
this.formLoading = false;
|
||||||
|
} catch (err) {
|
||||||
|
this.formLoading = false;
|
||||||
|
console.error(err);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
async init(row) {
|
||||||
|
if (!row || !row.id) {
|
||||||
|
this.dataForm.planCheckTime = new Date().setHours(8, 0, 0, 0);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const res = await this.$axios({
|
||||||
|
url: '/base/equipment-check-order/get?id=' + row.id,
|
||||||
|
});
|
||||||
|
if (res.code == 0) {
|
||||||
|
Object.keys(this.dataForm).forEach((key) => {
|
||||||
|
this.dataForm[key] = res.data[key];
|
||||||
|
if (key == 'groupClass') {
|
||||||
|
this.dataForm.groupClass = res.data.groupClass.split(',')
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
async dataFormSubmit() {
|
||||||
|
let valid = false;
|
||||||
|
try {
|
||||||
|
valid = await this.$refs.form.validate();
|
||||||
|
} catch (err) {}
|
||||||
|
if (!valid) return;
|
||||||
|
const res = await this.$axios({
|
||||||
|
url:
|
||||||
|
'/base/equipment-check-order' +
|
||||||
|
(this.dataForm.id ? '/update' : '/create'),
|
||||||
|
method: this.dataForm.id ? 'put' : 'post',
|
||||||
|
data: {
|
||||||
|
...this.dataForm,
|
||||||
|
special: true,
|
||||||
|
status: 0,
|
||||||
|
groupClass: this.dataForm.groupClass.join(','),
|
||||||
|
},
|
||||||
|
});
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.$emit('refreshDataList');
|
||||||
|
this.$message.success(this.dataForm.id ? '更新成功' : '创建成功');
|
||||||
|
}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
:width="'30%'"
|
:width="'30%'"
|
||||||
:append-to-body="true"
|
:append-to-body="true"
|
||||||
:close-on-click-modal="false"
|
:close-on-click-modal="false"
|
||||||
|
@closed="$emit('closed')"
|
||||||
class="dialog">
|
class="dialog">
|
||||||
<template #title>
|
<template #title>
|
||||||
<slot name="title">
|
<slot name="title">
|
||||||
@ -17,18 +18,33 @@
|
|||||||
ref="dataForm"
|
ref="dataForm"
|
||||||
:model="dataForm"
|
:model="dataForm"
|
||||||
:rules="dataRule"
|
:rules="dataRule"
|
||||||
label-width="60px"
|
label-width="90px"
|
||||||
|
v-loading="formLoading"
|
||||||
@keyup.enter.native="dataFormSubmit()">
|
@keyup.enter.native="dataFormSubmit()">
|
||||||
<el-form-item label="巡检" prop="checkId">
|
<el-form-item label="设备名称" prop="equipmentId">
|
||||||
<el-select v-model="dataForm.checkId" filterable placeholder="请选择巡检" style="width: 100%">
|
<el-select
|
||||||
<el-option v-for="dict in checkList" :key="dict.id" :label="dict.content"
|
v-model="dataForm.equipmentId"
|
||||||
:value="dict.id" />
|
filterable
|
||||||
|
clearable
|
||||||
|
placeholder="请选择设备名称"
|
||||||
|
style="width: 100%">
|
||||||
|
<el-option
|
||||||
|
v-for="dict in equipmentOptions"
|
||||||
|
:key="dict.value"
|
||||||
|
:label="dict.label"
|
||||||
|
:value="dict.value" />
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="备注" prop="description">
|
<el-form-item label="巡检项目" prop="program">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="dataForm.description"
|
v-model="dataForm.program"
|
||||||
placeholder="请输入备注"
|
placeholder="请输入巡检项目"
|
||||||
|
clearable />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="巡检结果" prop="checkResult">
|
||||||
|
<el-input
|
||||||
|
v-model="dataForm.checkResult"
|
||||||
|
placeholder="请输入巡检结果"
|
||||||
clearable />
|
clearable />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
@ -41,80 +57,96 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { getCheckDet, createCheckDet, updateCheckDet, getcheckList } from "@/api/equipment/base/inspection/settings";
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
props: {
|
props: ['orderId'],
|
||||||
configId: {
|
|
||||||
type: String,
|
|
||||||
default: '',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
visible: false,
|
visible: false,
|
||||||
dataForm: {
|
dataForm: {
|
||||||
id: undefined,
|
id: null,
|
||||||
checkId: undefined,
|
equipmentId: null,
|
||||||
configId: undefined,
|
program: null,
|
||||||
description: ''
|
checkResult: null,
|
||||||
},
|
},
|
||||||
checkList: [],
|
formLoading: false,
|
||||||
|
equipmentOptions: [],
|
||||||
dataRule: {
|
dataRule: {
|
||||||
checkId: [{ required: true, message: '巡检不能为空', trigger: 'blur' }],
|
equipmentId: [
|
||||||
|
{ required: true, message: '设备不能为空', trigger: 'blur' },
|
||||||
|
],
|
||||||
|
program: [
|
||||||
|
{ required: true, message: '巡检项目不能为空', trigger: 'blur' },
|
||||||
|
],
|
||||||
|
checkResult: [
|
||||||
|
{ required: true, message: '巡检结果不能为空', trigger: 'blur' },
|
||||||
|
],
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.getDict()
|
this.initOptions();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
async getDict() {
|
async initOptions() {
|
||||||
const res = await getcheckList()
|
this.formLoading = true;
|
||||||
this.checkList = res.data
|
const urls = [
|
||||||
},
|
'/base/core-equipment/page?pageNo=1&pageSize=100&special=true',
|
||||||
init(id) {
|
];
|
||||||
this.dataForm.id = id || '';
|
try {
|
||||||
this.visible = true;
|
const [eq] = await Promise.all(urls.map((url) => this.$axios(url)));
|
||||||
this.$nextTick(() => {
|
if (eq.code == 0) {
|
||||||
this.$refs['dataForm'].resetFields();
|
this.equipmentOptions = eq.data.list.map((item) => ({
|
||||||
if (this.dataForm.id) {
|
label: item.name,
|
||||||
getCheckDet(this.dataForm.id).then((res) => {
|
value: item.id,
|
||||||
// const { name, value } = res.data;
|
}));
|
||||||
// this.dataForm.name = name;
|
|
||||||
// this.dataForm.value = value;
|
|
||||||
this.dataForm = res.data
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
});
|
this.formLoading = false;
|
||||||
|
} catch (err) {
|
||||||
|
this.formLoading = false;
|
||||||
|
console.error(err);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
init(row) {
|
||||||
|
this.visible = true;
|
||||||
|
if (row?.id) {
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs['dataForm'].resetFields();
|
||||||
|
this.formLoading = true;
|
||||||
|
this.$axios({
|
||||||
|
url: '/base/equipment-check-order-det/get?id=' + row.id,
|
||||||
|
}).then((res) => {
|
||||||
|
Object.keys(this.dataForm).forEach((key) => {
|
||||||
|
this.dataForm[key] = res.data[key];
|
||||||
|
});
|
||||||
|
this.formLoading = false;
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
},
|
},
|
||||||
// 表单提交
|
// 表单提交
|
||||||
dataFormSubmit() {
|
async dataFormSubmit() {
|
||||||
this.$refs['dataForm'].validate((valid) => {
|
let valid = false;
|
||||||
if (valid) {
|
try {
|
||||||
// 修改的提交
|
valid = await this.$refs['dataForm'].validate();
|
||||||
if (this.dataForm.id) {
|
} catch (err) {}
|
||||||
updateCheckDet({
|
if (!valid) return;
|
||||||
...this.dataForm,
|
|
||||||
configId: this.configId
|
const res = await this.$axios({
|
||||||
}).then((response) => {
|
url:
|
||||||
this.$modal.msgSuccess('修改成功');
|
'base/equipment-check-order-det' +
|
||||||
this.visible = false;
|
(this.dataForm.id ? '/update' : '/create'),
|
||||||
this.$emit('refreshDataList');
|
method: this.dataForm.id ? 'put' : 'post',
|
||||||
});
|
data: {
|
||||||
return;
|
...this.dataForm,
|
||||||
}
|
orderId: this.orderId,
|
||||||
// 添加的提交
|
},
|
||||||
createCheckDet({
|
|
||||||
...this.dataForm,
|
|
||||||
configId: this.configId,
|
|
||||||
}).then((response) => {
|
|
||||||
this.$modal.msgSuccess('新增成功');
|
|
||||||
this.visible = false;
|
|
||||||
this.$emit('refreshDataList');
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.$modal.msgSuccess(this.dataForm.id ? '修改成功' : '新增成功');
|
||||||
|
this.$emit('refreshDataList');
|
||||||
|
this.visible = false;
|
||||||
|
}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
539
src/views/specialEquipment/check/iconfont/demo.css
Normal file
539
src/views/specialEquipment/check/iconfont/demo.css
Normal file
@ -0,0 +1,539 @@
|
|||||||
|
/* Logo 字体 */
|
||||||
|
@font-face {
|
||||||
|
font-family: "iconfont logo";
|
||||||
|
src: url('https://at.alicdn.com/t/font_985780_km7mi63cihi.eot?t=1545807318834');
|
||||||
|
src: url('https://at.alicdn.com/t/font_985780_km7mi63cihi.eot?t=1545807318834#iefix') format('embedded-opentype'),
|
||||||
|
url('https://at.alicdn.com/t/font_985780_km7mi63cihi.woff?t=1545807318834') format('woff'),
|
||||||
|
url('https://at.alicdn.com/t/font_985780_km7mi63cihi.ttf?t=1545807318834') format('truetype'),
|
||||||
|
url('https://at.alicdn.com/t/font_985780_km7mi63cihi.svg?t=1545807318834#iconfont') format('svg');
|
||||||
|
}
|
||||||
|
|
||||||
|
.logo {
|
||||||
|
font-family: "iconfont logo";
|
||||||
|
font-size: 160px;
|
||||||
|
font-style: normal;
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* tabs */
|
||||||
|
.nav-tabs {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-tabs .nav-more {
|
||||||
|
position: absolute;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
height: 42px;
|
||||||
|
line-height: 42px;
|
||||||
|
color: #666;
|
||||||
|
}
|
||||||
|
|
||||||
|
#tabs {
|
||||||
|
border-bottom: 1px solid #eee;
|
||||||
|
}
|
||||||
|
|
||||||
|
#tabs li {
|
||||||
|
cursor: pointer;
|
||||||
|
width: 100px;
|
||||||
|
height: 40px;
|
||||||
|
line-height: 40px;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 16px;
|
||||||
|
border-bottom: 2px solid transparent;
|
||||||
|
position: relative;
|
||||||
|
z-index: 1;
|
||||||
|
margin-bottom: -1px;
|
||||||
|
color: #666;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#tabs .active {
|
||||||
|
border-bottom-color: #f00;
|
||||||
|
color: #222;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tab-container .content {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 页面布局 */
|
||||||
|
.main {
|
||||||
|
padding: 30px 100px;
|
||||||
|
width: 960px;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main .logo {
|
||||||
|
color: #333;
|
||||||
|
text-align: left;
|
||||||
|
margin-bottom: 30px;
|
||||||
|
line-height: 1;
|
||||||
|
height: 110px;
|
||||||
|
margin-top: -50px;
|
||||||
|
overflow: hidden;
|
||||||
|
*zoom: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main .logo a {
|
||||||
|
font-size: 160px;
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
.helps {
|
||||||
|
margin-top: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.helps pre {
|
||||||
|
padding: 20px;
|
||||||
|
margin: 10px 0;
|
||||||
|
border: solid 1px #e7e1cd;
|
||||||
|
background-color: #fffdef;
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon_lists {
|
||||||
|
width: 100% !important;
|
||||||
|
overflow: hidden;
|
||||||
|
*zoom: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon_lists li {
|
||||||
|
width: 100px;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
margin-right: 20px;
|
||||||
|
text-align: center;
|
||||||
|
list-style: none !important;
|
||||||
|
cursor: default;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon_lists li .code-name {
|
||||||
|
line-height: 1.2;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon_lists .icon {
|
||||||
|
display: block;
|
||||||
|
height: 100px;
|
||||||
|
line-height: 100px;
|
||||||
|
font-size: 42px;
|
||||||
|
margin: 10px auto;
|
||||||
|
color: #333;
|
||||||
|
-webkit-transition: font-size 0.25s linear, width 0.25s linear;
|
||||||
|
-moz-transition: font-size 0.25s linear, width 0.25s linear;
|
||||||
|
transition: font-size 0.25s linear, width 0.25s linear;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon_lists .icon:hover {
|
||||||
|
font-size: 100px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon_lists .svg-icon {
|
||||||
|
/* 通过设置 font-size 来改变图标大小 */
|
||||||
|
width: 1em;
|
||||||
|
/* 图标和文字相邻时,垂直对齐 */
|
||||||
|
vertical-align: -0.15em;
|
||||||
|
/* 通过设置 color 来改变 SVG 的颜色/fill */
|
||||||
|
fill: currentColor;
|
||||||
|
/* path 和 stroke 溢出 viewBox 部分在 IE 下会显示
|
||||||
|
normalize.css 中也包含这行 */
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon_lists li .name,
|
||||||
|
.icon_lists li .code-name {
|
||||||
|
color: #666;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* markdown 样式 */
|
||||||
|
.markdown {
|
||||||
|
color: #666;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 1.8;
|
||||||
|
}
|
||||||
|
|
||||||
|
.highlight {
|
||||||
|
line-height: 1.5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown img {
|
||||||
|
vertical-align: middle;
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown h1 {
|
||||||
|
color: #404040;
|
||||||
|
font-weight: 500;
|
||||||
|
line-height: 40px;
|
||||||
|
margin-bottom: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown h2,
|
||||||
|
.markdown h3,
|
||||||
|
.markdown h4,
|
||||||
|
.markdown h5,
|
||||||
|
.markdown h6 {
|
||||||
|
color: #404040;
|
||||||
|
margin: 1.6em 0 0.6em 0;
|
||||||
|
font-weight: 500;
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown h1 {
|
||||||
|
font-size: 28px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown h2 {
|
||||||
|
font-size: 22px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown h3 {
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown h4 {
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown h5 {
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown h6 {
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown hr {
|
||||||
|
height: 1px;
|
||||||
|
border: 0;
|
||||||
|
background: #e9e9e9;
|
||||||
|
margin: 16px 0;
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown p {
|
||||||
|
margin: 1em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown>p,
|
||||||
|
.markdown>blockquote,
|
||||||
|
.markdown>.highlight,
|
||||||
|
.markdown>ol,
|
||||||
|
.markdown>ul {
|
||||||
|
width: 80%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown ul>li {
|
||||||
|
list-style: circle;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown>ul li,
|
||||||
|
.markdown blockquote ul>li {
|
||||||
|
margin-left: 20px;
|
||||||
|
padding-left: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown>ul li p,
|
||||||
|
.markdown>ol li p {
|
||||||
|
margin: 0.6em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown ol>li {
|
||||||
|
list-style: decimal;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown>ol li,
|
||||||
|
.markdown blockquote ol>li {
|
||||||
|
margin-left: 20px;
|
||||||
|
padding-left: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown code {
|
||||||
|
margin: 0 3px;
|
||||||
|
padding: 0 5px;
|
||||||
|
background: #eee;
|
||||||
|
border-radius: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown strong,
|
||||||
|
.markdown b {
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown>table {
|
||||||
|
border-collapse: collapse;
|
||||||
|
border-spacing: 0px;
|
||||||
|
empty-cells: show;
|
||||||
|
border: 1px solid #e9e9e9;
|
||||||
|
width: 95%;
|
||||||
|
margin-bottom: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown>table th {
|
||||||
|
white-space: nowrap;
|
||||||
|
color: #333;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown>table th,
|
||||||
|
.markdown>table td {
|
||||||
|
border: 1px solid #e9e9e9;
|
||||||
|
padding: 8px 16px;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown>table th {
|
||||||
|
background: #F7F7F7;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown blockquote {
|
||||||
|
font-size: 90%;
|
||||||
|
color: #999;
|
||||||
|
border-left: 4px solid #e9e9e9;
|
||||||
|
padding-left: 0.8em;
|
||||||
|
margin: 1em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown blockquote p {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown .anchor {
|
||||||
|
opacity: 0;
|
||||||
|
transition: opacity 0.3s ease;
|
||||||
|
margin-left: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown .waiting {
|
||||||
|
color: #ccc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown h1:hover .anchor,
|
||||||
|
.markdown h2:hover .anchor,
|
||||||
|
.markdown h3:hover .anchor,
|
||||||
|
.markdown h4:hover .anchor,
|
||||||
|
.markdown h5:hover .anchor,
|
||||||
|
.markdown h6:hover .anchor {
|
||||||
|
opacity: 1;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown>br,
|
||||||
|
.markdown>p>br {
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.hljs {
|
||||||
|
display: block;
|
||||||
|
background: white;
|
||||||
|
padding: 0.5em;
|
||||||
|
color: #333333;
|
||||||
|
overflow-x: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hljs-comment,
|
||||||
|
.hljs-meta {
|
||||||
|
color: #969896;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hljs-string,
|
||||||
|
.hljs-variable,
|
||||||
|
.hljs-template-variable,
|
||||||
|
.hljs-strong,
|
||||||
|
.hljs-emphasis,
|
||||||
|
.hljs-quote {
|
||||||
|
color: #df5000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hljs-keyword,
|
||||||
|
.hljs-selector-tag,
|
||||||
|
.hljs-type {
|
||||||
|
color: #a71d5d;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hljs-literal,
|
||||||
|
.hljs-symbol,
|
||||||
|
.hljs-bullet,
|
||||||
|
.hljs-attribute {
|
||||||
|
color: #0086b3;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hljs-section,
|
||||||
|
.hljs-name {
|
||||||
|
color: #63a35c;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hljs-tag {
|
||||||
|
color: #333333;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hljs-title,
|
||||||
|
.hljs-attr,
|
||||||
|
.hljs-selector-id,
|
||||||
|
.hljs-selector-class,
|
||||||
|
.hljs-selector-attr,
|
||||||
|
.hljs-selector-pseudo {
|
||||||
|
color: #795da3;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hljs-addition {
|
||||||
|
color: #55a532;
|
||||||
|
background-color: #eaffea;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hljs-deletion {
|
||||||
|
color: #bd2c00;
|
||||||
|
background-color: #ffecec;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hljs-link {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 代码高亮 */
|
||||||
|
/* PrismJS 1.15.0
|
||||||
|
https://prismjs.com/download.html#themes=prism&languages=markup+css+clike+javascript */
|
||||||
|
/**
|
||||||
|
* prism.js default theme for JavaScript, CSS and HTML
|
||||||
|
* Based on dabblet (http://dabblet.com)
|
||||||
|
* @author Lea Verou
|
||||||
|
*/
|
||||||
|
code[class*="language-"],
|
||||||
|
pre[class*="language-"] {
|
||||||
|
color: black;
|
||||||
|
background: none;
|
||||||
|
text-shadow: 0 1px white;
|
||||||
|
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
|
||||||
|
text-align: left;
|
||||||
|
white-space: pre;
|
||||||
|
word-spacing: normal;
|
||||||
|
word-break: normal;
|
||||||
|
word-wrap: normal;
|
||||||
|
line-height: 1.5;
|
||||||
|
|
||||||
|
-moz-tab-size: 4;
|
||||||
|
-o-tab-size: 4;
|
||||||
|
tab-size: 4;
|
||||||
|
|
||||||
|
-webkit-hyphens: none;
|
||||||
|
-moz-hyphens: none;
|
||||||
|
-ms-hyphens: none;
|
||||||
|
hyphens: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre[class*="language-"]::-moz-selection,
|
||||||
|
pre[class*="language-"] ::-moz-selection,
|
||||||
|
code[class*="language-"]::-moz-selection,
|
||||||
|
code[class*="language-"] ::-moz-selection {
|
||||||
|
text-shadow: none;
|
||||||
|
background: #b3d4fc;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre[class*="language-"]::selection,
|
||||||
|
pre[class*="language-"] ::selection,
|
||||||
|
code[class*="language-"]::selection,
|
||||||
|
code[class*="language-"] ::selection {
|
||||||
|
text-shadow: none;
|
||||||
|
background: #b3d4fc;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media print {
|
||||||
|
|
||||||
|
code[class*="language-"],
|
||||||
|
pre[class*="language-"] {
|
||||||
|
text-shadow: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Code blocks */
|
||||||
|
pre[class*="language-"] {
|
||||||
|
padding: 1em;
|
||||||
|
margin: .5em 0;
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
:not(pre)>code[class*="language-"],
|
||||||
|
pre[class*="language-"] {
|
||||||
|
background: #f5f2f0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Inline code */
|
||||||
|
:not(pre)>code[class*="language-"] {
|
||||||
|
padding: .1em;
|
||||||
|
border-radius: .3em;
|
||||||
|
white-space: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.comment,
|
||||||
|
.token.prolog,
|
||||||
|
.token.doctype,
|
||||||
|
.token.cdata {
|
||||||
|
color: slategray;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.punctuation {
|
||||||
|
color: #999;
|
||||||
|
}
|
||||||
|
|
||||||
|
.namespace {
|
||||||
|
opacity: .7;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.property,
|
||||||
|
.token.tag,
|
||||||
|
.token.boolean,
|
||||||
|
.token.number,
|
||||||
|
.token.constant,
|
||||||
|
.token.symbol,
|
||||||
|
.token.deleted {
|
||||||
|
color: #905;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.selector,
|
||||||
|
.token.attr-name,
|
||||||
|
.token.string,
|
||||||
|
.token.char,
|
||||||
|
.token.builtin,
|
||||||
|
.token.inserted {
|
||||||
|
color: #690;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.operator,
|
||||||
|
.token.entity,
|
||||||
|
.token.url,
|
||||||
|
.language-css .token.string,
|
||||||
|
.style .token.string {
|
||||||
|
color: #9a6e3a;
|
||||||
|
background: hsla(0, 0%, 100%, .5);
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.atrule,
|
||||||
|
.token.attr-value,
|
||||||
|
.token.keyword {
|
||||||
|
color: #07a;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.function,
|
||||||
|
.token.class-name {
|
||||||
|
color: #DD4A68;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.regex,
|
||||||
|
.token.important,
|
||||||
|
.token.variable {
|
||||||
|
color: #e90;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.important,
|
||||||
|
.token.bold {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.italic {
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.entity {
|
||||||
|
cursor: help;
|
||||||
|
}
|
38
src/views/specialEquipment/check/iconfont/iconfont.css
Normal file
38
src/views/specialEquipment/check/iconfont/iconfont.css
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
@font-face {
|
||||||
|
font-family: "iconfont"; /* Project id 3821755 */
|
||||||
|
src: url('iconfont.eot?t=1689233106339'); /* IE9 */
|
||||||
|
src: url('iconfont.eot?t=1689233106339#iefix') format('embedded-opentype'), /* IE6-IE8 */
|
||||||
|
url('data:application/x-font-woff2;charset=utf-8;base64,d09GMgABAAAAAARgAAsAAAAACcAAAAQUAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHFQGYACDKAqGSIUsATYCJAMYCw4ABCAFhGcHVBtUCMiuMG7hiaIkox1FaBhxvd1fpwAN4YKo1v7tWTr8hBRkBQgO7yqKUJKPUKzDjkixjn7/q0vlANCkEHCJtsMvx2eQn04h5rHEE8593TK2y1SC5nbvNG5gqgZBNEWTqFUQLGVFNnVu1TjyMm3SafEsC3y0myW12KdEh2x+deP/zzHTJeG3AVBm4lrnAxpQN0US7s3ijuSE6Jbh1UGv08cgQEivMg5z6m49Qj77TVxDEZww6gXicNkviSbkxgswNeGCj+CgMw1yFRpAnUNegSv+8+UfU/igsBpjnRV3rRV9+Su8Fk1Agv6CW4eAeyvAAhronJlI1tcrVnIMHZ0cCcsUTrRTnQ0CP50B4KfgEub9Lw80BougQBwGI8bYJU4LPwUbBw0/HXAw8NORUM90wsT9JeIMFACux9QckHyQ9FDYTobcGi+FLSjwMxDe3L5s+w9THFYeEs8H303FWMnZ1JuBWFgNPh3bd5wOvJmKI9aTqXeD8eJ66HnfnV1dJPE8cy4EgqT+s/SbdSWbp9Pn24NbZ1MnGw7CDbvT6+lL1CXVh++hcH56umDT9vOviL/grQ6srHjE57uLHdQn+dtO9x2v94WN6+eXm0HWlZOzta3tUDp1JWjymsiD8r0ViWGkC+n4GeH5aODSM+9COnilpdfdZsRIvMerLmS0uICTplrOnb99LT3NkJNeajPfpDznblq6bXH8efBjlPIUxhQcX+U0qEdt4bjxy6rMdOkbEn0/3mlvrXZL60ysxdwcn/qKLJ/82pnzGS61z5rBeGmrxf33ZXN/IBWUvb8KSvnttbwwq+YTkweZHue0M0+c0ssZGY/Rs+aVF8+3GaW07CkvLC/KcBvP8c2uGpsdm0THlazwlPE22Kdi9ZK4Hdsmtw9eHVQwPjG0p33Q7tGMJ6TUJ2VK1MMw6ftI6qPPtruCvEPmLZqiHcj1Aw3Rup/sdzj+lt/w3f5TrAHgx++nD7A+8xaD4CL8m60Q+KWYO7CgUY3gTFl+OwUBHKteh00BoWmGDIYm301frAJwKAg+BTEoPCpA41OPNNh2sET0g8NnCkI61M6PKKBzREwANBtGIOS6BEU2D0CT6xvSYP+Apdg/cOT6DyErI68W0RzbqhmYOFixuRNLFqoRi839Zh+A2KqYWJH1CTC7hM04My0j664HDVgXY+xtYhbnBBNGVVzH7geKQrHOqA0sPK2Fc70oPZ2UPSTNQlVUjQEmHLDCzDphEgtKQ9zCPP16DwBRK4UJAyKfyBg7jaeaxzKlyQAg6xkaKO9M2tu1EWXhOEL3IxhKhdWpMqCYDgrTy7vZAAsuTUsLm65IOlWIQBlp47PUS9wAhBgHOFGixYgVJx7+dtqutZuY1eXTvXYncJOkOF1Wicd+CnBACA==') format('woff2'),
|
||||||
|
url('iconfont.woff?t=1689233106339') format('woff'),
|
||||||
|
url('iconfont.ttf?t=1689233106339') format('truetype'),
|
||||||
|
url('iconfont.svg?t=1689233106339#iconfont') format('svg');
|
||||||
|
}
|
||||||
|
|
||||||
|
.iconfont {
|
||||||
|
font-family: "iconfont" !important;
|
||||||
|
font-size: 16px;
|
||||||
|
font-style: normal;
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-downward:before {
|
||||||
|
content: "\e604";
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-upward:before {
|
||||||
|
content: "\e605";
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-detail:before {
|
||||||
|
content: "\e601";
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-edit:before {
|
||||||
|
content: "\e602";
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-delete:before {
|
||||||
|
content: "\e603";
|
||||||
|
}
|
||||||
|
|
BIN
src/views/specialEquipment/check/iconfont/iconfont.eot
Normal file
BIN
src/views/specialEquipment/check/iconfont/iconfont.eot
Normal file
Binary file not shown.
1
src/views/specialEquipment/check/iconfont/iconfont.js
Normal file
1
src/views/specialEquipment/check/iconfont/iconfont.js
Normal file
File diff suppressed because one or more lines are too long
44
src/views/specialEquipment/check/iconfont/iconfont.json
Normal file
44
src/views/specialEquipment/check/iconfont/iconfont.json
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
{
|
||||||
|
"id": "3821755",
|
||||||
|
"name": "component",
|
||||||
|
"font_family": "iconfont",
|
||||||
|
"css_prefix_text": "icon-",
|
||||||
|
"description": "封装的组件中的icon",
|
||||||
|
"glyphs": [
|
||||||
|
{
|
||||||
|
"icon_id": "36426261",
|
||||||
|
"name": "downward",
|
||||||
|
"font_class": "downward",
|
||||||
|
"unicode": "e604",
|
||||||
|
"unicode_decimal": 58884
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"icon_id": "36426301",
|
||||||
|
"name": "upward",
|
||||||
|
"font_class": "upward",
|
||||||
|
"unicode": "e605",
|
||||||
|
"unicode_decimal": 58885
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"icon_id": "33347867",
|
||||||
|
"name": "detail",
|
||||||
|
"font_class": "detail",
|
||||||
|
"unicode": "e601",
|
||||||
|
"unicode_decimal": 58881
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"icon_id": "33347918",
|
||||||
|
"name": "edit",
|
||||||
|
"font_class": "edit",
|
||||||
|
"unicode": "e602",
|
||||||
|
"unicode_decimal": 58882
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"icon_id": "33347930",
|
||||||
|
"name": "delete",
|
||||||
|
"font_class": "delete",
|
||||||
|
"unicode": "e603",
|
||||||
|
"unicode_decimal": 58883
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
29
src/views/specialEquipment/check/iconfont/iconfont.svg
Normal file
29
src/views/specialEquipment/check/iconfont/iconfont.svg
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
<?xml version="1.0" standalone="no"?>
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<metadata>Created by iconfont</metadata>
|
||||||
|
<defs>
|
||||||
|
<font id="iconfont" horiz-adv-x="1024">
|
||||||
|
<font-face
|
||||||
|
font-family="iconfont"
|
||||||
|
font-weight="400"
|
||||||
|
font-stretch="normal"
|
||||||
|
units-per-em="1024"
|
||||||
|
ascent="896"
|
||||||
|
descent="-128"
|
||||||
|
/>
|
||||||
|
<missing-glyph />
|
||||||
|
|
||||||
|
<glyph glyph-name="downward" unicode="" d="M556.942222 144.099556l363.064889 401.806222c24.860444 21.617778 24.860444 56.263111 0 77.880889a68.437333 68.437333 0 0 1-44.942222 16.156444c-16.896 0-33.052444-5.859556-44.885333-16.156444L512 260.949333l-318.236444 362.951111a68.437333 68.437333 0 0 1-44.942223 16.099556c-16.896 0-33.109333-5.802667-44.942222-16.156444-24.746667-21.617778-24.746667-56.206222 0-77.824l363.121778-401.749334c5.973333-5.290667 13.141333-9.443556 21.048889-12.231111 23.722667-8.305778 51.029333-3.527111 68.892444 12.060445z" horiz-adv-x="1024" />
|
||||||
|
|
||||||
|
<glyph glyph-name="upward" unicode="" d="M556.942222 623.900444l363.064889-401.806222c24.860444-21.617778 24.860444-56.263111 0-77.880889a68.437333 68.437333 0 0 0-44.942222-16.156444c-16.896 0-33.052444 5.859556-44.885333 16.156444L512 507.050667l-318.236444-362.951111a68.437333 68.437333 0 0 0-44.942223-16.099556c-16.896 0-33.109333 5.802667-44.942222 16.156444-24.746667 21.617778-24.746667 56.206222 0 77.824L467.057778 623.729778c5.973333 5.290667 13.141333 9.443556 21.048889 12.231111 23.722667 8.305778 51.029333 3.527111 68.892444-12.060445z" horiz-adv-x="1024" />
|
||||||
|
|
||||||
|
<glyph glyph-name="detail" unicode="" d="M902.428444 705.251556H332.401778a7.964444 7.964444 0 0 1-7.793778-8.021334v-56.206222a7.964444 7.964444 0 0 1 7.793778-8.078222h570.026666A7.964444 7.964444 0 0 1 910.222222 641.024v56.206222a7.964444 7.964444 0 0 1-7.793778 8.021334z m0-285.127112H332.401778a7.964444 7.964444 0 0 1-7.793778-7.964444v-56.32a7.964444 7.964444 0 0 1 7.793778-7.964444h570.026666a7.964444 7.964444 0 0 1 7.793778 7.964444v56.32a7.964444 7.964444 0 0 1-7.793778 7.964444z m0-285.070222H332.401778a7.964444 7.964444 0 0 1-7.793778-8.078222v-56.206222a7.964444 7.964444 0 0 1 7.793778-8.021334h570.026666a7.964444 7.964444 0 0 1 7.793778 8.021334v56.206222a7.964444 7.964444 0 0 1-7.793778 8.078222zM113.777778 669.127111c0-20.081778 10.410667-38.684444 27.306666-48.696889a53.361778 53.361778 0 0 1 54.670223 0 56.547556 56.547556 0 0 1 27.306666 48.696889 56.547556 56.547556 0 0 1-27.306666 48.696889 53.361778 53.361778 0 0 1-54.613334 0A56.547556 56.547556 0 0 1 113.777778 669.127111zM113.777778 384c0-20.081778 10.410667-38.684444 27.306666-48.696889a53.361778 53.361778 0 0 1 54.670223 0A56.547556 56.547556 0 0 1 223.061333 384a56.547556 56.547556 0 0 1-27.306666 48.696889 53.361778 53.361778 0 0 1-54.613334 0A56.547556 56.547556 0 0 1 113.777778 384z m0-285.127111c0-20.081778 10.410667-38.684444 27.306666-48.696889a53.361778 53.361778 0 0 1 54.670223 0 56.547556 56.547556 0 0 1 27.306666 48.696889 56.547556 56.547556 0 0 1-27.306666 48.696889 53.361778 53.361778 0 0 1-54.613334 0 56.547556 56.547556 0 0 1-27.363555-48.696889z" horiz-adv-x="1024" />
|
||||||
|
|
||||||
|
<glyph glyph-name="edit" unicode="" d="M873.016889 395.264a32.824889 32.824889 0 0 0 65.649778 0v-273.806222a164.124444 164.124444 0 0 0-164.124445-164.124445h-525.084444A164.124444 164.124444 0 0 0 85.333333 121.457778v525.084444A164.124444 164.124444 0 0 0 249.457778 810.666667h312.32a32.824889 32.824889 0 1 0 0-65.649778h-312.32a98.417778 98.417778 0 0 1-98.474667-98.417778v-525.141333c0-54.385778 44.088889-98.474667 98.417778-98.474667h525.141333a98.417778 98.417778 0 0 1 98.474667 98.417778V395.320889z m-14.222222 362.097778a32.824889 32.824889 0 0 0 48.014222-44.771556L548.750222 328.533333a32.824889 32.824889 0 1 0-48.014222 44.771556l358.115556 384.056889z" horiz-adv-x="1024" />
|
||||||
|
|
||||||
|
<glyph glyph-name="delete" unicode="" d="M601.024 146.24a29.632 29.632 0 0 0-29.696 29.696V503.04a29.632 29.632 0 1 0 59.456 0v-326.848a29.76 29.76 0 0 0-29.76-29.888z m-178.24 0a29.632 29.632 0 0 0-29.696 29.696V503.04a29.632 29.632 0 1 0 59.392 0v-326.848a29.76 29.76 0 0 0-29.696-29.888z m475.52 505.216h-148.544v59.456c0 49.152-39.616 89.088-88.512 89.088H363.392c-49.216 0-89.152-39.936-89.152-89.088v-59.456H125.696a29.632 29.632 0 1 1 0-59.392h772.608a29.632 29.632 0 1 1 0 59.392z m-564.608 59.456c0 16.256 13.44 29.696 29.696 29.696h297.856c16.32 0 29.056-13.12 29.056-29.696v-59.456H333.696v59.456zM720-32h-416a89.152 89.152 0 0 0-89.088 89.088V503.232a29.632 29.632 0 1 0 59.456 0v-446.08c0-16.512 13.44-29.76 29.696-29.76h416.064a29.632 29.632 0 0 1 29.696 29.696V502.144a29.632 29.632 0 1 0 59.456 0v-445.056A89.536 89.536 0 0 0 720-32z" horiz-adv-x="1024" />
|
||||||
|
|
||||||
|
</font>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 4.8 KiB |
BIN
src/views/specialEquipment/check/iconfont/iconfont.ttf
Normal file
BIN
src/views/specialEquipment/check/iconfont/iconfont.ttf
Normal file
Binary file not shown.
BIN
src/views/specialEquipment/check/iconfont/iconfont.woff
Normal file
BIN
src/views/specialEquipment/check/iconfont/iconfont.woff
Normal file
Binary file not shown.
BIN
src/views/specialEquipment/check/iconfont/iconfont.woff2
Normal file
BIN
src/views/specialEquipment/check/iconfont/iconfont.woff2
Normal file
Binary file not shown.
544
src/views/specialEquipment/components/BasicDrawer.vue
Normal file
544
src/views/specialEquipment/components/BasicDrawer.vue
Normal file
@ -0,0 +1,544 @@
|
|||||||
|
<!--
|
||||||
|
filename: EquipmentDrawer.vue
|
||||||
|
author: liubin
|
||||||
|
date: 2023-08-22 14:38:56
|
||||||
|
description:
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<el-drawer
|
||||||
|
:visible="visible"
|
||||||
|
:show-close="false"
|
||||||
|
:wrapper-closable="false"
|
||||||
|
class="drawer"
|
||||||
|
custom-class="mes-drawer"
|
||||||
|
:size="size || '50%'"
|
||||||
|
@closed="$emit('destroy')">
|
||||||
|
<SmallTitle slot="title">
|
||||||
|
{{
|
||||||
|
mode.includes('detail')
|
||||||
|
? '详情'
|
||||||
|
: mode.includes('edit')
|
||||||
|
? '编辑'
|
||||||
|
: '新增'
|
||||||
|
}}
|
||||||
|
</SmallTitle>
|
||||||
|
|
||||||
|
<div class="drawer-body flex">
|
||||||
|
<div class="drawer-body__content">
|
||||||
|
<section v-for="(section, index) in sections" :key="section.key">
|
||||||
|
<SmallTitle v-if="index != 0">{{ section.name }}</SmallTitle>
|
||||||
|
|
||||||
|
<div
|
||||||
|
class="form-part"
|
||||||
|
v-if="section.key == 'base'"
|
||||||
|
style="border-bottom: 1px solid #dfdfdf; margin-bottom: 24px">
|
||||||
|
<el-skeleton v-if="!showForm" animated />
|
||||||
|
<!-- <BaseInfoForm
|
||||||
|
key="drawer-dialog-form"
|
||||||
|
v-if="showForm"
|
||||||
|
ref="form"
|
||||||
|
:disabled="mode.includes('detail')"
|
||||||
|
:dataForm="form"
|
||||||
|
:rows="formRows" /> -->
|
||||||
|
|
||||||
|
<!-- if -->
|
||||||
|
<el-row v-if="mode.includes('detail')" style="margin-bottom: 24px">
|
||||||
|
<el-col :span="8">
|
||||||
|
<div
|
||||||
|
class="title"
|
||||||
|
style="font-weight: 700; font-size: 16px; margin: 8px 0">
|
||||||
|
设备分组名称
|
||||||
|
</div>
|
||||||
|
<div class="value" style="font-size: 14px">{{ form.name }}</div>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<div
|
||||||
|
class="title"
|
||||||
|
style="font-weight: 700; font-size: 16px; margin: 8px 0">
|
||||||
|
设备分组编码
|
||||||
|
</div>
|
||||||
|
<div class="value" style="font-size: 14px">
|
||||||
|
{{ form.code }}
|
||||||
|
</div>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<!-- else -->
|
||||||
|
<el-row v-else style="margin-bottom: 24px" :gutter="20">
|
||||||
|
<el-form ref="form" :model="form">
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item
|
||||||
|
class="title"
|
||||||
|
label="设备分组名称"
|
||||||
|
style="font-size: 16px; margin: 8px 0">
|
||||||
|
<el-input
|
||||||
|
v-model="form.name"
|
||||||
|
placeholder="请输入设备分组名称"></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item
|
||||||
|
class="title"
|
||||||
|
label="设备分组编码"
|
||||||
|
style="font-size: 16px; margin: 8px 0">
|
||||||
|
<el-input
|
||||||
|
v-model="form.code"
|
||||||
|
placeholder="请输入设备分组编码"></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-form>
|
||||||
|
</el-row>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div
|
||||||
|
v-if="section.key == 'attrs'"
|
||||||
|
style="position: relative; margin-top: 12px">
|
||||||
|
<div
|
||||||
|
v-if="!mode.includes('detail')"
|
||||||
|
style="position: absolute; top: -40px; right: 0">
|
||||||
|
<el-button @click="handleAddAttr" type="text">
|
||||||
|
<i class="el-icon-plus"></i>
|
||||||
|
添加报警
|
||||||
|
</el-button>
|
||||||
|
</div>
|
||||||
|
<base-table
|
||||||
|
v-loading="attrListLoading"
|
||||||
|
:table-props="section.props"
|
||||||
|
:page="attrQuery?.params.pageNo || 1"
|
||||||
|
:limit="attrQuery?.params.pageSize || 10"
|
||||||
|
:table-data="list"
|
||||||
|
@emitFun="handleEmitFun">
|
||||||
|
<!-- :add-button-show="mode.includes('detail') ? null : '添加属性'"
|
||||||
|
@emitButtonClick="handleAddAttr" -->
|
||||||
|
<method-btn
|
||||||
|
v-if="section.tableBtn && !mode.includes('detail')"
|
||||||
|
slot="handleBtn"
|
||||||
|
label="操作"
|
||||||
|
:method-list="tableBtn"
|
||||||
|
@clickBtn="handleTableBtnClick" />
|
||||||
|
</base-table>
|
||||||
|
|
||||||
|
<!-- 分页组件 -->
|
||||||
|
<pagination
|
||||||
|
v-show="total > 0"
|
||||||
|
:total="total"
|
||||||
|
:page.sync="attrQuery.params.pageNo"
|
||||||
|
:limit.sync="attrQuery.params.pageSize"
|
||||||
|
@pagination="getAttrList" />
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="drawer-body__footer">
|
||||||
|
<el-button style="" @click="handleCancel">返回</el-button>
|
||||||
|
<el-button
|
||||||
|
type="primary"
|
||||||
|
v-if="!mode.includes('detail')"
|
||||||
|
@click="handleSave">
|
||||||
|
保存
|
||||||
|
</el-button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- 属性对话框 -->
|
||||||
|
<base-dialog
|
||||||
|
v-if="sections[1].allowAdd"
|
||||||
|
:dialogTitle="attrTitle"
|
||||||
|
:dialogVisible="attrFormVisible"
|
||||||
|
width="45%"
|
||||||
|
:append-to-body="true"
|
||||||
|
custom-class="baseDialog"
|
||||||
|
@close="closeAttrForm"
|
||||||
|
@cancel="closeAttrForm"
|
||||||
|
@confirm="submitAttrForm">
|
||||||
|
<DialogForm
|
||||||
|
v-if="attrFormVisible"
|
||||||
|
ref="attrForm"
|
||||||
|
v-model="attrForm"
|
||||||
|
:rows="attrRows" />
|
||||||
|
<!-- :disabled="mode.includes('detail')" -->
|
||||||
|
</base-dialog>
|
||||||
|
</el-drawer>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import BaseInfoForm from '@/components/DialogForm';
|
||||||
|
import DialogForm from './dialogInDrawer';
|
||||||
|
|
||||||
|
const SmallTitle = {
|
||||||
|
name: 'SmallTitle',
|
||||||
|
props: ['size'],
|
||||||
|
data() {
|
||||||
|
return {};
|
||||||
|
},
|
||||||
|
methods: {},
|
||||||
|
render: function (h) {
|
||||||
|
return h(
|
||||||
|
'span',
|
||||||
|
{
|
||||||
|
class: 'small-title',
|
||||||
|
style: {
|
||||||
|
fontSize: '18px',
|
||||||
|
lineHeight:
|
||||||
|
this.size == 'lg' ? '24px' : this.size == 'sm' ? '18px' : '20px',
|
||||||
|
fontWeight: 500,
|
||||||
|
fontFamily: '微软雅黑, Microsoft YaHei, Arial, Helvetica, sans-serif',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
this.$slots.default
|
||||||
|
);
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: { SmallTitle, DialogForm, BaseInfoForm },
|
||||||
|
props: ['sections', 'defaultMode', 'dataId', 'size'], // dataId 作为一个通用的存放id的字段
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
mode: '',
|
||||||
|
visible: false,
|
||||||
|
showForm: false,
|
||||||
|
total: 0,
|
||||||
|
form: {},
|
||||||
|
list: [],
|
||||||
|
attrTitle: '',
|
||||||
|
attrForm: {
|
||||||
|
id: null,
|
||||||
|
equipmentGroupId: '',
|
||||||
|
code: '',
|
||||||
|
type: '',
|
||||||
|
grade: '',
|
||||||
|
alarmCode: '',
|
||||||
|
alarmContent: '',
|
||||||
|
plcParamName: '',
|
||||||
|
},
|
||||||
|
attrFormVisible: false,
|
||||||
|
attrRows: [
|
||||||
|
[
|
||||||
|
{
|
||||||
|
input: true,
|
||||||
|
label: '报警编码', // 自动生成
|
||||||
|
prop: 'code',
|
||||||
|
url: '/base/equipment-group-alarm/getCode',
|
||||||
|
rules: [
|
||||||
|
{ required: true, message: '报警编码不能为空', trigger: 'blur' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
select: true,
|
||||||
|
label: '报警级别', // 字典
|
||||||
|
prop: 'grade',
|
||||||
|
options: this.getDictDatas(this.DICT_TYPE.EQU_ALARM_LEVEL),
|
||||||
|
},
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
input: true,
|
||||||
|
label: '参数列名', // 在实时数据库的列名
|
||||||
|
prop: 'plcParamName',
|
||||||
|
rules: [
|
||||||
|
{ required: true, message: '参数列名不能为空', trigger: 'blur' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
input: true,
|
||||||
|
label: '报警内容',
|
||||||
|
prop: 'alarmContent',
|
||||||
|
rules: [
|
||||||
|
{ required: true, message: '报警内容不能为空', trigger: 'blur' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
select: true,
|
||||||
|
label: '报警类型', // 固定选项
|
||||||
|
prop: 'type',
|
||||||
|
options: [
|
||||||
|
{ label: '布尔型', value: 2 },
|
||||||
|
{ label: '字符型', value: 1 },
|
||||||
|
],
|
||||||
|
rules: [
|
||||||
|
{ required: true, message: '报警类型不能为空', trigger: 'blur' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
input: true,
|
||||||
|
label: '设备报警编码', // 对应到设备实际的报警编码
|
||||||
|
prop: 'alarmCode',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
],
|
||||||
|
attrQuery: {
|
||||||
|
params: {
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
},
|
||||||
|
}, // 属性列表的请求
|
||||||
|
infoQuery: null, // 基本信息的请求
|
||||||
|
attrFormSubmitting: false,
|
||||||
|
attrListLoading: false,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
formRows() {
|
||||||
|
return this.sections[0].rows.map((row) => {
|
||||||
|
return row.map((col) => {
|
||||||
|
return {
|
||||||
|
...col,
|
||||||
|
bind: {
|
||||||
|
// 详情 模式下,禁用各种输入
|
||||||
|
// disabled: this.mode == 'detail',
|
||||||
|
disabled: true,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
});
|
||||||
|
});
|
||||||
|
},
|
||||||
|
tableBtn() {
|
||||||
|
return this.mode == 'detail' ? [] : this.sections[1].tableBtn;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.mode = this.defaultMode || 'detail';
|
||||||
|
for (const section of this.sections) {
|
||||||
|
// 请求具体信息
|
||||||
|
if ('url' in section) {
|
||||||
|
const query = {
|
||||||
|
url: section.url,
|
||||||
|
method: section.method || 'get',
|
||||||
|
params: section.queryParams || null,
|
||||||
|
data: section.data || null,
|
||||||
|
};
|
||||||
|
// debugger;
|
||||||
|
this.$axios(query).then(({ data }) => {
|
||||||
|
if (section.key == 'base') {
|
||||||
|
this.form = data;
|
||||||
|
this.showForm = true;
|
||||||
|
this.infoQuery = query;
|
||||||
|
} else if (section.key == 'attrs') {
|
||||||
|
this.attrQuery = query;
|
||||||
|
this.list = data.list;
|
||||||
|
this.total = data.total;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
handleTableBtnClick({ type, data }) {
|
||||||
|
switch (type) {
|
||||||
|
case 'edit':
|
||||||
|
this.handleEditAttr(data.id);
|
||||||
|
break;
|
||||||
|
case 'delete':
|
||||||
|
this.handleDeleteAttr(data.id);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
handleEmitFun(val) {
|
||||||
|
console.log('handleEmitFun', val);
|
||||||
|
},
|
||||||
|
|
||||||
|
init() {
|
||||||
|
this.visible = true;
|
||||||
|
},
|
||||||
|
|
||||||
|
async getAttrList() {
|
||||||
|
this.attrListLoading = true;
|
||||||
|
const res = await this.$axios(this.attrQuery);
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.list = res.data.list;
|
||||||
|
this.total = res.data.total;
|
||||||
|
}
|
||||||
|
this.attrListLoading = false;
|
||||||
|
},
|
||||||
|
|
||||||
|
// 保存表单
|
||||||
|
handleSave() {
|
||||||
|
this.$refs['form'][0].validate(async (valid) => {
|
||||||
|
if (valid) {
|
||||||
|
const isEdit = !this.mode.includes('detail');
|
||||||
|
await this.$axios({
|
||||||
|
url: this.sections[0][isEdit ? 'urlUpdate' : 'urlCreate'],
|
||||||
|
method: isEdit ? 'put' : 'post',
|
||||||
|
data: this.form,
|
||||||
|
});
|
||||||
|
this.$modal.msgSuccess(`${isEdit ? '更新' : '创建'}成功`);
|
||||||
|
this.visible = false;
|
||||||
|
this.$emit('refreshDataList');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
handleCancel() {
|
||||||
|
this.visible = false;
|
||||||
|
},
|
||||||
|
|
||||||
|
// 开启编辑
|
||||||
|
toggleEdit() {
|
||||||
|
this.mode = 'edit';
|
||||||
|
},
|
||||||
|
|
||||||
|
// 新增属性
|
||||||
|
handleAddAttr() {
|
||||||
|
if (!this.dataId) return this.$message.error('请先创建设备分组信息');
|
||||||
|
this.attrForm = {
|
||||||
|
id: null,
|
||||||
|
equipmentGroupId: this.dataId,
|
||||||
|
code: '',
|
||||||
|
type: '',
|
||||||
|
grade: '',
|
||||||
|
alarmCode: '',
|
||||||
|
alarmContent: '',
|
||||||
|
plcParamName: '',
|
||||||
|
};
|
||||||
|
this.attrTitle = '添加设备分组报警';
|
||||||
|
this.attrFormVisible = true;
|
||||||
|
},
|
||||||
|
|
||||||
|
// 编辑属性
|
||||||
|
async handleEditAttr(attrId) {
|
||||||
|
const res = await this.$axios({
|
||||||
|
url: this.sections[1].urlDetail,
|
||||||
|
method: 'get',
|
||||||
|
params: { id: attrId },
|
||||||
|
});
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.attrForm = res.data;
|
||||||
|
this.attrTitle = '编辑设备分组报警';
|
||||||
|
this.attrFormVisible = true;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// 删除属性
|
||||||
|
handleDeleteAttr(attrId) {
|
||||||
|
this.$confirm('确定删除该分组报警?', '提示', {
|
||||||
|
confirmButtonText: '确定',
|
||||||
|
cancelButtonText: '取消',
|
||||||
|
type: 'warning',
|
||||||
|
})
|
||||||
|
.then(async () => {
|
||||||
|
const res = await this.$axios({
|
||||||
|
url: this.sections[1].urlDelete,
|
||||||
|
method: 'delete',
|
||||||
|
params: { id: attrId },
|
||||||
|
});
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.$message({
|
||||||
|
message: '删除成功',
|
||||||
|
type: 'success',
|
||||||
|
duration: 1500,
|
||||||
|
onClose: () => {
|
||||||
|
this.getAttrList();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(() => {});
|
||||||
|
},
|
||||||
|
|
||||||
|
// 提交属性表
|
||||||
|
submitAttrForm() {
|
||||||
|
this.$refs['attrForm'].validate(async (valid) => {
|
||||||
|
if (!valid) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const isEdit = this.attrForm.id != null;
|
||||||
|
this.attrFormSubmitting = true;
|
||||||
|
const res = await this.$axios({
|
||||||
|
url: isEdit ? this.sections[1].urlUpdate : this.sections[1].urlCreate,
|
||||||
|
method: isEdit ? 'put' : 'post',
|
||||||
|
data: this.attrForm,
|
||||||
|
});
|
||||||
|
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.closeAttrForm();
|
||||||
|
this.$message({
|
||||||
|
message: `${isEdit ? '更新' : '创建'}成功`,
|
||||||
|
type: 'success',
|
||||||
|
duration: 1500,
|
||||||
|
onClose: () => {
|
||||||
|
this.getAttrList();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
this.attrFormSubmitting = false;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
closeAttrForm() {
|
||||||
|
this.attrFormVisible = false;
|
||||||
|
},
|
||||||
|
|
||||||
|
handleClick(raw) {
|
||||||
|
if (raw.type === 'delete') {
|
||||||
|
this.$confirm(`确定删除该报警?`, '提示', {
|
||||||
|
confirmButtonText: '确定',
|
||||||
|
cancelButtonText: '取消',
|
||||||
|
type: 'warning',
|
||||||
|
})
|
||||||
|
.then(() => {
|
||||||
|
deleteProductAttr(raw.data.id).then(({ data }) => {
|
||||||
|
this.$message({
|
||||||
|
message: '操作成功',
|
||||||
|
type: 'success',
|
||||||
|
duration: 1500,
|
||||||
|
onClose: () => {
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
});
|
||||||
|
})
|
||||||
|
.catch(() => {});
|
||||||
|
} else {
|
||||||
|
this.addNew(raw.data.id);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.drawer >>> .el-drawer {
|
||||||
|
border-radius: 8px 0 0 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer >>> .el-drawer__header {
|
||||||
|
margin: 0;
|
||||||
|
padding: 32px 32px 24px;
|
||||||
|
border-bottom: 1px solid #dcdfe6;
|
||||||
|
margin-bottom: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.small-title::before {
|
||||||
|
content: '';
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: top;
|
||||||
|
width: 4px;
|
||||||
|
height: 22px;
|
||||||
|
border-radius: 1px;
|
||||||
|
margin-right: 8px;
|
||||||
|
background-color: #0b58ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer-body {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer-body__content {
|
||||||
|
flex: 1;
|
||||||
|
/* background: #eee; */
|
||||||
|
padding: 20px 30px;
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer-body__footer {
|
||||||
|
display: flex;
|
||||||
|
justify-content: flex-end;
|
||||||
|
padding: 18px;
|
||||||
|
}
|
||||||
|
</style>
|
@ -37,6 +37,7 @@
|
|||||||
<EquipmentInfoForm
|
<EquipmentInfoForm
|
||||||
key="drawer-dialog-form"
|
key="drawer-dialog-form"
|
||||||
v-if="showForm"
|
v-if="showForm"
|
||||||
|
:isFireEquipment="isFireEquipment"
|
||||||
:disabled="mode.includes('detail')"
|
:disabled="mode.includes('detail')"
|
||||||
:sync-filelist="syncFileListFlag"
|
:sync-filelist="syncFileListFlag"
|
||||||
v-model="form" />
|
v-model="form" />
|
||||||
@ -149,7 +150,7 @@ const SmallTitle = {
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: { SmallTitle, DialogForm, EquipmentInfoForm },
|
components: { SmallTitle, DialogForm, EquipmentInfoForm },
|
||||||
props: ['sections', 'mode', 'dataId'], // dataId 作为一个通用的存放id的字段
|
props: ['sections', 'mode', 'dataId', 'isFireEquipment'], // dataId 作为一个通用的存放id的字段
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
visible: false,
|
visible: false,
|
||||||
@ -242,50 +243,6 @@ export default {
|
|||||||
this.$axios(query).then(({ data }) => {
|
this.$axios(query).then(({ data }) => {
|
||||||
if (section.key == 'base') {
|
if (section.key == 'base') {
|
||||||
this.form = data;
|
this.form = data;
|
||||||
// this.form = {
|
|
||||||
// code: 'gj',
|
|
||||||
// name: '下片机',
|
|
||||||
// enName: 'unload',
|
|
||||||
// abbr: '',
|
|
||||||
// equipmentTypeId: 21084,
|
|
||||||
// remark: '备注',
|
|
||||||
// id: '1712367395052384257',
|
|
||||||
// createTime: 1697095176000,
|
|
||||||
// enterTime: 0,
|
|
||||||
// productionTime: 0,
|
|
||||||
// files: [
|
|
||||||
// {
|
|
||||||
// fileName: '测试.xlsx',
|
|
||||||
// fileUrl: 'https://nimg.ws.126.net/?url=http%3A%2F%2Fdingyue.ws.126.net%2F2022%2F0108%2F0f0c6f30j00r5cle9000sc000hs00gtc.jpg&thumbnail=660x2147483647&quality=80&type=jpg',
|
|
||||||
// fileType: 1
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// fileName: '测试2.xlsx',
|
|
||||||
// fileUrl: 'https://nimg.ws.126.net/?url=http%3A%2F%2Fdingyue.ws.126.net%2F2022%2F0415%2F2cd23619j00racb96000kc000hs00hsc.jpg&thumbnail=660x2147483647&quality=80&type=jpg',
|
|
||||||
// fileType: 1
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// fileName: '测试3.xlsx',
|
|
||||||
// fileUrl: 'https://gimg2.baidu.com/image_search/src=http%3A%2F%2Fsafe-img.xhscdn.com%2Fbw1%2F1fea91a0-d088-409e-b145-e0e61254b28b%3FimageView2%2F2%2Fw%2F1080%2Fformat%2Fjpg&refer=http%3A%2F%2Fsafe-img.xhscdn.com&app=2002&size=f9999,10000&q=a80&n=0&g=0n&fmt=auto?sec=1700031689&t=2e0fe7d1de7f54adff3007efe133d67c',
|
|
||||||
// fileType: 1
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// fileName: '测试4.xlsx',
|
|
||||||
// fileUrl: 'https://pics5.baidu.com/feed/b7003af33a87e950cdfb4b4546eed044faf2b40d.jpeg?token=1d7484cfe4b014dd201f8c8725cab945',
|
|
||||||
// fileType: 2
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// fileName: '测试5.xlsx',
|
|
||||||
// fileUrl: 'https://gimg2.baidu.com/image_search/src=http%3A%2F%2Fsafe-img.xhscdn.com%2Fbw1%2Fe3500876-9c46-4b70-8d37-4799520cdd13%3FimageView2%2F2%2Fw%2F1080%2Fformat%2Fjpg&refer=http%3A%2F%2Fsafe-img.xhscdn.com&app=2002&size=f9999,10000&q=a80&n=0&g=0n&fmt=auto?sec=1700031689&t=4abc1df930e62730e5361a7d3765e0f2',
|
|
||||||
// fileType: 2
|
|
||||||
// },
|
|
||||||
// ],
|
|
||||||
// tvalue: 0,
|
|
||||||
// processingTime: 0,
|
|
||||||
// manufacturer: '',
|
|
||||||
// spec: '',
|
|
||||||
// description: '描述',
|
|
||||||
// };
|
|
||||||
this.showForm = true;
|
this.showForm = true;
|
||||||
this.infoQuery = query;
|
this.infoQuery = query;
|
||||||
} else if (section.key == 'attrs') {
|
} else if (section.key == 'attrs') {
|
||||||
@ -323,6 +280,7 @@ export default {
|
|||||||
}
|
}
|
||||||
|
|
||||||
this.btnLoading = false;
|
this.btnLoading = false;
|
||||||
|
this.$emit('refreshDataList');
|
||||||
this.handleCancel();
|
this.handleCancel();
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
@ -6,141 +6,252 @@
|
|||||||
-->
|
-->
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<el-form class="equipment-info-form" ref="form" :model="form" label-width="200px" label-position="top"
|
<el-form
|
||||||
|
class="equipment-info-form"
|
||||||
|
ref="form"
|
||||||
|
:model="form"
|
||||||
|
label-width="200px"
|
||||||
|
label-position="top"
|
||||||
v-loading="formLoading">
|
v-loading="formLoading">
|
||||||
<el-row :gutter="20">
|
<el-row :gutter="20">
|
||||||
<el-col :span="8">
|
<el-col :span="12">
|
||||||
<el-form-item label="设备名称" prop="name" :rules="[{ required: true, message: '设备名称不能为空', trigger: 'blur' }]">
|
<el-form-item
|
||||||
<el-input v-model="form.name" :disabled="disabled" placeholder="请输入设备名称"></el-input>
|
label="设备名称"
|
||||||
|
prop="name"
|
||||||
|
:rules="[
|
||||||
|
{ required: true, message: '设备名称不能为空', trigger: 'blur' },
|
||||||
|
]">
|
||||||
|
<el-input
|
||||||
|
v-model="form.name"
|
||||||
|
:disabled="disabled"
|
||||||
|
placeholder="请输入设备名称"></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="8">
|
<el-col :span="12">
|
||||||
<el-form-item label="设备编码" prop="code" :rules="[]">
|
<el-form-item label="设备编码" prop="code" :rules="[]">
|
||||||
<el-input v-model="form.code" :disabled="disabled" placeholder="请输入设备编码"></el-input>
|
<el-input
|
||||||
|
v-model="form.code"
|
||||||
|
:disabled="disabled"
|
||||||
|
placeholder="请输入设备编码"></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="8">
|
<!-- <el-col :span="8">
|
||||||
<el-form-item label="英文名称" prop="enName" :rules="[]">
|
<el-form-item label="英文名称" prop="enName" :rules="[]">
|
||||||
<el-input v-model="form.enName" :disabled="disabled" placeholder="请输入英文名称"></el-input>
|
<el-input
|
||||||
|
v-model="form.enName"
|
||||||
|
:disabled="disabled"
|
||||||
|
placeholder="请输入英文名称"></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col> -->
|
||||||
</el-row>
|
</el-row>
|
||||||
<el-row :gutter="20">
|
<el-row :gutter="20">
|
||||||
<el-col :span="8">
|
<el-col :span="12">
|
||||||
<el-form-item label="缩写" prop="abbr" :rules="[]">
|
<el-form-item label="所在区域" prop="location">
|
||||||
<el-input v-model="form.abbr" :disabled="disabled" placeholder="请输入名称缩写"></el-input>
|
<el-input
|
||||||
|
v-model="form.location"
|
||||||
|
:disabled="disabled"
|
||||||
|
placeholder="请输入所在区域"></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="8">
|
<el-col :span="12">
|
||||||
<el-form-item label="设备类型" prop="equipmentTypeId"
|
<el-form-item label="负责人" prop="responsiblePeopleId">
|
||||||
:rules="[{ required: true, message: '设备类型不能为空', trigger: 'blur' }]">
|
<el-select
|
||||||
<el-select v-model="form.equipmentTypeId" :disabled="disabled" filterable placeholder="请选择设备类型">
|
v-model="form.responsiblePeopleId"
|
||||||
<el-option v-for="eqType in eqTypeList" :key="eqType.id" :label="eqType.name"
|
:disabled="disabled"
|
||||||
:value="eqType.id"></el-option>
|
placeholder="请输入负责人">
|
||||||
|
<el-option
|
||||||
|
v-for="rp in rpList"
|
||||||
|
:key="rp.id"
|
||||||
|
:label="rp.name"
|
||||||
|
:value="rp.id"></el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
|
<!-- <el-col :span="8">
|
||||||
<el-col :span="8">
|
<el-form-item label="缩写" prop="abbr" :rules="[]">
|
||||||
<el-form-item label="预计生产时间(min/天)" prop="workTime" :rules="[
|
<el-input
|
||||||
{ required: true, message: '预计生产时间不能为空', trigger: 'blur' },
|
v-model="form.abbr"
|
||||||
{
|
:disabled="disabled"
|
||||||
type: 'number',
|
placeholder="请输入名称缩写"></el-input>
|
||||||
message: '请输入正确的数字值',
|
|
||||||
trigger: 'blur',
|
|
||||||
transform: (val) => Number(val),
|
|
||||||
},
|
|
||||||
]">
|
|
||||||
<el-input v-model="form.workTime" :disabled="disabled" placeholder="请输入预计生产时间"></el-input>
|
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item
|
||||||
|
label="设备类型"
|
||||||
|
prop="equipmentTypeId"
|
||||||
|
:rules="[
|
||||||
|
{ required: true, message: '设备类型不能为空', trigger: 'blur' },
|
||||||
|
]">
|
||||||
|
<el-select
|
||||||
|
v-model="form.equipmentTypeId"
|
||||||
|
:disabled="disabled"
|
||||||
|
filterable
|
||||||
|
placeholder="请选择设备类型">
|
||||||
|
<el-option
|
||||||
|
v-for="eqType in rpList"
|
||||||
|
:key="eqType.id"
|
||||||
|
:label="eqType.name"
|
||||||
|
:value="eqType.id"></el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col> -->
|
||||||
|
|
||||||
|
<!-- <el-col :span="8">
|
||||||
|
<el-form-item
|
||||||
|
label="预计生产时间(min/天)"
|
||||||
|
prop="workTime"
|
||||||
|
:rules="[
|
||||||
|
{
|
||||||
|
required: true,
|
||||||
|
message: '预计生产时间不能为空',
|
||||||
|
trigger: 'blur',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'number',
|
||||||
|
message: '请输入正确的数字值',
|
||||||
|
trigger: 'blur',
|
||||||
|
transform: (val) => Number(val),
|
||||||
|
},
|
||||||
|
]">
|
||||||
|
<el-input
|
||||||
|
v-model="form.workTime"
|
||||||
|
:disabled="disabled"
|
||||||
|
placeholder="请输入预计生产时间"></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col> -->
|
||||||
</el-row>
|
</el-row>
|
||||||
<el-row :gutter="20">
|
<el-row :gutter="20">
|
||||||
<el-col :span="8">
|
<el-col v-if="isFireEquipment" :span="12">
|
||||||
|
<el-form-item label="有效期至" prop="dueDate" :rules="[]">
|
||||||
|
<el-date-picker
|
||||||
|
v-model="form.dueDate"
|
||||||
|
:disabled="disabled"
|
||||||
|
type="datetime"
|
||||||
|
placeholder="请选择生产日期"
|
||||||
|
value-format="timestamp"></el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<!-- <el-col :span="8">
|
||||||
<el-form-item label="生产日期" prop="productionTime" :rules="[]">
|
<el-form-item label="生产日期" prop="productionTime" :rules="[]">
|
||||||
<el-date-picker v-model="form.enterTime" :disabled="disabled" type="datetime" placeholder="请选择生产日期"
|
<el-date-picker
|
||||||
|
v-model="form.enterTime"
|
||||||
|
:disabled="disabled"
|
||||||
|
type="datetime"
|
||||||
|
placeholder="请选择生产日期"
|
||||||
value-format="timestamp"></el-date-picker>
|
value-format="timestamp"></el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col> -->
|
||||||
<el-col :span="8">
|
<!-- <el-col :span="8">
|
||||||
<el-form-item label="进场日期" prop="enterTime" :rules="[]">
|
<el-form-item label="进场日期" prop="enterTime" :rules="[]">
|
||||||
<el-date-picker v-model="form.enterTime" :disabled="disabled" type="datetime" placeholder="请选择进场日期"
|
<el-date-picker
|
||||||
|
v-model="form.enterTime"
|
||||||
|
:disabled="disabled"
|
||||||
|
type="datetime"
|
||||||
|
placeholder="请选择进场日期"
|
||||||
value-format="timestamp"></el-date-picker>
|
value-format="timestamp"></el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="8">
|
<el-col :span="8">
|
||||||
<el-form-item label="设备TT值" prop="tvalue" :rules="[
|
<el-form-item
|
||||||
{ required: true, message: '设备TT值不能为空', trigger: 'blur' },
|
label="设备TT值"
|
||||||
{
|
prop="tvalue"
|
||||||
type: 'number',
|
:rules="[
|
||||||
message: '请输入正确的数字值',
|
{ required: true, message: '设备TT值不能为空', trigger: 'blur' },
|
||||||
trigger: 'blur',
|
{
|
||||||
transform: (val) => Number(val),
|
type: 'number',
|
||||||
},
|
message: '请输入正确的数字值',
|
||||||
]">
|
trigger: 'blur',
|
||||||
<el-input v-model="form.tvalue" :disabled="disabled" placeholder="请输入设备TT值"></el-input>
|
transform: (val) => Number(val),
|
||||||
|
},
|
||||||
|
]">
|
||||||
|
<el-input
|
||||||
|
v-model="form.tvalue"
|
||||||
|
:disabled="disabled"
|
||||||
|
placeholder="请输入设备TT值"></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col> -->
|
||||||
</el-row>
|
</el-row>
|
||||||
<el-row :gutter="20">
|
<el-row :gutter="20">
|
||||||
<el-col :span="8">
|
<!-- <el-col :span="8">
|
||||||
<el-form-item label="产品加工时间(s)" prop="processingTime" :rules="[
|
<el-form-item
|
||||||
{ required: true, message: '产品加工时间不能为空', trigger: 'blur' },
|
label="产品加工时间(s)"
|
||||||
{
|
prop="processingTime"
|
||||||
type: 'number',
|
:rules="[
|
||||||
message: '请输入正确的数字值',
|
{
|
||||||
trigger: 'blur',
|
required: true,
|
||||||
transform: (val) => Number(val),
|
message: '产品加工时间不能为空',
|
||||||
},
|
trigger: 'blur',
|
||||||
]">
|
},
|
||||||
<el-input v-model="form.processingTime" :disabled="disabled" placeholder="请输入产品加工时间"></el-input>
|
{
|
||||||
|
type: 'number',
|
||||||
|
message: '请输入正确的数字值',
|
||||||
|
trigger: 'blur',
|
||||||
|
transform: (val) => Number(val),
|
||||||
|
},
|
||||||
|
]">
|
||||||
|
<el-input
|
||||||
|
v-model="form.processingTime"
|
||||||
|
:disabled="disabled"
|
||||||
|
placeholder="请输入产品加工时间"></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="8">
|
<el-col :span="8">
|
||||||
<el-form-item label="制造商" prop="manufacturer" :rules="[]">
|
<el-form-item label="制造商" prop="manufacturer" :rules="[]">
|
||||||
<el-input v-model="form.manufacturer" :disabled="disabled" placeholder="请输入制造商"></el-input>
|
<el-input
|
||||||
|
v-model="form.manufacturer"
|
||||||
|
:disabled="disabled"
|
||||||
|
placeholder="请输入制造商"></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="8">
|
<el-col :span="8">
|
||||||
<el-form-item label="设备规格" prop="spec" :rules="[]">
|
<el-form-item label="设备规格" prop="spec" :rules="[]">
|
||||||
<el-input v-model="form.spec" :disabled="disabled" placeholder="请输入设备规格"></el-input>
|
<el-input
|
||||||
|
v-model="form.spec"
|
||||||
|
:disabled="disabled"
|
||||||
|
placeholder="请输入设备规格"></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col> -->
|
||||||
</el-row>
|
</el-row>
|
||||||
<el-row :gutter="20">
|
<!-- <el-row :gutter="20">
|
||||||
<!-- 功能描述 -->
|
|
||||||
<el-col>
|
<el-col>
|
||||||
<el-form-item label="功能描述" prop="description" :rules="[]">
|
<el-form-item label="功能描述" prop="description" :rules="[]">
|
||||||
<el-input type="textarea" :disabled="disabled" v-model="form.description"
|
<el-input
|
||||||
|
type="textarea"
|
||||||
|
:disabled="disabled"
|
||||||
|
v-model="form.description"
|
||||||
placeholder="请填写功能描述"></el-input>
|
placeholder="请填写功能描述"></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row> -->
|
||||||
<el-row :gutter="20">
|
<!-- <el-row :gutter="20">
|
||||||
<!-- 功能描述 -->
|
|
||||||
<el-col>
|
<el-col>
|
||||||
<el-form-item label="备注" prop="remark" :rules="[]">
|
<el-form-item label="备注" prop="remark" :rules="[]">
|
||||||
<el-input v-model="form.remark" :disabled="disabled" placeholder="请输入备注"></el-input>
|
<el-input
|
||||||
|
v-model="form.remark"
|
||||||
|
:disabled="disabled"
|
||||||
|
placeholder="请输入备注"></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row> -->
|
||||||
<el-row :gutter="20">
|
<el-row :gutter="20">
|
||||||
<!-- 上传资料 -->
|
<!-- 上传资料 -->
|
||||||
<el-col>
|
<el-col>
|
||||||
<el-form-item label="上传资料" prop="assets" :rules="[]">
|
<el-form-item label="上传图片" prop="assets" :rules="[]">
|
||||||
<AssetsUpload v-model="form.assets" :disabled="disabled" />
|
<AssetsUpload v-model="form.assets" :disabled="disabled" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
<el-row :gutter="20">
|
<!-- 上传图片 -->
|
||||||
<!-- 上传图片 -->
|
<!-- <el-row :gutter="20">
|
||||||
<el-col>
|
<el-col>
|
||||||
<el-form-item label="上传图片" prop="pics" :rules="[]">
|
<el-form-item label="上传图片" prop="pics" :rules="[]">
|
||||||
<AssetsUpload :is-pic-mode="true" v-model="form.pics" :disabled="disabled" />
|
<AssetsUpload
|
||||||
|
:is-pic-mode="true"
|
||||||
|
v-model="form.pics"
|
||||||
|
:disabled="disabled" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row> -->
|
||||||
</el-form>
|
</el-form>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -173,6 +284,10 @@ export default {
|
|||||||
default: null,
|
default: null,
|
||||||
required: false,
|
required: false,
|
||||||
},
|
},
|
||||||
|
isFireEquipment: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
data() {
|
data() {
|
||||||
@ -195,8 +310,9 @@ export default {
|
|||||||
description: '',
|
description: '',
|
||||||
assets: [],
|
assets: [],
|
||||||
pics: [],
|
pics: [],
|
||||||
|
dueDate: ''
|
||||||
},
|
},
|
||||||
eqTypeList: [],
|
rpList: [],
|
||||||
dataLoaded: false,
|
dataLoaded: false,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
@ -226,26 +342,25 @@ export default {
|
|||||||
},
|
},
|
||||||
|
|
||||||
mounted() {
|
mounted() {
|
||||||
this.getEqTypeList();
|
this.getRpList();
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
updateForm() {
|
updateForm() {
|
||||||
console.log('update form ==> ');
|
|
||||||
this.form.files = [...this.form.assets, ...this.form.pics];
|
this.form.files = [...this.form.assets, ...this.form.pics];
|
||||||
delete this.form.assets;
|
delete this.form.assets;
|
||||||
delete this.form.pics;
|
delete this.form.pics;
|
||||||
this.$emit('update', this.form);
|
this.$emit('update', this.form);
|
||||||
},
|
},
|
||||||
|
|
||||||
async getEqTypeList() {
|
async getRpList() {
|
||||||
this.formLoading = true;
|
this.formLoading = true;
|
||||||
const { code, data } = await this.$axios(
|
const { code, data } = await this.$axios(
|
||||||
'/base/core-equipment-type/page?pageNo=1&pageSize=100'
|
'/base/core-worker/listAll'
|
||||||
);
|
);
|
||||||
// debugger;
|
// debugger;
|
||||||
if (code == 0) {
|
if (code == 0) {
|
||||||
this.eqTypeList = data.list;
|
this.rpList = data;
|
||||||
}
|
}
|
||||||
this.formLoading = false;
|
this.formLoading = false;
|
||||||
},
|
},
|
||||||
@ -263,7 +378,7 @@ export default {
|
|||||||
return response.data;
|
return response.data;
|
||||||
},
|
},
|
||||||
// 上传成功的特殊处理
|
// 上传成功的特殊处理
|
||||||
beforeUpload() { },
|
beforeUpload() {},
|
||||||
// 上传前的验证规则可通过 bind 属性传入
|
// 上传前的验证规则可通过 bind 属性传入
|
||||||
handleUploadSuccess(response, file, fileList) {
|
handleUploadSuccess(response, file, fileList) {
|
||||||
// 保存原始文件名
|
// 保存原始文件名
|
||||||
|
170
src/views/specialEquipment/components/dialogInDrawer.vue
Normal file
170
src/views/specialEquipment/components/dialogInDrawer.vue
Normal file
@ -0,0 +1,170 @@
|
|||||||
|
<!--
|
||||||
|
filename: dialogForm.vue
|
||||||
|
author: liubin
|
||||||
|
date: 2023-09-11 15:55:13
|
||||||
|
description: DialogForm for equipmentBindSection only
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<el-form
|
||||||
|
ref="form"
|
||||||
|
:model="dataForm"
|
||||||
|
label-width="100px"
|
||||||
|
v-loading="formLoading">
|
||||||
|
<el-row :gutter="20">
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item
|
||||||
|
label="报警编码"
|
||||||
|
prop="code"
|
||||||
|
:rules="[{ required: true, message: '报警编码不能为空', trigger: 'blur' }]">
|
||||||
|
<el-input
|
||||||
|
:disabled="disabled"
|
||||||
|
v-model="dataForm.code"
|
||||||
|
@change="$emit('update', dataForm)"
|
||||||
|
placeholder="请输入报警编码" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item
|
||||||
|
label="报警级别"
|
||||||
|
prop="grade"
|
||||||
|
:rules="[{ required: true, message: '报警级别不能为空', trigger: 'blur' }]">
|
||||||
|
<el-select
|
||||||
|
:disabled="disabled"
|
||||||
|
v-model="dataForm.grade"
|
||||||
|
placeholder="请选择报警级别"
|
||||||
|
@change="$emit('update', dataForm)">
|
||||||
|
<el-option
|
||||||
|
v-for="opt in getDictDatas(DICT_TYPE.EQU_ALARM_LEVEL)"
|
||||||
|
:key="opt.value"
|
||||||
|
:label="opt.label"
|
||||||
|
:value="opt.value" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row :gutter="20">
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item
|
||||||
|
label="参数列名"
|
||||||
|
prop="plcParamName"
|
||||||
|
:rules="[{ required: true, message: '参数列名不能为空', trigger: 'blur' }]">
|
||||||
|
<el-input
|
||||||
|
:disabled="disabled"
|
||||||
|
v-model="dataForm.plcParamName"
|
||||||
|
placeholder="请输入参数列名"
|
||||||
|
@change="$emit('update', dataForm)"></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item
|
||||||
|
label="报警内容"
|
||||||
|
prop="alarmContent"
|
||||||
|
:rules="[{ required: true, message: '报警内容不能为空', trigger: 'blur' }]">
|
||||||
|
<el-input
|
||||||
|
:disabled="disabled"
|
||||||
|
v-model="dataForm.alarmContent"
|
||||||
|
placeholder="请输入报警内容"
|
||||||
|
@change="$emit('update', dataForm)"></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row :gutter="20">
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item
|
||||||
|
label="报警类型"
|
||||||
|
prop="type"
|
||||||
|
:rules="[{ required: true, message: '报警类型不能为空', trigger: 'blur' }]">
|
||||||
|
<el-select
|
||||||
|
:disabled="disabled"
|
||||||
|
v-model="dataForm.type"
|
||||||
|
placeholder="请选择报警类型"
|
||||||
|
@change="handleTypeChange">
|
||||||
|
<el-option
|
||||||
|
v-for="opt in [
|
||||||
|
{ label: '布尔型', value: 2 },
|
||||||
|
{ label: '字符型', value: 1 },
|
||||||
|
]"
|
||||||
|
:key="opt.value"
|
||||||
|
:label="opt.label"
|
||||||
|
:value="opt.value" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item
|
||||||
|
v-if="+dataForm.type == 1"
|
||||||
|
label="设备报警编码"
|
||||||
|
prop="alarmCode">
|
||||||
|
<el-input
|
||||||
|
:disabled="disabled"
|
||||||
|
v-model="dataForm.alarmCode"
|
||||||
|
@change="$emit('update', dataForm)"
|
||||||
|
placeholder="请输入设备报警编码" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-form>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: 'DialogForm',
|
||||||
|
model: {
|
||||||
|
prop: 'dataForm',
|
||||||
|
event: 'update',
|
||||||
|
},
|
||||||
|
emits: ['update'],
|
||||||
|
components: {},
|
||||||
|
props: {
|
||||||
|
dataForm: {
|
||||||
|
type: Object,
|
||||||
|
default: () => ({}),
|
||||||
|
},
|
||||||
|
disabled: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
formLoading: true,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.getCode('/base/equipment-group-alarm/getCode').then((code) => {
|
||||||
|
this.formLoading = false;
|
||||||
|
this.$emit('update', {
|
||||||
|
...this.dataForm,
|
||||||
|
code,
|
||||||
|
});
|
||||||
|
});
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
/** 模拟透传 ref */
|
||||||
|
validate(cb) {
|
||||||
|
return this.$refs.form.validate(cb);
|
||||||
|
},
|
||||||
|
resetFields(args) {
|
||||||
|
return this.$refs.form.resetFields(args);
|
||||||
|
},
|
||||||
|
async handleTypeChange(id) {
|
||||||
|
// debugger;
|
||||||
|
this.dataForm.alarmCode = '';
|
||||||
|
this.$emit('update', this.dataForm);
|
||||||
|
},
|
||||||
|
async getCode(url) {
|
||||||
|
const response = await this.$axios(url);
|
||||||
|
return response.data;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
.el-date-editor,
|
||||||
|
.el-select {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
</style>
|
508
src/views/specialEquipment/components/firefightingDrawer.vue
Normal file
508
src/views/specialEquipment/components/firefightingDrawer.vue
Normal file
@ -0,0 +1,508 @@
|
|||||||
|
<!--
|
||||||
|
filename: Fire Fighting Drawer.vue
|
||||||
|
author: liubin
|
||||||
|
date: 2024-2-19 10:38:56
|
||||||
|
description:
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<el-drawer
|
||||||
|
:visible="visible"
|
||||||
|
:show-close="false"
|
||||||
|
:wrapper-closable="false"
|
||||||
|
class="drawer"
|
||||||
|
custom-class="mes-drawer"
|
||||||
|
size="60%"
|
||||||
|
@closed="$emit('destroy')">
|
||||||
|
<SmallTitle slot="title">
|
||||||
|
{{
|
||||||
|
mode.includes('detail')
|
||||||
|
? '详情'
|
||||||
|
: mode.includes('edit')
|
||||||
|
? '编辑'
|
||||||
|
: '新增'
|
||||||
|
}}
|
||||||
|
</SmallTitle>
|
||||||
|
|
||||||
|
<div class="drawer-body flex">
|
||||||
|
<div class="drawer-body__content">
|
||||||
|
<section v-for="(section, index) in sections" :key="section.key">
|
||||||
|
<SmallTitle v-if="index != 0">{{ section.name }}</SmallTitle>
|
||||||
|
|
||||||
|
<div
|
||||||
|
class="form-part"
|
||||||
|
v-if="section.key == 'base'"
|
||||||
|
style="margin-bottom: 32px">
|
||||||
|
<el-skeleton v-if="!showForm" animated />
|
||||||
|
<EquipmentInfoForm
|
||||||
|
key="drawer-dialog-form"
|
||||||
|
v-if="showForm"
|
||||||
|
:isFireEquipment="isFireEquipment"
|
||||||
|
:disabled="mode.includes('detail')"
|
||||||
|
:sync-filelist="syncFileListFlag"
|
||||||
|
v-model="form" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div
|
||||||
|
v-if="section.key == 'attrs'"
|
||||||
|
style="margin-top: 12px; position: relative">
|
||||||
|
<div
|
||||||
|
v-if="!mode.includes('detail')"
|
||||||
|
style="position: absolute; top: -40px; right: 0">
|
||||||
|
<el-button @click="handleAddAttr" type="text">
|
||||||
|
<i class="el-icon-plus"></i>
|
||||||
|
添加属性
|
||||||
|
</el-button>
|
||||||
|
</div>
|
||||||
|
<base-table
|
||||||
|
v-loading="attrListLoading"
|
||||||
|
:table-props="section.props"
|
||||||
|
:page="attrQuery?.params.pageNo || 1"
|
||||||
|
:limit="attrQuery?.params.pageSize || 10"
|
||||||
|
:table-data="list"
|
||||||
|
@emitFun="handleEmitFun">
|
||||||
|
<!-- :add-button-show="mode.includes('detail') ? null : '添加属性'"
|
||||||
|
@emitButtonClick="handleAddAttr" -->
|
||||||
|
<method-btn
|
||||||
|
v-if="section.tableBtn"
|
||||||
|
slot="handleBtn"
|
||||||
|
label="操作"
|
||||||
|
:method-list="tableBtn"
|
||||||
|
@clickBtn="handleTableBtnClick" />
|
||||||
|
</base-table>
|
||||||
|
|
||||||
|
<!-- 分页组件 -->
|
||||||
|
<pagination
|
||||||
|
v-show="total > 0"
|
||||||
|
:total="total"
|
||||||
|
:page.sync="attrQuery.params.pageNo"
|
||||||
|
:limit.sync="attrQuery.params.pageSize"
|
||||||
|
@pagination="getAttrList" />
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="drawer-body__footer">
|
||||||
|
<el-button style="" @click="handleCancel">取消</el-button>
|
||||||
|
<el-button v-if="mode == 'detail'" type="primary" @click="toggleEdit">
|
||||||
|
编辑
|
||||||
|
</el-button>
|
||||||
|
<el-button v-else type="primary" @click="handleConfirm">保存</el-button>
|
||||||
|
<!-- sections的第二项必须是 属性列表 -->
|
||||||
|
<!-- <el-button
|
||||||
|
v-if="sections[1].allowAdd"
|
||||||
|
type="primary"
|
||||||
|
@click="handleAddAttr">
|
||||||
|
添加属性
|
||||||
|
</el-button> -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- 属性对话框 -->
|
||||||
|
<base-dialog
|
||||||
|
v-if="sections[1].allowAdd"
|
||||||
|
:dialogTitle="attrTitle"
|
||||||
|
:dialogVisible="attrFormVisible"
|
||||||
|
width="35%"
|
||||||
|
:append-to-body="true"
|
||||||
|
custom-class="baseDialog"
|
||||||
|
@close="closeAttrForm"
|
||||||
|
@cancel="closeAttrForm"
|
||||||
|
@confirm="submitAttrForm">
|
||||||
|
<DialogForm
|
||||||
|
v-if="attrFormVisible"
|
||||||
|
ref="attrForm"
|
||||||
|
:dataForm="attrForm"
|
||||||
|
:rows="attrRows" />
|
||||||
|
</base-dialog>
|
||||||
|
</el-drawer>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import DialogForm from './DialogForm';
|
||||||
|
import EquipmentInfoForm from './EquipmentInfoForm.vue';
|
||||||
|
|
||||||
|
const SmallTitle = {
|
||||||
|
name: 'SmallTitle',
|
||||||
|
props: ['size'],
|
||||||
|
components: {},
|
||||||
|
data() {
|
||||||
|
return {};
|
||||||
|
},
|
||||||
|
methods: {},
|
||||||
|
render: function (h) {
|
||||||
|
return h(
|
||||||
|
'span',
|
||||||
|
{
|
||||||
|
class: 'small-title',
|
||||||
|
style: {
|
||||||
|
fontSize: '18px',
|
||||||
|
lineHeight:
|
||||||
|
this.size == 'lg' ? '24px' : this.size == 'sm' ? '18px' : '20px',
|
||||||
|
fontWeight: 500,
|
||||||
|
fontFamily: '微软雅黑, Microsoft YaHei, Arial, Helvetica, sans-serif',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
this.$slots.default
|
||||||
|
);
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: { SmallTitle, DialogForm, EquipmentInfoForm },
|
||||||
|
props: ['sections', 'mode', 'dataId', 'isFireEquipment'], // dataId 作为一个通用的存放id的字段
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
visible: false,
|
||||||
|
showForm: false,
|
||||||
|
btnLoading: false,
|
||||||
|
total: 0,
|
||||||
|
form: {},
|
||||||
|
list: [],
|
||||||
|
attrTitle: '',
|
||||||
|
attrForm: {
|
||||||
|
id: null,
|
||||||
|
equipmentId: null,
|
||||||
|
name: '',
|
||||||
|
value: '',
|
||||||
|
},
|
||||||
|
attrFormVisible: false,
|
||||||
|
attrRows: [
|
||||||
|
[
|
||||||
|
{
|
||||||
|
input: true,
|
||||||
|
label: '属性名称',
|
||||||
|
prop: 'name',
|
||||||
|
rules: [
|
||||||
|
{ required: true, message: '属性名称不能为空', trigger: 'blur' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
input: true,
|
||||||
|
label: '属性值',
|
||||||
|
prop: 'value',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
],
|
||||||
|
attrQuery: {
|
||||||
|
params: {
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
},
|
||||||
|
}, // 属性列表的请求
|
||||||
|
infoQuery: null, // 基本信息的请求
|
||||||
|
attrFormSubmitting: false,
|
||||||
|
attrListLoading: false,
|
||||||
|
syncFileListFlag: null,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
formRows() {
|
||||||
|
return this.sections[0].rows.map((row) => {
|
||||||
|
return row.map((col) => {
|
||||||
|
if (col.key == 'eq-pics') {
|
||||||
|
// 重置图片的位置
|
||||||
|
return {
|
||||||
|
...col,
|
||||||
|
bind: {
|
||||||
|
...col.bind,
|
||||||
|
},
|
||||||
|
style: {
|
||||||
|
left: 0,
|
||||||
|
right: 'unset',
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
return {
|
||||||
|
...col,
|
||||||
|
bind: {
|
||||||
|
...col.bind,
|
||||||
|
// 详情 模式下,禁用各种输入
|
||||||
|
disabled: this.mode == 'detail',
|
||||||
|
},
|
||||||
|
};
|
||||||
|
});
|
||||||
|
});
|
||||||
|
},
|
||||||
|
tableBtn() {
|
||||||
|
return this.mode == 'detail' ? [] : this.sections[1].tableBtn;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
for (const section of this.sections) {
|
||||||
|
// 请求具体信息
|
||||||
|
if ('url' in section) {
|
||||||
|
const query = {
|
||||||
|
url: section.url,
|
||||||
|
method: section.method || 'get',
|
||||||
|
params: section.queryParams || null,
|
||||||
|
data: section.data || null,
|
||||||
|
};
|
||||||
|
this.$axios(query).then(({ data }) => {
|
||||||
|
if (section.key == 'base') {
|
||||||
|
this.form = data;
|
||||||
|
this.showForm = true;
|
||||||
|
this.infoQuery = query;
|
||||||
|
} else if (section.key == 'attrs') {
|
||||||
|
this.attrQuery = query;
|
||||||
|
this.list = data.list;
|
||||||
|
this.total = data.total;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
handleTableBtnClick({ type, data }) {
|
||||||
|
switch (type) {
|
||||||
|
case 'edit':
|
||||||
|
this.handleEditAttr(data.id);
|
||||||
|
break;
|
||||||
|
case 'delete':
|
||||||
|
this.handleDeleteAttr(data.id);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
async handleConfirm() {
|
||||||
|
this.btnLoading = true;
|
||||||
|
this.syncFileListFlag = Math.random();
|
||||||
|
|
||||||
|
this.$nextTick(async () => {
|
||||||
|
const { code, data } = await this.$axios({
|
||||||
|
url: this.sections[0].urlUpdate,
|
||||||
|
method: 'put',
|
||||||
|
data: this.form,
|
||||||
|
});
|
||||||
|
if (code == 0) {
|
||||||
|
this.$modal.msgSuccess('更新成功');
|
||||||
|
}
|
||||||
|
|
||||||
|
this.btnLoading = false;
|
||||||
|
this.$emit('refreshDataList');
|
||||||
|
this.handleCancel();
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
handleEmitFun(val) {
|
||||||
|
console.log('handleEmitFun', val);
|
||||||
|
},
|
||||||
|
|
||||||
|
init() {
|
||||||
|
this.visible = true;
|
||||||
|
},
|
||||||
|
|
||||||
|
async getAttrList() {
|
||||||
|
this.attrListLoading = true;
|
||||||
|
const res = await this.$axios(this.attrQuery);
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.list = res.data.list;
|
||||||
|
this.total = res.data.total;
|
||||||
|
}
|
||||||
|
this.attrListLoading = false;
|
||||||
|
},
|
||||||
|
|
||||||
|
// 保存表单
|
||||||
|
handleSave() {
|
||||||
|
this.$refs['form'][0].validate(async (valid) => {
|
||||||
|
if (valid) {
|
||||||
|
const isEdit = this.mode == 'edit';
|
||||||
|
await this.$axios({
|
||||||
|
url: this.sections[0][isEdit ? 'urlUpdate' : 'urlCreate'],
|
||||||
|
method: isEdit ? 'put' : 'post',
|
||||||
|
data: this.form,
|
||||||
|
});
|
||||||
|
this.$modal.msgSuccess(`${isEdit ? '更新' : '创建'}成功`);
|
||||||
|
this.visible = false;
|
||||||
|
this.$emit('refreshDataList');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
handleCancel() {
|
||||||
|
this.visible = false;
|
||||||
|
},
|
||||||
|
|
||||||
|
// 开启编辑
|
||||||
|
toggleEdit() {
|
||||||
|
this.$emit('update-mode', 'edit');
|
||||||
|
},
|
||||||
|
|
||||||
|
// 新增属性
|
||||||
|
handleAddAttr() {
|
||||||
|
if (!this.dataId) return this.$message.error('请先创建设备信息');
|
||||||
|
this.attrForm = {
|
||||||
|
id: null,
|
||||||
|
equipmentId: this.dataId,
|
||||||
|
name: '',
|
||||||
|
value: '',
|
||||||
|
};
|
||||||
|
this.attrTitle = '添加设备属性';
|
||||||
|
this.attrFormVisible = true;
|
||||||
|
},
|
||||||
|
|
||||||
|
// 编辑属性
|
||||||
|
async handleEditAttr(attrId) {
|
||||||
|
const res = await this.$axios({
|
||||||
|
url: this.sections[1].urlDetail,
|
||||||
|
method: 'get',
|
||||||
|
params: { id: attrId },
|
||||||
|
});
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.attrForm = res.data;
|
||||||
|
this.attrTitle = '编辑设备属性';
|
||||||
|
this.attrFormVisible = true;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// 删除属性
|
||||||
|
handleDeleteAttr(attrId) {
|
||||||
|
this.$confirm('确定删除该属性?', '提示', {
|
||||||
|
confirmButtonText: '确定',
|
||||||
|
cancelButtonText: '取消',
|
||||||
|
type: 'warning',
|
||||||
|
})
|
||||||
|
.then(async () => {
|
||||||
|
const res = await this.$axios({
|
||||||
|
url: this.sections[1].urlDelete,
|
||||||
|
method: 'delete',
|
||||||
|
params: { id: attrId },
|
||||||
|
});
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.$message({
|
||||||
|
message: '删除成功',
|
||||||
|
type: 'success',
|
||||||
|
duration: 1500,
|
||||||
|
onClose: () => {
|
||||||
|
this.getAttrList();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(() => {});
|
||||||
|
},
|
||||||
|
|
||||||
|
// 提交属性表
|
||||||
|
submitAttrForm() {
|
||||||
|
this.$refs['attrForm'].validate(async (valid) => {
|
||||||
|
if (!valid) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
const isEdit = this.attrForm.id != null;
|
||||||
|
this.attrFormSubmitting = true;
|
||||||
|
const res = await this.$axios({
|
||||||
|
url: isEdit
|
||||||
|
? this.sections[1].urlUpdate
|
||||||
|
: this.sections[1].urlCreate,
|
||||||
|
method: isEdit ? 'put' : 'post',
|
||||||
|
data: this.attrForm,
|
||||||
|
});
|
||||||
|
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.closeAttrForm();
|
||||||
|
this.$message({
|
||||||
|
message: `${isEdit ? '更新' : '创建'}成功`,
|
||||||
|
type: 'success',
|
||||||
|
duration: 1500,
|
||||||
|
onClose: () => {
|
||||||
|
this.getAttrList();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
this.attrFormSubmitting = false;
|
||||||
|
} catch (err) {
|
||||||
|
this.$message({
|
||||||
|
message: err,
|
||||||
|
type: 'error',
|
||||||
|
duration: 1500,
|
||||||
|
});
|
||||||
|
this.attrFormSubmitting = false;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
closeAttrForm() {
|
||||||
|
this.attrFormVisible = false;
|
||||||
|
},
|
||||||
|
|
||||||
|
handleClick(raw) {
|
||||||
|
if (raw.type === 'delete') {
|
||||||
|
this.$confirm(
|
||||||
|
`确定对${
|
||||||
|
raw.data.name
|
||||||
|
? '[名称=' + raw.data.name + ']'
|
||||||
|
: '[序号=' + raw.data._pageIndex + ']'
|
||||||
|
}进行删除操作?`,
|
||||||
|
'提示',
|
||||||
|
{
|
||||||
|
confirmButtonText: '确定',
|
||||||
|
cancelButtonText: '取消',
|
||||||
|
type: 'warning',
|
||||||
|
}
|
||||||
|
)
|
||||||
|
.then(() => {
|
||||||
|
deleteProductAttr(raw.data.id).then(({ data }) => {
|
||||||
|
this.$message({
|
||||||
|
message: '操作成功',
|
||||||
|
type: 'success',
|
||||||
|
duration: 1500,
|
||||||
|
onClose: () => {
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
});
|
||||||
|
})
|
||||||
|
.catch(() => {});
|
||||||
|
} else {
|
||||||
|
this.addNew(raw.data.id);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.drawer >>> .el-drawer {
|
||||||
|
border-radius: 8px 0 0 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer >>> .el-drawer__header {
|
||||||
|
margin: 0;
|
||||||
|
padding: 32px 32px 24px;
|
||||||
|
border-bottom: 1px solid #dcdfe6;
|
||||||
|
margin-bottom: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.small-title::before {
|
||||||
|
content: '';
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: top;
|
||||||
|
width: 4px;
|
||||||
|
height: 22px;
|
||||||
|
border-radius: 1px;
|
||||||
|
margin-right: 8px;
|
||||||
|
background-color: #0b58ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer-body {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer-body__content {
|
||||||
|
flex: 1;
|
||||||
|
/* background: #eee; */
|
||||||
|
padding: 20px 30px;
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer-body__footer {
|
||||||
|
display: flex;
|
||||||
|
justify-content: flex-end;
|
||||||
|
padding: 18px;
|
||||||
|
}
|
||||||
|
</style>
|
509
src/views/specialEquipment/components/manageDrawer.vue
Normal file
509
src/views/specialEquipment/components/manageDrawer.vue
Normal file
@ -0,0 +1,509 @@
|
|||||||
|
<!--
|
||||||
|
filename: Speical Equipment Manage Drawer.vue
|
||||||
|
author: liubin
|
||||||
|
date: 2024-2-19 10:38:56
|
||||||
|
description:
|
||||||
|
-->
|
||||||
|
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<el-drawer
|
||||||
|
:visible="visible"
|
||||||
|
:show-close="false"
|
||||||
|
:wrapper-closable="false"
|
||||||
|
class="drawer"
|
||||||
|
custom-class="mes-drawer"
|
||||||
|
size="60%"
|
||||||
|
@closed="$emit('destroy')">
|
||||||
|
<SmallTitle slot="title">
|
||||||
|
{{
|
||||||
|
mode.includes('detail')
|
||||||
|
? '详情'
|
||||||
|
: mode.includes('edit')
|
||||||
|
? '编辑'
|
||||||
|
: '新增'
|
||||||
|
}}
|
||||||
|
</SmallTitle>
|
||||||
|
|
||||||
|
<div class="drawer-body flex">
|
||||||
|
<div class="drawer-body__content">
|
||||||
|
<section v-for="(section, index) in sections" :key="section.key">
|
||||||
|
<SmallTitle v-if="index != 0">{{ section.name }}</SmallTitle>
|
||||||
|
|
||||||
|
<div
|
||||||
|
class="form-part"
|
||||||
|
v-if="section.key == 'base'"
|
||||||
|
style="margin-bottom: 32px">
|
||||||
|
<el-skeleton v-if="!showForm" animated />
|
||||||
|
<EquipmentInfoForm
|
||||||
|
key="drawer-dialog-form"
|
||||||
|
v-if="showForm"
|
||||||
|
:isFireEquipment="isFireEquipment"
|
||||||
|
:disabled="mode.includes('detail')"
|
||||||
|
:sync-filelist="syncFileListFlag"
|
||||||
|
v-model="form" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div
|
||||||
|
v-if="section.key == 'attrs'"
|
||||||
|
style="margin-top: 12px; position: relative">
|
||||||
|
<div
|
||||||
|
v-if="!mode.includes('detail')"
|
||||||
|
style="position: absolute; top: -40px; right: 0">
|
||||||
|
<el-button @click="handleAddAttr" type="text">
|
||||||
|
<i class="el-icon-plus"></i>
|
||||||
|
添加属性
|
||||||
|
</el-button>
|
||||||
|
</div>
|
||||||
|
<base-table
|
||||||
|
v-loading="attrListLoading"
|
||||||
|
:table-props="section.props"
|
||||||
|
:page="attrQuery?.params.pageNo || 1"
|
||||||
|
:limit="attrQuery?.params.pageSize || 10"
|
||||||
|
:table-data="list"
|
||||||
|
@emitFun="handleEmitFun">
|
||||||
|
<!-- :add-button-show="mode.includes('detail') ? null : '添加属性'"
|
||||||
|
@emitButtonClick="handleAddAttr" -->
|
||||||
|
<method-btn
|
||||||
|
v-if="section.tableBtn"
|
||||||
|
slot="handleBtn"
|
||||||
|
label="操作"
|
||||||
|
:method-list="tableBtn"
|
||||||
|
@clickBtn="handleTableBtnClick" />
|
||||||
|
</base-table>
|
||||||
|
|
||||||
|
<!-- 分页组件 -->
|
||||||
|
<pagination
|
||||||
|
v-show="total > 0"
|
||||||
|
:total="total"
|
||||||
|
:page.sync="attrQuery.params.pageNo"
|
||||||
|
:limit.sync="attrQuery.params.pageSize"
|
||||||
|
@pagination="getAttrList" />
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="drawer-body__footer">
|
||||||
|
<el-button style="" @click="handleCancel">取消</el-button>
|
||||||
|
<el-button v-if="mode == 'detail'" type="primary" @click="toggleEdit">
|
||||||
|
编辑
|
||||||
|
</el-button>
|
||||||
|
<el-button v-else type="primary" @click="handleConfirm">保存</el-button>
|
||||||
|
<!-- sections的第二项必须是 属性列表 -->
|
||||||
|
<!-- <el-button
|
||||||
|
v-if="sections[1].allowAdd"
|
||||||
|
type="primary"
|
||||||
|
@click="handleAddAttr">
|
||||||
|
添加属性
|
||||||
|
</el-button> -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- 属性对话框 -->
|
||||||
|
<base-dialog
|
||||||
|
v-if="sections[1].allowAdd"
|
||||||
|
:dialogTitle="attrTitle"
|
||||||
|
:dialogVisible="attrFormVisible"
|
||||||
|
width="35%"
|
||||||
|
:append-to-body="true"
|
||||||
|
custom-class="baseDialog"
|
||||||
|
@close="closeAttrForm"
|
||||||
|
@cancel="closeAttrForm"
|
||||||
|
@confirm="submitAttrForm">
|
||||||
|
<DialogForm
|
||||||
|
v-if="attrFormVisible"
|
||||||
|
ref="attrForm"
|
||||||
|
:dataForm="attrForm"
|
||||||
|
:rows="attrRows" />
|
||||||
|
</base-dialog>
|
||||||
|
</el-drawer>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import DialogForm from './DialogForm';
|
||||||
|
import EquipmentInfoForm from './manageDrawerForm.vue';
|
||||||
|
|
||||||
|
const SmallTitle = {
|
||||||
|
name: 'SmallTitle',
|
||||||
|
props: ['size'],
|
||||||
|
components: {},
|
||||||
|
data() {
|
||||||
|
return {};
|
||||||
|
},
|
||||||
|
methods: {},
|
||||||
|
render: function (h) {
|
||||||
|
return h(
|
||||||
|
'span',
|
||||||
|
{
|
||||||
|
class: 'small-title',
|
||||||
|
style: {
|
||||||
|
fontSize: '18px',
|
||||||
|
lineHeight:
|
||||||
|
this.size == 'lg' ? '24px' : this.size == 'sm' ? '18px' : '20px',
|
||||||
|
fontWeight: 500,
|
||||||
|
fontFamily: '微软雅黑, Microsoft YaHei, Arial, Helvetica, sans-serif',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
this.$slots.default
|
||||||
|
);
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: { SmallTitle, DialogForm, EquipmentInfoForm },
|
||||||
|
props: ['sections', 'mode', 'dataId', 'isFireEquipment'], // dataId 作为一个通用的存放id的字段
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
visible: false,
|
||||||
|
showForm: false,
|
||||||
|
btnLoading: false,
|
||||||
|
total: 0,
|
||||||
|
form: {},
|
||||||
|
list: [],
|
||||||
|
attrTitle: '',
|
||||||
|
attrForm: {
|
||||||
|
id: null,
|
||||||
|
equipmentId: null,
|
||||||
|
name: '',
|
||||||
|
value: '',
|
||||||
|
},
|
||||||
|
attrFormVisible: false,
|
||||||
|
attrRows: [
|
||||||
|
[
|
||||||
|
{
|
||||||
|
input: true,
|
||||||
|
label: '属性名称',
|
||||||
|
prop: 'name',
|
||||||
|
rules: [
|
||||||
|
{ required: true, message: '属性名称不能为空', trigger: 'blur' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
input: true,
|
||||||
|
label: '属性值',
|
||||||
|
prop: 'value',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
],
|
||||||
|
attrQuery: {
|
||||||
|
params: {
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
},
|
||||||
|
}, // 属性列表的请求
|
||||||
|
infoQuery: null, // 基本信息的请求
|
||||||
|
attrFormSubmitting: false,
|
||||||
|
attrListLoading: false,
|
||||||
|
syncFileListFlag: null,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
formRows() {
|
||||||
|
return this.sections[0].rows.map((row) => {
|
||||||
|
return row.map((col) => {
|
||||||
|
if (col.key == 'eq-pics') {
|
||||||
|
// 重置图片的位置
|
||||||
|
return {
|
||||||
|
...col,
|
||||||
|
bind: {
|
||||||
|
...col.bind,
|
||||||
|
},
|
||||||
|
style: {
|
||||||
|
left: 0,
|
||||||
|
right: 'unset',
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
return {
|
||||||
|
...col,
|
||||||
|
bind: {
|
||||||
|
...col.bind,
|
||||||
|
// 详情 模式下,禁用各种输入
|
||||||
|
disabled: this.mode == 'detail',
|
||||||
|
},
|
||||||
|
};
|
||||||
|
});
|
||||||
|
});
|
||||||
|
},
|
||||||
|
tableBtn() {
|
||||||
|
return this.mode == 'detail' ? [] : this.sections[1].tableBtn;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
for (const section of this.sections) {
|
||||||
|
// 请求具体信息
|
||||||
|
if ('url' in section) {
|
||||||
|
const query = {
|
||||||
|
url: section.url,
|
||||||
|
method: section.method || 'get',
|
||||||
|
params: section.queryParams || null,
|
||||||
|
data: section.data || null,
|
||||||
|
};
|
||||||
|
this.$axios(query).then(({ data }) => {
|
||||||
|
if (section.key == 'base') {
|
||||||
|
this.form = data;
|
||||||
|
this.showForm = true;
|
||||||
|
this.infoQuery = query;
|
||||||
|
} else if (section.key == 'attrs') {
|
||||||
|
this.attrQuery = query;
|
||||||
|
this.list = data.list;
|
||||||
|
this.total = data.total;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
handleTableBtnClick({ type, data }) {
|
||||||
|
switch (type) {
|
||||||
|
case 'edit':
|
||||||
|
this.handleEditAttr(data.id);
|
||||||
|
break;
|
||||||
|
case 'delete':
|
||||||
|
this.handleDeleteAttr(data.id);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
async handleConfirm() {
|
||||||
|
this.btnLoading = true;
|
||||||
|
this.syncFileListFlag = Math.random();
|
||||||
|
|
||||||
|
this.$nextTick(async () => {
|
||||||
|
const { code, data } = await this.$axios({
|
||||||
|
url: this.sections[0].urlUpdate,
|
||||||
|
method: 'put',
|
||||||
|
data: this.form,
|
||||||
|
});
|
||||||
|
if (code == 0) {
|
||||||
|
this.$modal.msgSuccess('更新成功');
|
||||||
|
}
|
||||||
|
|
||||||
|
this.btnLoading = false;
|
||||||
|
this.$emit('refreshDataList');
|
||||||
|
this.handleCancel();
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
handleEmitFun(val) {
|
||||||
|
console.log('handleEmitFun', val);
|
||||||
|
},
|
||||||
|
|
||||||
|
init() {
|
||||||
|
this.visible = true;
|
||||||
|
},
|
||||||
|
|
||||||
|
async getAttrList() {
|
||||||
|
this.attrListLoading = true;
|
||||||
|
const res = await this.$axios(this.attrQuery);
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.list = res.data.list;
|
||||||
|
this.total = res.data.total;
|
||||||
|
}
|
||||||
|
this.attrListLoading = false;
|
||||||
|
},
|
||||||
|
|
||||||
|
// 保存表单
|
||||||
|
handleSave() {
|
||||||
|
this.$refs['form'][0].validate(async (valid) => {
|
||||||
|
if (valid) {
|
||||||
|
const isEdit = this.mode == 'edit';
|
||||||
|
await this.$axios({
|
||||||
|
url: this.sections[0][isEdit ? 'urlUpdate' : 'urlCreate'],
|
||||||
|
method: isEdit ? 'put' : 'post',
|
||||||
|
data: this.form,
|
||||||
|
});
|
||||||
|
this.$modal.msgSuccess(`${isEdit ? '更新' : '创建'}成功`);
|
||||||
|
this.visible = false;
|
||||||
|
this.$emit('refreshDataList');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
handleCancel() {
|
||||||
|
this.visible = false;
|
||||||
|
},
|
||||||
|
|
||||||
|
// 开启编辑
|
||||||
|
toggleEdit() {
|
||||||
|
this.$emit('update-mode', 'edit');
|
||||||
|
},
|
||||||
|
|
||||||
|
// 新增属性
|
||||||
|
handleAddAttr() {
|
||||||
|
if (!this.dataId) return this.$message.error('请先创建设备信息');
|
||||||
|
this.attrForm = {
|
||||||
|
id: null,
|
||||||
|
equipmentId: this.dataId,
|
||||||
|
name: '',
|
||||||
|
value: '',
|
||||||
|
};
|
||||||
|
this.attrTitle = '添加设备属性';
|
||||||
|
this.attrFormVisible = true;
|
||||||
|
},
|
||||||
|
|
||||||
|
// 编辑属性
|
||||||
|
async handleEditAttr(attrId) {
|
||||||
|
const res = await this.$axios({
|
||||||
|
url: this.sections[1].urlDetail,
|
||||||
|
method: 'get',
|
||||||
|
params: { id: attrId },
|
||||||
|
});
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.attrForm = res.data;
|
||||||
|
this.attrTitle = '编辑设备属性';
|
||||||
|
this.attrFormVisible = true;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// 删除属性
|
||||||
|
handleDeleteAttr(attrId) {
|
||||||
|
this.$confirm('确定删除该属性?', '提示', {
|
||||||
|
confirmButtonText: '确定',
|
||||||
|
cancelButtonText: '取消',
|
||||||
|
type: 'warning',
|
||||||
|
})
|
||||||
|
.then(async () => {
|
||||||
|
const res = await this.$axios({
|
||||||
|
url: this.sections[1].urlDelete,
|
||||||
|
method: 'delete',
|
||||||
|
params: { id: attrId },
|
||||||
|
});
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.$message({
|
||||||
|
message: '删除成功',
|
||||||
|
type: 'success',
|
||||||
|
duration: 1500,
|
||||||
|
onClose: () => {
|
||||||
|
this.getAttrList();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(() => {});
|
||||||
|
},
|
||||||
|
|
||||||
|
// 提交属性表
|
||||||
|
submitAttrForm() {
|
||||||
|
this.$refs['attrForm'].validate(async (valid) => {
|
||||||
|
if (!valid) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
const isEdit = this.attrForm.id != null;
|
||||||
|
this.attrFormSubmitting = true;
|
||||||
|
const res = await this.$axios({
|
||||||
|
url: isEdit
|
||||||
|
? this.sections[1].urlUpdate
|
||||||
|
: this.sections[1].urlCreate,
|
||||||
|
method: isEdit ? 'put' : 'post',
|
||||||
|
data: this.attrForm,
|
||||||
|
});
|
||||||
|
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.closeAttrForm();
|
||||||
|
this.$message({
|
||||||
|
message: `${isEdit ? '更新' : '创建'}成功`,
|
||||||
|
type: 'success',
|
||||||
|
duration: 1500,
|
||||||
|
onClose: () => {
|
||||||
|
this.getAttrList();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
this.attrFormSubmitting = false;
|
||||||
|
} catch (err) {
|
||||||
|
this.$message({
|
||||||
|
message: err,
|
||||||
|
type: 'error',
|
||||||
|
duration: 1500,
|
||||||
|
});
|
||||||
|
this.attrFormSubmitting = false;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
closeAttrForm() {
|
||||||
|
this.attrFormVisible = false;
|
||||||
|
},
|
||||||
|
|
||||||
|
handleClick(raw) {
|
||||||
|
if (raw.type === 'delete') {
|
||||||
|
this.$confirm(
|
||||||
|
`确定对${
|
||||||
|
raw.data.name
|
||||||
|
? '[名称=' + raw.data.name + ']'
|
||||||
|
: '[序号=' + raw.data._pageIndex + ']'
|
||||||
|
}进行删除操作?`,
|
||||||
|
'提示',
|
||||||
|
{
|
||||||
|
confirmButtonText: '确定',
|
||||||
|
cancelButtonText: '取消',
|
||||||
|
type: 'warning',
|
||||||
|
}
|
||||||
|
)
|
||||||
|
.then(() => {
|
||||||
|
deleteProductAttr(raw.data.id).then(({ data }) => {
|
||||||
|
this.$message({
|
||||||
|
message: '操作成功',
|
||||||
|
type: 'success',
|
||||||
|
duration: 1500,
|
||||||
|
onClose: () => {
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
});
|
||||||
|
})
|
||||||
|
.catch(() => {});
|
||||||
|
} else {
|
||||||
|
this.addNew(raw.data.id);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.drawer >>> .el-drawer {
|
||||||
|
border-radius: 8px 0 0 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer >>> .el-drawer__header {
|
||||||
|
margin: 0;
|
||||||
|
padding: 32px 32px 24px;
|
||||||
|
border-bottom: 1px solid #dcdfe6;
|
||||||
|
margin-bottom: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.small-title::before {
|
||||||
|
content: '';
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: top;
|
||||||
|
width: 4px;
|
||||||
|
height: 22px;
|
||||||
|
border-radius: 1px;
|
||||||
|
margin-right: 8px;
|
||||||
|
background-color: #0b58ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer-body {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer-body__content {
|
||||||
|
flex: 1;
|
||||||
|
/* background: #eee; */
|
||||||
|
padding: 20px 30px;
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer-body__footer {
|
||||||
|
display: flex;
|
||||||
|
justify-content: flex-end;
|
||||||
|
padding: 18px;
|
||||||
|
}
|
||||||
|
</style>
|
228
src/views/specialEquipment/components/manageDrawerForm.vue
Normal file
228
src/views/specialEquipment/components/manageDrawerForm.vue
Normal file
@ -0,0 +1,228 @@
|
|||||||
|
<!--
|
||||||
|
filename: form.vue
|
||||||
|
author: liubin
|
||||||
|
date: 2023-08-15 10:32:36
|
||||||
|
description:
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<el-form
|
||||||
|
class="equipment-info-form"
|
||||||
|
ref="form"
|
||||||
|
:model="form"
|
||||||
|
label-width="200px"
|
||||||
|
label-position="top"
|
||||||
|
v-loading="formLoading">
|
||||||
|
<el-row :gutter="20">
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item
|
||||||
|
label="设备名称"
|
||||||
|
prop="name"
|
||||||
|
:rules="[
|
||||||
|
{ required: true, message: '设备名称不能为空', trigger: 'blur' },
|
||||||
|
]">
|
||||||
|
<el-input
|
||||||
|
v-model="form.name"
|
||||||
|
:disabled="disabled"
|
||||||
|
placeholder="请输入设备名称"></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="设备编码" prop="code" :rules="[]">
|
||||||
|
<el-input
|
||||||
|
v-model="form.code"
|
||||||
|
:disabled="disabled"
|
||||||
|
placeholder="请输入设备编码"></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row :gutter="20">
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="所在区域" prop="location">
|
||||||
|
<el-input
|
||||||
|
v-model="form.location"
|
||||||
|
:disabled="disabled"
|
||||||
|
placeholder="请输入所在区域"></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="负责人" prop="responsiblePeopleId">
|
||||||
|
<el-select
|
||||||
|
v-model="form.responsiblePeopleId"
|
||||||
|
:disabled="disabled"
|
||||||
|
placeholder="请输入负责人">
|
||||||
|
<el-option
|
||||||
|
v-for="rp in rpList"
|
||||||
|
:key="rp.id"
|
||||||
|
:label="rp.name"
|
||||||
|
:value="rp.id"></el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row :gutter="20">
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item label="备注" prop="remark" :rules="[]">
|
||||||
|
<el-input
|
||||||
|
v-model="form.remark"
|
||||||
|
:disabled="disabled"
|
||||||
|
placeholder="请输入备注"></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
|
||||||
|
<el-row :gutter="20">
|
||||||
|
<!-- 上传资料 -->
|
||||||
|
<el-col>
|
||||||
|
<el-form-item label="上传图片" prop="assets" :rules="[]">
|
||||||
|
<AssetsUpload v-model="form.assets" :disabled="disabled" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-form>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import AssetsUpload from './AssetsUpload.vue';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'EquipmentInfoForm',
|
||||||
|
|
||||||
|
model: {
|
||||||
|
prop: 'dataForm',
|
||||||
|
event: 'update',
|
||||||
|
},
|
||||||
|
|
||||||
|
emits: ['update'],
|
||||||
|
|
||||||
|
components: { AssetsUpload },
|
||||||
|
|
||||||
|
props: {
|
||||||
|
dataForm: {
|
||||||
|
type: Object,
|
||||||
|
default: () => ({}),
|
||||||
|
},
|
||||||
|
disabled: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
|
syncFilelist: {
|
||||||
|
type: Number,
|
||||||
|
default: null,
|
||||||
|
required: false,
|
||||||
|
},
|
||||||
|
isFireEquipment: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
formLoading: false,
|
||||||
|
form: {
|
||||||
|
name: '',
|
||||||
|
code: '',
|
||||||
|
enName: '',
|
||||||
|
abbr: '',
|
||||||
|
equipmentTypeId: '',
|
||||||
|
remark: '',
|
||||||
|
productionTime: '',
|
||||||
|
workTime: '',
|
||||||
|
enterTime: '',
|
||||||
|
tvalue: '',
|
||||||
|
processingTime: '',
|
||||||
|
manufacturer: '',
|
||||||
|
spec: '',
|
||||||
|
description: '',
|
||||||
|
assets: [],
|
||||||
|
pics: [],
|
||||||
|
dueDate: '',
|
||||||
|
},
|
||||||
|
rpList: [],
|
||||||
|
dataLoaded: false,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
|
watch: {
|
||||||
|
dataForm: {
|
||||||
|
handler(val) {
|
||||||
|
// debugger;
|
||||||
|
this.form = JSON.parse(JSON.stringify(val));
|
||||||
|
this.form.assets =
|
||||||
|
this.form.files?.filter((item) => item.fileType == '2') || [];
|
||||||
|
this.form.pics =
|
||||||
|
this.form.files?.filter((item) => item.fileType == '1') || [];
|
||||||
|
delete this.form.files;
|
||||||
|
},
|
||||||
|
immediate: true,
|
||||||
|
deep: true,
|
||||||
|
},
|
||||||
|
syncFilelist: {
|
||||||
|
handler(val) {
|
||||||
|
if (val != null) {
|
||||||
|
this.updateForm();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
immediate: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
mounted() {
|
||||||
|
this.getRpList();
|
||||||
|
},
|
||||||
|
|
||||||
|
methods: {
|
||||||
|
updateForm() {
|
||||||
|
this.form.files = [...this.form.assets, ...this.form.pics];
|
||||||
|
delete this.form.assets;
|
||||||
|
delete this.form.pics;
|
||||||
|
this.$emit('update', this.form);
|
||||||
|
},
|
||||||
|
|
||||||
|
async getRpList() {
|
||||||
|
this.formLoading = true;
|
||||||
|
const { code, data } = await this.$axios('/base/core-worker/listAll');
|
||||||
|
// debugger;
|
||||||
|
if (code == 0) {
|
||||||
|
this.rpList = data;
|
||||||
|
}
|
||||||
|
this.formLoading = false;
|
||||||
|
},
|
||||||
|
|
||||||
|
/** 模拟透传 ref */
|
||||||
|
validate(cb) {
|
||||||
|
return this.$refs.form.validate(cb);
|
||||||
|
},
|
||||||
|
resetFields(args) {
|
||||||
|
return this.$refs.form.resetFields(args);
|
||||||
|
},
|
||||||
|
// getCode
|
||||||
|
async getCode(url) {
|
||||||
|
const response = await this.$axios(url);
|
||||||
|
return response.data;
|
||||||
|
},
|
||||||
|
// 上传成功的特殊处理
|
||||||
|
beforeUpload() {},
|
||||||
|
// 上传前的验证规则可通过 bind 属性传入
|
||||||
|
handleUploadSuccess(response, file, fileList) {
|
||||||
|
// 保存原始文件名
|
||||||
|
if ('fileNames' in this.form) this.form.fileNames.push(file.name);
|
||||||
|
// 保存完整地址
|
||||||
|
if ('fileUrls' in this.form) this.form.fileUrls.push(response.data);
|
||||||
|
this.$modal.msgSuccess('上传成功');
|
||||||
|
},
|
||||||
|
|
||||||
|
getFileName(fileUrl) {
|
||||||
|
return fileUrl.split('/').pop();
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
.el-date-editor,
|
||||||
|
.el-select {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
</style>
|
509
src/views/specialEquipment/components/safetyDrawer.vue
Normal file
509
src/views/specialEquipment/components/safetyDrawer.vue
Normal file
@ -0,0 +1,509 @@
|
|||||||
|
<!--
|
||||||
|
filename: Safety Drawer.vue
|
||||||
|
author: liubin
|
||||||
|
date: 2024-2-19 10:38:56
|
||||||
|
description:
|
||||||
|
-->
|
||||||
|
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<el-drawer
|
||||||
|
:visible="visible"
|
||||||
|
:show-close="false"
|
||||||
|
:wrapper-closable="false"
|
||||||
|
class="drawer"
|
||||||
|
custom-class="mes-drawer"
|
||||||
|
size="60%"
|
||||||
|
@closed="$emit('destroy')">
|
||||||
|
<SmallTitle slot="title">
|
||||||
|
{{
|
||||||
|
mode.includes('detail')
|
||||||
|
? '详情'
|
||||||
|
: mode.includes('edit')
|
||||||
|
? '编辑'
|
||||||
|
: '新增'
|
||||||
|
}}
|
||||||
|
</SmallTitle>
|
||||||
|
|
||||||
|
<div class="drawer-body flex">
|
||||||
|
<div class="drawer-body__content">
|
||||||
|
<section v-for="(section, index) in sections" :key="section.key">
|
||||||
|
<SmallTitle v-if="index != 0">{{ section.name }}</SmallTitle>
|
||||||
|
|
||||||
|
<div
|
||||||
|
class="form-part"
|
||||||
|
v-if="section.key == 'base'"
|
||||||
|
style="margin-bottom: 32px">
|
||||||
|
<el-skeleton v-if="!showForm" animated />
|
||||||
|
<EquipmentInfoForm
|
||||||
|
key="drawer-dialog-form"
|
||||||
|
v-if="showForm"
|
||||||
|
:isFireEquipment="isFireEquipment"
|
||||||
|
:disabled="mode.includes('detail')"
|
||||||
|
:sync-filelist="syncFileListFlag"
|
||||||
|
v-model="form" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div
|
||||||
|
v-if="section.key == 'attrs'"
|
||||||
|
style="margin-top: 12px; position: relative">
|
||||||
|
<div
|
||||||
|
v-if="!mode.includes('detail')"
|
||||||
|
style="position: absolute; top: -40px; right: 0">
|
||||||
|
<el-button @click="handleAddAttr" type="text">
|
||||||
|
<i class="el-icon-plus"></i>
|
||||||
|
添加属性
|
||||||
|
</el-button>
|
||||||
|
</div>
|
||||||
|
<base-table
|
||||||
|
v-loading="attrListLoading"
|
||||||
|
:table-props="section.props"
|
||||||
|
:page="attrQuery?.params.pageNo || 1"
|
||||||
|
:limit="attrQuery?.params.pageSize || 10"
|
||||||
|
:table-data="list"
|
||||||
|
@emitFun="handleEmitFun">
|
||||||
|
<!-- :add-button-show="mode.includes('detail') ? null : '添加属性'"
|
||||||
|
@emitButtonClick="handleAddAttr" -->
|
||||||
|
<method-btn
|
||||||
|
v-if="section.tableBtn"
|
||||||
|
slot="handleBtn"
|
||||||
|
label="操作"
|
||||||
|
:method-list="tableBtn"
|
||||||
|
@clickBtn="handleTableBtnClick" />
|
||||||
|
</base-table>
|
||||||
|
|
||||||
|
<!-- 分页组件 -->
|
||||||
|
<pagination
|
||||||
|
v-show="total > 0"
|
||||||
|
:total="total"
|
||||||
|
:page.sync="attrQuery.params.pageNo"
|
||||||
|
:limit.sync="attrQuery.params.pageSize"
|
||||||
|
@pagination="getAttrList" />
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="drawer-body__footer">
|
||||||
|
<el-button style="" @click="handleCancel">取消</el-button>
|
||||||
|
<el-button v-if="mode == 'detail'" type="primary" @click="toggleEdit">
|
||||||
|
编辑
|
||||||
|
</el-button>
|
||||||
|
<el-button v-else type="primary" @click="handleConfirm">保存</el-button>
|
||||||
|
<!-- sections的第二项必须是 属性列表 -->
|
||||||
|
<!-- <el-button
|
||||||
|
v-if="sections[1].allowAdd"
|
||||||
|
type="primary"
|
||||||
|
@click="handleAddAttr">
|
||||||
|
添加属性
|
||||||
|
</el-button> -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- 属性对话框 -->
|
||||||
|
<base-dialog
|
||||||
|
v-if="sections[1].allowAdd"
|
||||||
|
:dialogTitle="attrTitle"
|
||||||
|
:dialogVisible="attrFormVisible"
|
||||||
|
width="35%"
|
||||||
|
:append-to-body="true"
|
||||||
|
custom-class="baseDialog"
|
||||||
|
@close="closeAttrForm"
|
||||||
|
@cancel="closeAttrForm"
|
||||||
|
@confirm="submitAttrForm">
|
||||||
|
<DialogForm
|
||||||
|
v-if="attrFormVisible"
|
||||||
|
ref="attrForm"
|
||||||
|
:dataForm="attrForm"
|
||||||
|
:rows="attrRows" />
|
||||||
|
</base-dialog>
|
||||||
|
</el-drawer>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import DialogForm from './DialogForm';
|
||||||
|
import EquipmentInfoForm from './EquipmentInfoForm.vue';
|
||||||
|
|
||||||
|
const SmallTitle = {
|
||||||
|
name: 'SmallTitle',
|
||||||
|
props: ['size'],
|
||||||
|
components: {},
|
||||||
|
data() {
|
||||||
|
return {};
|
||||||
|
},
|
||||||
|
methods: {},
|
||||||
|
render: function (h) {
|
||||||
|
return h(
|
||||||
|
'span',
|
||||||
|
{
|
||||||
|
class: 'small-title',
|
||||||
|
style: {
|
||||||
|
fontSize: '18px',
|
||||||
|
lineHeight:
|
||||||
|
this.size == 'lg' ? '24px' : this.size == 'sm' ? '18px' : '20px',
|
||||||
|
fontWeight: 500,
|
||||||
|
fontFamily: '微软雅黑, Microsoft YaHei, Arial, Helvetica, sans-serif',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
this.$slots.default
|
||||||
|
);
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: { SmallTitle, DialogForm, EquipmentInfoForm },
|
||||||
|
props: ['sections', 'mode', 'dataId', 'isFireEquipment'], // dataId 作为一个通用的存放id的字段
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
visible: false,
|
||||||
|
showForm: false,
|
||||||
|
btnLoading: false,
|
||||||
|
total: 0,
|
||||||
|
form: {},
|
||||||
|
list: [],
|
||||||
|
attrTitle: '',
|
||||||
|
attrForm: {
|
||||||
|
id: null,
|
||||||
|
equipmentId: null,
|
||||||
|
name: '',
|
||||||
|
value: '',
|
||||||
|
},
|
||||||
|
attrFormVisible: false,
|
||||||
|
attrRows: [
|
||||||
|
[
|
||||||
|
{
|
||||||
|
input: true,
|
||||||
|
label: '属性名称',
|
||||||
|
prop: 'name',
|
||||||
|
rules: [
|
||||||
|
{ required: true, message: '属性名称不能为空', trigger: 'blur' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
input: true,
|
||||||
|
label: '属性值',
|
||||||
|
prop: 'value',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
],
|
||||||
|
attrQuery: {
|
||||||
|
params: {
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
},
|
||||||
|
}, // 属性列表的请求
|
||||||
|
infoQuery: null, // 基本信息的请求
|
||||||
|
attrFormSubmitting: false,
|
||||||
|
attrListLoading: false,
|
||||||
|
syncFileListFlag: null,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
formRows() {
|
||||||
|
return this.sections[0].rows.map((row) => {
|
||||||
|
return row.map((col) => {
|
||||||
|
if (col.key == 'eq-pics') {
|
||||||
|
// 重置图片的位置
|
||||||
|
return {
|
||||||
|
...col,
|
||||||
|
bind: {
|
||||||
|
...col.bind,
|
||||||
|
},
|
||||||
|
style: {
|
||||||
|
left: 0,
|
||||||
|
right: 'unset',
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
return {
|
||||||
|
...col,
|
||||||
|
bind: {
|
||||||
|
...col.bind,
|
||||||
|
// 详情 模式下,禁用各种输入
|
||||||
|
disabled: this.mode == 'detail',
|
||||||
|
},
|
||||||
|
};
|
||||||
|
});
|
||||||
|
});
|
||||||
|
},
|
||||||
|
tableBtn() {
|
||||||
|
return this.mode == 'detail' ? [] : this.sections[1].tableBtn;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
for (const section of this.sections) {
|
||||||
|
// 请求具体信息
|
||||||
|
if ('url' in section) {
|
||||||
|
const query = {
|
||||||
|
url: section.url,
|
||||||
|
method: section.method || 'get',
|
||||||
|
params: section.queryParams || null,
|
||||||
|
data: section.data || null,
|
||||||
|
};
|
||||||
|
this.$axios(query).then(({ data }) => {
|
||||||
|
if (section.key == 'base') {
|
||||||
|
this.form = data;
|
||||||
|
this.showForm = true;
|
||||||
|
this.infoQuery = query;
|
||||||
|
} else if (section.key == 'attrs') {
|
||||||
|
this.attrQuery = query;
|
||||||
|
this.list = data.list;
|
||||||
|
this.total = data.total;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
handleTableBtnClick({ type, data }) {
|
||||||
|
switch (type) {
|
||||||
|
case 'edit':
|
||||||
|
this.handleEditAttr(data.id);
|
||||||
|
break;
|
||||||
|
case 'delete':
|
||||||
|
this.handleDeleteAttr(data.id);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
async handleConfirm() {
|
||||||
|
this.btnLoading = true;
|
||||||
|
this.syncFileListFlag = Math.random();
|
||||||
|
|
||||||
|
this.$nextTick(async () => {
|
||||||
|
const { code, data } = await this.$axios({
|
||||||
|
url: this.sections[0].urlUpdate,
|
||||||
|
method: 'put',
|
||||||
|
data: this.form,
|
||||||
|
});
|
||||||
|
if (code == 0) {
|
||||||
|
this.$modal.msgSuccess('更新成功');
|
||||||
|
}
|
||||||
|
|
||||||
|
this.btnLoading = false;
|
||||||
|
this.$emit('refreshDataList');
|
||||||
|
this.handleCancel();
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
handleEmitFun(val) {
|
||||||
|
console.log('handleEmitFun', val);
|
||||||
|
},
|
||||||
|
|
||||||
|
init() {
|
||||||
|
this.visible = true;
|
||||||
|
},
|
||||||
|
|
||||||
|
async getAttrList() {
|
||||||
|
this.attrListLoading = true;
|
||||||
|
const res = await this.$axios(this.attrQuery);
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.list = res.data.list;
|
||||||
|
this.total = res.data.total;
|
||||||
|
}
|
||||||
|
this.attrListLoading = false;
|
||||||
|
},
|
||||||
|
|
||||||
|
// 保存表单
|
||||||
|
handleSave() {
|
||||||
|
this.$refs['form'][0].validate(async (valid) => {
|
||||||
|
if (valid) {
|
||||||
|
const isEdit = this.mode == 'edit';
|
||||||
|
await this.$axios({
|
||||||
|
url: this.sections[0][isEdit ? 'urlUpdate' : 'urlCreate'],
|
||||||
|
method: isEdit ? 'put' : 'post',
|
||||||
|
data: this.form,
|
||||||
|
});
|
||||||
|
this.$modal.msgSuccess(`${isEdit ? '更新' : '创建'}成功`);
|
||||||
|
this.visible = false;
|
||||||
|
this.$emit('refreshDataList');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
handleCancel() {
|
||||||
|
this.visible = false;
|
||||||
|
},
|
||||||
|
|
||||||
|
// 开启编辑
|
||||||
|
toggleEdit() {
|
||||||
|
this.$emit('update-mode', 'edit');
|
||||||
|
},
|
||||||
|
|
||||||
|
// 新增属性
|
||||||
|
handleAddAttr() {
|
||||||
|
if (!this.dataId) return this.$message.error('请先创建设备信息');
|
||||||
|
this.attrForm = {
|
||||||
|
id: null,
|
||||||
|
equipmentId: this.dataId,
|
||||||
|
name: '',
|
||||||
|
value: '',
|
||||||
|
};
|
||||||
|
this.attrTitle = '添加设备属性';
|
||||||
|
this.attrFormVisible = true;
|
||||||
|
},
|
||||||
|
|
||||||
|
// 编辑属性
|
||||||
|
async handleEditAttr(attrId) {
|
||||||
|
const res = await this.$axios({
|
||||||
|
url: this.sections[1].urlDetail,
|
||||||
|
method: 'get',
|
||||||
|
params: { id: attrId },
|
||||||
|
});
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.attrForm = res.data;
|
||||||
|
this.attrTitle = '编辑设备属性';
|
||||||
|
this.attrFormVisible = true;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// 删除属性
|
||||||
|
handleDeleteAttr(attrId) {
|
||||||
|
this.$confirm('确定删除该属性?', '提示', {
|
||||||
|
confirmButtonText: '确定',
|
||||||
|
cancelButtonText: '取消',
|
||||||
|
type: 'warning',
|
||||||
|
})
|
||||||
|
.then(async () => {
|
||||||
|
const res = await this.$axios({
|
||||||
|
url: this.sections[1].urlDelete,
|
||||||
|
method: 'delete',
|
||||||
|
params: { id: attrId },
|
||||||
|
});
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.$message({
|
||||||
|
message: '删除成功',
|
||||||
|
type: 'success',
|
||||||
|
duration: 1500,
|
||||||
|
onClose: () => {
|
||||||
|
this.getAttrList();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(() => {});
|
||||||
|
},
|
||||||
|
|
||||||
|
// 提交属性表
|
||||||
|
submitAttrForm() {
|
||||||
|
this.$refs['attrForm'].validate(async (valid) => {
|
||||||
|
if (!valid) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
const isEdit = this.attrForm.id != null;
|
||||||
|
this.attrFormSubmitting = true;
|
||||||
|
const res = await this.$axios({
|
||||||
|
url: isEdit
|
||||||
|
? this.sections[1].urlUpdate
|
||||||
|
: this.sections[1].urlCreate,
|
||||||
|
method: isEdit ? 'put' : 'post',
|
||||||
|
data: this.attrForm,
|
||||||
|
});
|
||||||
|
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.closeAttrForm();
|
||||||
|
this.$message({
|
||||||
|
message: `${isEdit ? '更新' : '创建'}成功`,
|
||||||
|
type: 'success',
|
||||||
|
duration: 1500,
|
||||||
|
onClose: () => {
|
||||||
|
this.getAttrList();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
this.attrFormSubmitting = false;
|
||||||
|
} catch (err) {
|
||||||
|
this.$message({
|
||||||
|
message: err,
|
||||||
|
type: 'error',
|
||||||
|
duration: 1500,
|
||||||
|
});
|
||||||
|
this.attrFormSubmitting = false;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
closeAttrForm() {
|
||||||
|
this.attrFormVisible = false;
|
||||||
|
},
|
||||||
|
|
||||||
|
handleClick(raw) {
|
||||||
|
if (raw.type === 'delete') {
|
||||||
|
this.$confirm(
|
||||||
|
`确定对${
|
||||||
|
raw.data.name
|
||||||
|
? '[名称=' + raw.data.name + ']'
|
||||||
|
: '[序号=' + raw.data._pageIndex + ']'
|
||||||
|
}进行删除操作?`,
|
||||||
|
'提示',
|
||||||
|
{
|
||||||
|
confirmButtonText: '确定',
|
||||||
|
cancelButtonText: '取消',
|
||||||
|
type: 'warning',
|
||||||
|
}
|
||||||
|
)
|
||||||
|
.then(() => {
|
||||||
|
deleteProductAttr(raw.data.id).then(({ data }) => {
|
||||||
|
this.$message({
|
||||||
|
message: '操作成功',
|
||||||
|
type: 'success',
|
||||||
|
duration: 1500,
|
||||||
|
onClose: () => {
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
});
|
||||||
|
})
|
||||||
|
.catch(() => {});
|
||||||
|
} else {
|
||||||
|
this.addNew(raw.data.id);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.drawer >>> .el-drawer {
|
||||||
|
border-radius: 8px 0 0 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer >>> .el-drawer__header {
|
||||||
|
margin: 0;
|
||||||
|
padding: 32px 32px 24px;
|
||||||
|
border-bottom: 1px solid #dcdfe6;
|
||||||
|
margin-bottom: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.small-title::before {
|
||||||
|
content: '';
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: top;
|
||||||
|
width: 4px;
|
||||||
|
height: 22px;
|
||||||
|
border-radius: 1px;
|
||||||
|
margin-right: 8px;
|
||||||
|
background-color: #0b58ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer-body {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer-body__content {
|
||||||
|
flex: 1;
|
||||||
|
/* background: #eee; */
|
||||||
|
padding: 20px 30px;
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer-body__footer {
|
||||||
|
display: flex;
|
||||||
|
justify-content: flex-end;
|
||||||
|
padding: 18px;
|
||||||
|
}
|
||||||
|
</style>
|
@ -21,37 +21,26 @@
|
|||||||
label-position="top"
|
label-position="top"
|
||||||
v-loading="formLoading">
|
v-loading="formLoading">
|
||||||
<el-row :gutter="20">
|
<el-row :gutter="20">
|
||||||
<el-col :span="8">
|
|
||||||
<el-form-item label="维修单号" prop="repairOrderNumber">
|
|
||||||
<span>{{ dataForm.repairOrderNumber }}</span>
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="8">
|
|
||||||
<el-form-item label="设备大类" prop="equipmentCategory">
|
|
||||||
<span>
|
|
||||||
{{
|
|
||||||
['-', '安全设备', '消防设备', '特种设备'][
|
|
||||||
dataForm.equipmentCategory || 0
|
|
||||||
]
|
|
||||||
}}
|
|
||||||
</span>
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="8">
|
|
||||||
<el-form-item label="设备名称" prop="equipmentName">
|
|
||||||
<span>{{ dataForm.equipmentName }}</span>
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="8">
|
|
||||||
<el-form-item label="维修工" prop="repairman">
|
|
||||||
<span>{{ dataForm.repairman }}</span>
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="8">
|
<el-col :span="8">
|
||||||
<el-form-item label="故障发生时间" prop="faultTime">
|
<el-form-item label="故障发生时间" prop="faultTime">
|
||||||
<span>{{ parseTime(dataForm.faultTime) }}</span>
|
<span>{{ parseTime(dataForm.faultTime) }}</span>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
|
|
||||||
|
<!-- <el-col :span="8">
|
||||||
|
<el-form-item label="故障级别" prop="faultLevel">
|
||||||
|
<span>
|
||||||
|
{{
|
||||||
|
dataForm.faultLevel
|
||||||
|
? getDictDatas(DICT_TYPE.FAULT_LEVEL).find(
|
||||||
|
(item) => item.value == dataForm.faultLevel
|
||||||
|
)?.label
|
||||||
|
: '---'
|
||||||
|
}}
|
||||||
|
</span>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col> -->
|
||||||
|
|
||||||
<el-col :span="8">
|
<el-col :span="8">
|
||||||
<el-form-item label="故障级别" prop="faultLevel">
|
<el-form-item label="故障级别" prop="faultLevel">
|
||||||
<span>
|
<span>
|
||||||
@ -59,163 +48,68 @@
|
|||||||
</span>
|
</span>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="故障类型" prop="faultType">
|
||||||
|
<span>
|
||||||
|
{{ getDictDataLabel('fault-type', dataForm.faultType) }}
|
||||||
|
</span>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="维修工" prop="repairman">
|
||||||
|
<span>{{ dataForm.repairman }}</span>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
<el-col :span="8">
|
<el-col :span="8">
|
||||||
<el-form-item label="联系方式" prop="repairmanPhone">
|
<el-form-item label="联系方式" prop="repairmanPhone">
|
||||||
<span>{{ dataForm.repairmanPhone }}</span>
|
<span>{{ dataForm.repairmanPhone }}</span>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="维修方式" prop="repairMode">
|
||||||
|
<span>
|
||||||
|
{{ getDictDataLabel('repair-mode', dataForm.repairMode) }}
|
||||||
|
</span>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item label="维修附件" prop="files">
|
||||||
|
<div v-if="dataForm.files && dataForm.files.length > 0">
|
||||||
|
<uploadedFile
|
||||||
|
class="file"
|
||||||
|
v-for="file in dataForm.files"
|
||||||
|
:file="file"
|
||||||
|
:key="file.fileUrl"
|
||||||
|
:disabled="disabled"
|
||||||
|
@delete="!disabled && handleDeleteFile(file, col.prop)" />
|
||||||
|
</div>
|
||||||
|
<p v-else>暂无附件</p>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="创建时间" prop="createTime">
|
||||||
|
<span>{{ parseTime(dataForm.createTime) }}</span>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="创建人" prop="creator">
|
||||||
|
<span>{{ dataForm.creator }}</span>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item label="备注" prop="remark">
|
||||||
|
<span>{{ dataForm.remark }}</span>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
|
|
||||||
<el-divider />
|
|
||||||
|
|
||||||
<div
|
|
||||||
v-if="
|
|
||||||
disabled && dataForm.maintenanceStatus === 1
|
|
||||||
? true
|
|
||||||
: !disabled
|
|
||||||
? true
|
|
||||||
: false
|
|
||||||
">
|
|
||||||
<small-title
|
|
||||||
style="margin: 16px 0; padding-left: 8px"
|
|
||||||
:no-padding="true">
|
|
||||||
{{ '设备维修信息' }}
|
|
||||||
</small-title>
|
|
||||||
<el-row :gutter="20">
|
|
||||||
<el-col :span="6">
|
|
||||||
<el-form-item
|
|
||||||
label="维修开始时间"
|
|
||||||
prop="maintenanceStartTime"
|
|
||||||
:rules="[
|
|
||||||
{
|
|
||||||
required: true,
|
|
||||||
message: '维修开始时间不能为空',
|
|
||||||
trigger: 'blur',
|
|
||||||
},
|
|
||||||
]">
|
|
||||||
<el-date-picker
|
|
||||||
v-model="dataForm.maintenanceStartTime"
|
|
||||||
type="datetime"
|
|
||||||
:disabled="disabled"
|
|
||||||
placeholder="请选择维修开始时间"
|
|
||||||
value-format="timestamp" />
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="6">
|
|
||||||
<el-form-item
|
|
||||||
label="维修结束时间"
|
|
||||||
prop="maintenanceFinishTime"
|
|
||||||
:rules="[
|
|
||||||
{
|
|
||||||
required: true,
|
|
||||||
message: '维修结束时间不能为空',
|
|
||||||
trigger: 'blur',
|
|
||||||
},
|
|
||||||
]">
|
|
||||||
<el-date-picker
|
|
||||||
v-model="dataForm.maintenanceFinishTime"
|
|
||||||
type="datetime"
|
|
||||||
:disabled="disabled"
|
|
||||||
placeholder="请选择维修开始时间"
|
|
||||||
value-format="timestamp" />
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="6">
|
|
||||||
<el-form-item
|
|
||||||
label="维修方式"
|
|
||||||
prop="repairMode"
|
|
||||||
:rules="[
|
|
||||||
{
|
|
||||||
required: true,
|
|
||||||
message: '维修方式不能为空',
|
|
||||||
trigger: 'blur',
|
|
||||||
},
|
|
||||||
]">
|
|
||||||
<el-select
|
|
||||||
:disabled="disabled"
|
|
||||||
v-model="dataForm.repairMode"
|
|
||||||
placeholder="请选择维修方式">
|
|
||||||
<el-option
|
|
||||||
v-for="opt in getDictDatas('repair-mode')"
|
|
||||||
:key="opt.value"
|
|
||||||
:label="opt.label"
|
|
||||||
:value="opt.value" />
|
|
||||||
</el-select>
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="6">
|
|
||||||
<el-form-item label="故障类型" prop="faultType">
|
|
||||||
<el-select
|
|
||||||
:disabled="disabled"
|
|
||||||
v-model="dataForm.faultType"
|
|
||||||
placeholder="请选择故障类型">
|
|
||||||
<el-option
|
|
||||||
v-for="opt in getDictDatas('fault-type')"
|
|
||||||
:key="opt.value"
|
|
||||||
:label="opt.label"
|
|
||||||
:value="opt.value" />
|
|
||||||
</el-select>
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
</el-row>
|
|
||||||
|
|
||||||
<el-row :gutter="20">
|
|
||||||
<el-col>
|
|
||||||
<el-form-item
|
|
||||||
label="故障明细"
|
|
||||||
prop="faultDetail"
|
|
||||||
:rules="[
|
|
||||||
{
|
|
||||||
required: true,
|
|
||||||
message: '故障明细不能为空',
|
|
||||||
trigger: 'blur',
|
|
||||||
},
|
|
||||||
]">
|
|
||||||
<!-- // 富文本 -->
|
|
||||||
<editor
|
|
||||||
v-model="dataForm.faultDetail"
|
|
||||||
:read-only="disabled"
|
|
||||||
:min-height="150" />
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
</el-row>
|
|
||||||
|
|
||||||
<el-row :gutter="20">
|
|
||||||
<el-col>
|
|
||||||
<el-form-item label="维修记录" prop="maintenanceDetail">
|
|
||||||
<!-- // 富文本 -->
|
|
||||||
<editor
|
|
||||||
v-model="dataForm.maintenanceDetail"
|
|
||||||
:read-only="disabled"
|
|
||||||
:min-height="150" />
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
</el-row>
|
|
||||||
|
|
||||||
<el-row :gutter="20">
|
|
||||||
<el-col>
|
|
||||||
<el-form-item label="维修附件" prop="file">
|
|
||||||
<FileUpload
|
|
||||||
v-model="file"
|
|
||||||
:limit="1"
|
|
||||||
:f-name="fileName"
|
|
||||||
:disabled="disabled"
|
|
||||||
@name="setFileName" />
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
</el-row>
|
|
||||||
|
|
||||||
<el-row :gutter="20">
|
|
||||||
<el-col>
|
|
||||||
<el-form-item label="备注" prop="remark">
|
|
||||||
<el-input
|
|
||||||
v-model="dataForm.remark"
|
|
||||||
:placeholder="`请输入备注`"
|
|
||||||
:disabled="disabled" />
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
</el-row>
|
|
||||||
</div>
|
|
||||||
</el-form>
|
</el-form>
|
||||||
|
|
||||||
<div v-if="!disabled" class="drawer-body__footer">
|
<div v-if="!disabled" class="drawer-body__footer">
|
||||||
@ -230,11 +124,74 @@
|
|||||||
<script>
|
<script>
|
||||||
import SmallTitle from './SmallTitle.vue';
|
import SmallTitle from './SmallTitle.vue';
|
||||||
import { getEqRepair, updateEqRepair } from '@/api/equipment/base/repair';
|
import { getEqRepair, updateEqRepair } from '@/api/equipment/base/repair';
|
||||||
import Editor from '@/components/Editor';
|
// import Editor from '@/components/Editor';
|
||||||
import FileUpload from '@/components/FileUpload';
|
// import FileUpload from '@/components/FileUpload';
|
||||||
import { getDictDatas } from '@/utils/dict';
|
import { getDictDatas } from '@/utils/dict';
|
||||||
import { parseTime } from '@/utils/ruoyi';
|
import { parseTime } from '@/utils/ruoyi';
|
||||||
import { getDictDataLabel } from '@/utils/dict';
|
import { getDictDataLabel } from '@/utils/dict';
|
||||||
|
import tupleImg from '@/assets/images/tuple.png';
|
||||||
|
|
||||||
|
const uploadedFile = {
|
||||||
|
name: 'UploadedFile',
|
||||||
|
props: ['file', 'disabled'],
|
||||||
|
data() {
|
||||||
|
return {};
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
handleDelete() {
|
||||||
|
this.$emit('delete', this.file);
|
||||||
|
},
|
||||||
|
async handleDownload() {
|
||||||
|
const data = await this.$axios({
|
||||||
|
url: this.file.fileUrl,
|
||||||
|
method: 'get',
|
||||||
|
responseType: 'blob',
|
||||||
|
});
|
||||||
|
|
||||||
|
await this.$message.success('开始下载');
|
||||||
|
// create download link
|
||||||
|
const url = window.URL.createObjectURL(data);
|
||||||
|
const link = document.createElement('a');
|
||||||
|
link.href = url;
|
||||||
|
link.download = this.file.fileName;
|
||||||
|
document.body.appendChild(link);
|
||||||
|
link.click();
|
||||||
|
document.body.removeChild(link);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
},
|
||||||
|
render: function (h) {
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
title={this.file.fileName}
|
||||||
|
onClick={this.handleDownload}
|
||||||
|
style={{
|
||||||
|
background: `url(${tupleImg}) no-repeat`,
|
||||||
|
backgroundSize: '14px',
|
||||||
|
backgroundPosition: '0 55%',
|
||||||
|
paddingLeft: '20px',
|
||||||
|
paddingRight: '24px',
|
||||||
|
textOverflow: 'ellipsis',
|
||||||
|
whiteSpace: 'nowrap',
|
||||||
|
overflow: 'hidden',
|
||||||
|
cursor: 'pointer',
|
||||||
|
display: 'inline-block',
|
||||||
|
}}>
|
||||||
|
{this.file.fileName}
|
||||||
|
{!this.disabled && (
|
||||||
|
<el-button
|
||||||
|
type="text"
|
||||||
|
icon="el-icon-close"
|
||||||
|
style="float: right; position: relative; top: 2px; left: 8px; z-index: 100"
|
||||||
|
class="dialog__upload_component__close"
|
||||||
|
onClick={this.handleDelete}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'DialogForm',
|
name: 'DialogForm',
|
||||||
@ -243,7 +200,7 @@ export default {
|
|||||||
event: 'update',
|
event: 'update',
|
||||||
},
|
},
|
||||||
emits: ['update'],
|
emits: ['update'],
|
||||||
components: { SmallTitle, Editor, FileUpload },
|
components: { SmallTitle, uploadedFile }, //, Editor, FileUpload },
|
||||||
props: {
|
props: {
|
||||||
// dataForm: {
|
// dataForm: {
|
||||||
// type: Object,
|
// type: Object,
|
||||||
@ -283,12 +240,8 @@ export default {
|
|||||||
resetFields(args) {
|
resetFields(args) {
|
||||||
return this.$refs.form.resetFields(args);
|
return this.$refs.form.resetFields(args);
|
||||||
},
|
},
|
||||||
initData() {
|
|
||||||
this.file = '';
|
|
||||||
this.fileName = '';
|
|
||||||
},
|
|
||||||
init(row, isdetail) {
|
init(row, isdetail) {
|
||||||
this.initData();
|
|
||||||
this.disabled = isdetail || false;
|
this.disabled = isdetail || false;
|
||||||
this.dataForm.id = row.id || undefined;
|
this.dataForm.id = row.id || undefined;
|
||||||
this.visible = true;
|
this.visible = true;
|
||||||
@ -301,21 +254,15 @@ export default {
|
|||||||
getEqRepair(this.dataForm.id).then((response) => {
|
getEqRepair(this.dataForm.id).then((response) => {
|
||||||
this.formLoading = false;
|
this.formLoading = false;
|
||||||
this.dataForm = response.data;
|
this.dataForm = response.data;
|
||||||
debugger;
|
|
||||||
this.dataForm.maintenanceStatus =
|
|
||||||
this.dataForm.maintenanceStatus || 0;
|
|
||||||
if (this.dataForm.files.length > 0) {
|
|
||||||
this.file = this.dataForm.files[0].fileUrl;
|
|
||||||
this.fileName = this.dataForm.files[0].fileName;
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
} else {
|
|
||||||
// if (this.urlOptions.isGetCode) {
|
|
||||||
// this.getCode()
|
|
||||||
// }
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
handleDeleteFile(file, prop) {
|
||||||
|
this.dataForm.files = this.dataForm.files.filter(
|
||||||
|
(item) => item.fileUrl != file.fileUrl
|
||||||
|
);
|
||||||
|
},
|
||||||
// 表单提交
|
// 表单提交
|
||||||
dataFormSubmit() {
|
dataFormSubmit() {
|
||||||
this.$refs['form'].validate((valid) => {
|
this.$refs['form'].validate((valid) => {
|
||||||
|
461
src/views/specialEquipment/maintain/Monitor--detail.vue
Normal file
461
src/views/specialEquipment/maintain/Monitor--detail.vue
Normal file
@ -0,0 +1,461 @@
|
|||||||
|
<!--
|
||||||
|
filename: PlanConfig--addContent.vue
|
||||||
|
author: liubin
|
||||||
|
date: 2024-02-04 09:40:04
|
||||||
|
description:
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<el-drawer
|
||||||
|
:visible="visible"
|
||||||
|
:show-close="false"
|
||||||
|
:wrapper-closable="false"
|
||||||
|
class="drawer"
|
||||||
|
custom-class="mes-drawer"
|
||||||
|
size="60%"
|
||||||
|
@closed="$emit('destroy')">
|
||||||
|
<SmallTitle slot="title">
|
||||||
|
{{
|
||||||
|
mode.includes('detail')
|
||||||
|
? '详情'
|
||||||
|
: mode.includes('edit')
|
||||||
|
? '编辑'
|
||||||
|
: '新增'
|
||||||
|
}}
|
||||||
|
</SmallTitle>
|
||||||
|
|
||||||
|
<div class="drawer-body flex">
|
||||||
|
<div class="drawer-body__content">
|
||||||
|
<section>
|
||||||
|
<SmallTitle>保养信息</SmallTitle>
|
||||||
|
<div class="form-part" style="margin-bottom: 32px">
|
||||||
|
<el-skeleton v-if="!showForm" animated />
|
||||||
|
<el-form
|
||||||
|
v-else
|
||||||
|
ref="form"
|
||||||
|
:model="form"
|
||||||
|
label-position="top"
|
||||||
|
v-loading="formLoading">
|
||||||
|
<el-row :gutter="20">
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="保养计划名称" prop="name">
|
||||||
|
<span>{{ form.name }}</span>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="部门" prop="departmentName">
|
||||||
|
<span>{{ form.departmentName }}</span>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="产线名" prop="lineName">
|
||||||
|
<span>{{ form.lineName }}</span>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="保养频率" prop="maintenancePeriod">
|
||||||
|
<span>{{ form.maintenancePeriod }}</span>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="保养时长" prop="maintainDuration">
|
||||||
|
<span>{{ form.maintainDuration }}</span>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="计划保养人员" prop="maintainer">
|
||||||
|
<span>{{ form.maintainer }}</span>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-form>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section>
|
||||||
|
<SmallTitle>保养详情</SmallTitle>
|
||||||
|
<div style="margin-top: 12px; position: relative">
|
||||||
|
<!-- <div
|
||||||
|
v-if="!mode.includes('detail')"
|
||||||
|
style="position: absolute; top: -40px; right: 0">
|
||||||
|
<el-button @click="handleAddDetail" type="text">
|
||||||
|
<i class="el-icon-plus"></i>
|
||||||
|
添加详情
|
||||||
|
</el-button>
|
||||||
|
</div> -->
|
||||||
|
<base-table
|
||||||
|
v-loading="detailLoading"
|
||||||
|
:table-props="detailTableProps"
|
||||||
|
:page="detailTableQuery.pageNo || 1"
|
||||||
|
:limit="detailTableQuery.pageSize || 10"
|
||||||
|
:table-data="detailList"
|
||||||
|
@emitFun="handleDetailTableAction">
|
||||||
|
<!-- <method-btn
|
||||||
|
slot="handleBtn"
|
||||||
|
label="操作"
|
||||||
|
width="100"
|
||||||
|
:method-list="detailTableBtns"
|
||||||
|
@clickBtn="handleDetailTableBtnClicked" /> -->
|
||||||
|
</base-table>
|
||||||
|
|
||||||
|
<!-- 分页组件 -->
|
||||||
|
<pagination
|
||||||
|
v-show="detailTotal > 0"
|
||||||
|
:total="detailTotal"
|
||||||
|
:page.sync="detailTableQuery.pageNo"
|
||||||
|
:limit.sync="detailTableQuery.pageSize"
|
||||||
|
@pagination="refreshDetailList" />
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="drawer-body__footer">
|
||||||
|
<el-button style="" @click="cancel">返回</el-button>
|
||||||
|
<!-- <el-button v-if="mode == 'detail'" type="primary" @click="toggleEdit">
|
||||||
|
编辑
|
||||||
|
</el-button>
|
||||||
|
<el-button v-else type="primary" @click="confirm">保存</el-button> -->
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- 属性对话框 -->
|
||||||
|
<base-dialog
|
||||||
|
dialogTitle="保养详情"
|
||||||
|
:dialogVisible="detailAddVisible"
|
||||||
|
width="35%"
|
||||||
|
:append-to-body="true"
|
||||||
|
custom-class="baseDialog"
|
||||||
|
@close="closeDetailForm"
|
||||||
|
@cancel="closeDetailForm"
|
||||||
|
@confirm="submitDetailForm">
|
||||||
|
<DialogForm
|
||||||
|
v-if="detailAddVisible"
|
||||||
|
ref="detailForm"
|
||||||
|
v-model="detailForm"
|
||||||
|
:rows="detailRows" />
|
||||||
|
</base-dialog>
|
||||||
|
</el-drawer>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import DialogForm from '@/components/DialogForm';
|
||||||
|
|
||||||
|
const SmallTitle = {
|
||||||
|
name: 'SmallTitle',
|
||||||
|
props: ['size'],
|
||||||
|
components: {},
|
||||||
|
data() {
|
||||||
|
return {};
|
||||||
|
},
|
||||||
|
methods: {},
|
||||||
|
render: function (h) {
|
||||||
|
return h(
|
||||||
|
'span',
|
||||||
|
{
|
||||||
|
class: 'small-title',
|
||||||
|
style: {
|
||||||
|
fontSize: '18px',
|
||||||
|
lineHeight:
|
||||||
|
this.size == 'lg' ? '24px' : this.size == 'sm' ? '18px' : '20px',
|
||||||
|
fontWeight: 500,
|
||||||
|
fontFamily: '微软雅黑, Microsoft YaHei, Arial, Helvetica, sans-serif',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
this.$slots.default
|
||||||
|
);
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'PlanConfig--addContent',
|
||||||
|
components: { SmallTitle, DialogForm },
|
||||||
|
props: ['maintainData'],
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
visible: false,
|
||||||
|
mode: 'detail',
|
||||||
|
showForm: false,
|
||||||
|
form: {
|
||||||
|
departmentName: null,
|
||||||
|
id: null,
|
||||||
|
lineName: null,
|
||||||
|
maintainDuration: null,
|
||||||
|
maintainer: null,
|
||||||
|
maintenancePeriod: null,
|
||||||
|
name: null,
|
||||||
|
},
|
||||||
|
formLoading: false,
|
||||||
|
equipmentOptions: [],
|
||||||
|
detailList: [],
|
||||||
|
detailAddVisible: false,
|
||||||
|
detailPageProps: ['equipmentName', 'program'],
|
||||||
|
detailForm: {
|
||||||
|
planId: null,
|
||||||
|
equipmentId: null,
|
||||||
|
program: '',
|
||||||
|
maintenanceDes: '',
|
||||||
|
remark: '',
|
||||||
|
},
|
||||||
|
detailRows: [
|
||||||
|
[
|
||||||
|
{
|
||||||
|
select: true,
|
||||||
|
label: '设备',
|
||||||
|
prop: 'equipmentId',
|
||||||
|
options: [],
|
||||||
|
rules: [
|
||||||
|
{ required: true, message: '设备不能为空', trigger: 'blur' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
input: true,
|
||||||
|
label: '保养项目',
|
||||||
|
prop: 'program',
|
||||||
|
rules: [
|
||||||
|
{ required: true, message: '保养项目不能为空', trigger: 'blur' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
input: true,
|
||||||
|
label: '保养描述',
|
||||||
|
prop: 'maintenanceDes',
|
||||||
|
rules: [
|
||||||
|
{ required: true, message: '包养描述不能为空', trigger: 'blur' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
],
|
||||||
|
detailLoading: false,
|
||||||
|
detailTableProps: [
|
||||||
|
{ prop: 'equipmentName', label: '设备名称' },
|
||||||
|
{ prop: 'program', label: '保养项目' },
|
||||||
|
{ prop: 'maintenanceDes', label: '保养描述' },
|
||||||
|
],
|
||||||
|
detailTableQuery: {
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
},
|
||||||
|
detailTableBtns: [
|
||||||
|
{
|
||||||
|
type: 'edit',
|
||||||
|
btnName: '编辑',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'delete',
|
||||||
|
btnName: '删除',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
detailTotal: 0,
|
||||||
|
detailList: [],
|
||||||
|
equipmentList: [],
|
||||||
|
};
|
||||||
|
},
|
||||||
|
computed: {},
|
||||||
|
mounted() {
|
||||||
|
this.loadEquipments();
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
show({
|
||||||
|
departmentName,
|
||||||
|
id,
|
||||||
|
lineName,
|
||||||
|
maintainDuration,
|
||||||
|
maintainer,
|
||||||
|
maintenancePeriod,
|
||||||
|
name,
|
||||||
|
}) {
|
||||||
|
this.form = Object.assign(
|
||||||
|
{},
|
||||||
|
{
|
||||||
|
departmentName,
|
||||||
|
id,
|
||||||
|
lineName,
|
||||||
|
maintainDuration,
|
||||||
|
maintainer,
|
||||||
|
maintenancePeriod,
|
||||||
|
name,
|
||||||
|
}
|
||||||
|
);
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.refreshDetailList();
|
||||||
|
});
|
||||||
|
this.visible = true;
|
||||||
|
this.showForm = true;
|
||||||
|
},
|
||||||
|
cancel() {
|
||||||
|
this.visible = false;
|
||||||
|
setTimeout(() => {
|
||||||
|
this.$emit('closed');
|
||||||
|
}, 500);
|
||||||
|
},
|
||||||
|
confirm() {
|
||||||
|
this.cancel();
|
||||||
|
},
|
||||||
|
toggleEdit() {
|
||||||
|
this.mode == 'edit' ? 'detail' : 'edit';
|
||||||
|
},
|
||||||
|
async loadEquipments() {
|
||||||
|
// TODO: 很有可能此处要改成动态刷新/获取/加载设备列表,当总的特殊设备数量大于100的时候...
|
||||||
|
const res = await this.$axios('/base/core-equipment/page', {
|
||||||
|
params: {
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 100,
|
||||||
|
special: true,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
this.equipmentList = res.data?.list || [];
|
||||||
|
this.detailRows[0][0].options = (res.data?.list || []).map((item) => ({
|
||||||
|
label: item.name,
|
||||||
|
value: item.id,
|
||||||
|
}));
|
||||||
|
},
|
||||||
|
closeDetailForm() {
|
||||||
|
this.detailAddVisible = false;
|
||||||
|
},
|
||||||
|
async submitDetailForm() {
|
||||||
|
// validation
|
||||||
|
this.$refs.detailForm.validate(async (valid) => {
|
||||||
|
if (!valid) return;
|
||||||
|
const res = await this.$axios[this.detailForm.id ? 'put' : 'post'](
|
||||||
|
`/base/equipment-maintain-plan-det/${
|
||||||
|
this.detailForm.id ? 'update' : 'create'
|
||||||
|
}`,
|
||||||
|
{
|
||||||
|
...this.detailForm,
|
||||||
|
planId: this.form.id,
|
||||||
|
}
|
||||||
|
);
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.detailAddVisible = false;
|
||||||
|
this.$message.success('添加成功');
|
||||||
|
this.refreshDetailList();
|
||||||
|
} else {
|
||||||
|
this.detailAddVisible = false;
|
||||||
|
this.$message.error('出错');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
async refreshDetailList() {
|
||||||
|
this.detailLoading = true;
|
||||||
|
if (!this.form.id)
|
||||||
|
return this.$message.info('没有找到保养计划相关信息...');
|
||||||
|
const res = await this.$axios('/base/equipment-maintain-plan-det/page', {
|
||||||
|
params: {
|
||||||
|
pageNo: this.detailTableQuery.pageNo,
|
||||||
|
pageSize: this.detailTableQuery.pageSize,
|
||||||
|
planId: this.form.id,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
this.detailList = res.data?.list || [];
|
||||||
|
this.detailTotal = res.data?.total || 0;
|
||||||
|
this.detailLoading = false;
|
||||||
|
},
|
||||||
|
//
|
||||||
|
handleDetailTableAction() {},
|
||||||
|
handleDetailTableBtnClicked({ data, type }) {
|
||||||
|
switch (type) {
|
||||||
|
case 'edit':
|
||||||
|
const { id, equipmentId, planId, program, maintenanceDes, remark } =
|
||||||
|
data;
|
||||||
|
this.detailAddVisible = true;
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.detailForm = Object.assign(
|
||||||
|
{},
|
||||||
|
{
|
||||||
|
id,
|
||||||
|
equipmentId,
|
||||||
|
planId,
|
||||||
|
program,
|
||||||
|
maintenanceDes,
|
||||||
|
remark,
|
||||||
|
}
|
||||||
|
);
|
||||||
|
});
|
||||||
|
break;
|
||||||
|
case 'delete':
|
||||||
|
if (!data.id) return;
|
||||||
|
this.$confirm('确认移除该详情吗?', '提示', {
|
||||||
|
confirmButtonText: '确 认',
|
||||||
|
cancelButtonText: '取 消',
|
||||||
|
})
|
||||||
|
.then(async () => {
|
||||||
|
const res = await this.$axios.delete(
|
||||||
|
'/base/equipment-maintain-plan-det/delete',
|
||||||
|
{
|
||||||
|
params: {
|
||||||
|
id: data.id,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
);
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.$message.success('删除成功!');
|
||||||
|
this.refreshDetailList();
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(console.error);
|
||||||
|
break;
|
||||||
|
case 'detail':
|
||||||
|
this.handleDetail(data);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
this.handleTableActions({ data, type });
|
||||||
|
}
|
||||||
|
},
|
||||||
|
handleAddDetail() {
|
||||||
|
this.detailAddVisible = true;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.drawer >>> .el-drawer {
|
||||||
|
border-radius: 8px 0 0 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer >>> .el-drawer__header {
|
||||||
|
margin: 0;
|
||||||
|
padding: 32px 32px 24px;
|
||||||
|
border-bottom: 1px solid #dcdfe6;
|
||||||
|
margin-bottom: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.small-title::before {
|
||||||
|
content: '';
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: top;
|
||||||
|
width: 4px;
|
||||||
|
height: 22px;
|
||||||
|
border-radius: 1px;
|
||||||
|
margin-right: 8px;
|
||||||
|
background-color: #0b58ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer-body {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
height: calc(100% - 72px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer-body__content {
|
||||||
|
flex: 1;
|
||||||
|
/* background: #eee; */
|
||||||
|
padding: 20px 30px;
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer-body__footer {
|
||||||
|
display: flex;
|
||||||
|
justify-content: flex-end;
|
||||||
|
padding: 18px;
|
||||||
|
}
|
||||||
|
</style>
|
@ -52,6 +52,11 @@
|
|||||||
:has-files="false"
|
:has-files="false"
|
||||||
:rows="rows" />
|
:rows="rows" />
|
||||||
</base-dialog>
|
</base-dialog>
|
||||||
|
|
||||||
|
<MonitorDetail
|
||||||
|
v-if="monitorDetailVisible"
|
||||||
|
ref="monitorDetailDrawer"
|
||||||
|
@closed="monitorDetailVisible = false" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -62,6 +67,8 @@ import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
|||||||
import { exportMaintainMonitorExcel } from '@/api/equipment/base/maintain/record';
|
import { exportMaintainMonitorExcel } from '@/api/equipment/base/maintain/record';
|
||||||
import { parseTime } from '@/utils/ruoyi';
|
import { parseTime } from '@/utils/ruoyi';
|
||||||
|
|
||||||
|
import MonitorDetail from './Monitor--detail.vue';
|
||||||
|
|
||||||
const remainBox = {
|
const remainBox = {
|
||||||
name: 'RemainBox',
|
name: 'RemainBox',
|
||||||
props: ['injectData'],
|
props: ['injectData'],
|
||||||
@ -120,22 +127,28 @@ const btn = {
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'SpecialEquipmentMaintainMonitor',
|
name: 'SpecialEquipmentMaintainMonitor',
|
||||||
components: {},
|
components: { MonitorDetail },
|
||||||
mixins: [basicPageMixin],
|
mixins: [basicPageMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
searchBarKeys: ['planId', 'specialType', 'equipmentId'],
|
monitorDetailVisible: false,
|
||||||
|
searchBarKeys: ['planId'],
|
||||||
tableProps: [
|
tableProps: [
|
||||||
// {
|
{
|
||||||
// prop: 'createTime',
|
prop: 'code',
|
||||||
// label: '添加时间',
|
label: '保养计划单号',
|
||||||
// fixed: true,
|
minWidth: 118,
|
||||||
// width: 180,
|
showOverflowtooltip: true,
|
||||||
// filter: parseTime(createTime),
|
},
|
||||||
// },
|
|
||||||
{
|
{
|
||||||
prop: 'name',
|
prop: 'name',
|
||||||
label: '保养计划',
|
label: '保养计划名称',
|
||||||
|
minWidth: 118,
|
||||||
|
showOverflowtooltip: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'departmentName',
|
||||||
|
label: '部门',
|
||||||
minWidth: 100,
|
minWidth: 100,
|
||||||
showOverflowtooltip: true,
|
showOverflowtooltip: true,
|
||||||
},
|
},
|
||||||
@ -146,61 +159,101 @@ export default {
|
|||||||
showOverflowtooltip: true,
|
showOverflowtooltip: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'equipmentCategory',
|
prop: 'lastPlanMaintainTime',
|
||||||
label: '设备大类',
|
label: '上次计划保养时间',
|
||||||
minWidth: 100,
|
filter: parseTime,
|
||||||
|
minWidth: 158,
|
||||||
showOverflowtooltip: true,
|
showOverflowtooltip: true,
|
||||||
filter: (val) =>
|
|
||||||
val != null ? ['-', '安全设备', '消防设备', '特种设备'][val] : '-',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'equipmentName',
|
|
||||||
label: '设备名称',
|
|
||||||
minWidth: 100,
|
|
||||||
showOverflowtooltip: true,
|
|
||||||
},
|
|
||||||
{ prop: 'maintenancePeriod', label: '保养频率' },
|
|
||||||
{
|
|
||||||
prop: 'maintainType',
|
|
||||||
label: '保养类型',
|
|
||||||
showOverflowtooltip: true,
|
|
||||||
filter: publicFormatter(this.DICT_TYPE.MAINTAIN_TYPE),
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'lastMaintainTime',
|
prop: 'lastMaintainTime',
|
||||||
label: '上次保养时间',
|
label: '上次实际保养时间',
|
||||||
filter: parseTime,
|
filter: parseTime,
|
||||||
minWidth: 150,
|
minWidth: 158,
|
||||||
showOverflowtooltip: true,
|
showOverflowtooltip: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'nextMaintainTime',
|
prop: 'nextPlanMaintainTime',
|
||||||
label: '计划下次保养时间',
|
label: '下次计划保养时间',
|
||||||
filter: parseTime,
|
filter: parseTime,
|
||||||
minWidth: 150,
|
minWidth: 158,
|
||||||
showOverflowtooltip: true,
|
showOverflowtooltip: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'remainDays',
|
prop: 'maintainer',
|
||||||
label: '距离保养时间(天)',
|
label: '计划保养人员',
|
||||||
subcomponent: remainBox,
|
minWidth: 158,
|
||||||
minWidth: 150,
|
showOverflowtooltip: true,
|
||||||
// showOverflowtooltip: true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'opt1',
|
|
||||||
label: '设备保养',
|
|
||||||
name: '操作',
|
|
||||||
subcomponent: btn,
|
|
||||||
width: 100,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'opt2',
|
prop: 'opt2',
|
||||||
label: '保养记录',
|
label: '保养内容',
|
||||||
name: '查看详情',
|
name: '详情',
|
||||||
subcomponent: btn,
|
subcomponent: btn,
|
||||||
width: 100,
|
width: 100,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
prop: 'remainDays',
|
||||||
|
label: '距离下次保养剩余时间(天)',
|
||||||
|
subcomponent: remainBox,
|
||||||
|
minWidth: 210,
|
||||||
|
},
|
||||||
|
// {
|
||||||
|
// prop: 'createTime',
|
||||||
|
// label: '添加时间',
|
||||||
|
// fixed: true,
|
||||||
|
// width: 180,
|
||||||
|
// filter: parseTime(createTime),
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// prop: 'equipmentCategory',
|
||||||
|
// label: '设备大类',
|
||||||
|
// minWidth: 100,
|
||||||
|
// showOverflowtooltip: true,
|
||||||
|
// filter: (val) =>
|
||||||
|
// val != null ? ['-', '安全设备', '消防设备', '特种设备'][val] : '-',
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// prop: 'equipmentName',
|
||||||
|
// label: '设备名称',
|
||||||
|
// minWidth: 100,
|
||||||
|
// showOverflowtooltip: true,
|
||||||
|
// },
|
||||||
|
// { prop: 'maintenancePeriod', label: '保养频率' },
|
||||||
|
// {
|
||||||
|
// prop: 'maintainType',
|
||||||
|
// label: '保养类型',
|
||||||
|
// showOverflowtooltip: true,
|
||||||
|
// filter: publicFormatter(this.DICT_TYPE.MAINTAIN_TYPE),
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// prop: 'lastMaintainTime',
|
||||||
|
// label: '上次保养时间',
|
||||||
|
// filter: parseTime,
|
||||||
|
// minWidth: 150,
|
||||||
|
// showOverflowtooltip: true,
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// prop: 'remainDays',
|
||||||
|
// label: '距离保养时间(天)',
|
||||||
|
// subcomponent: remainBox,
|
||||||
|
// minWidth: 150,
|
||||||
|
// // showOverflowtooltip: true
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// prop: 'opt1',
|
||||||
|
// label: '设备保养',
|
||||||
|
// name: '操作',
|
||||||
|
// subcomponent: btn,
|
||||||
|
// width: 100,
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// prop: 'opt2',
|
||||||
|
// label: '保养记录',
|
||||||
|
// name: '查看详情',
|
||||||
|
// subcomponent: btn,
|
||||||
|
// width: 100,
|
||||||
|
// },
|
||||||
],
|
],
|
||||||
searchBarFormConfig: [
|
searchBarFormConfig: [
|
||||||
{
|
{
|
||||||
@ -210,26 +263,26 @@ export default {
|
|||||||
param: 'planId',
|
param: 'planId',
|
||||||
filterable: true,
|
filterable: true,
|
||||||
},
|
},
|
||||||
{
|
// {
|
||||||
type: 'select',
|
// type: 'select',
|
||||||
label: '设备大类',
|
// label: '设备大类',
|
||||||
placeholder: '请选择设备大类',
|
// placeholder: '请选择设备大类',
|
||||||
param: 'specialType',
|
// param: 'specialType',
|
||||||
onchange: true,
|
// onchange: true,
|
||||||
selectOptions: [
|
// selectOptions: [
|
||||||
{ id: 1, name: '安全设备' },
|
// { id: 1, name: '安全设备' },
|
||||||
{ id: 2, name: '消防设备' },
|
// { id: 2, name: '消防设备' },
|
||||||
{ id: 3, name: '特种设备' },
|
// { id: 3, name: '特种设备' },
|
||||||
],
|
// ],
|
||||||
filterable: true,
|
// filterable: true,
|
||||||
},
|
// },
|
||||||
{
|
// {
|
||||||
type: 'select',
|
// type: 'select',
|
||||||
label: '设备名',
|
// label: '设备名',
|
||||||
placeholder: '请选择设备',
|
// placeholder: '请选择设备',
|
||||||
param: 'equipmentId',
|
// param: 'equipmentId',
|
||||||
filterable: true,
|
// filterable: true,
|
||||||
},
|
// },
|
||||||
{
|
{
|
||||||
type: 'button',
|
type: 'button',
|
||||||
btnName: '查询',
|
btnName: '查询',
|
||||||
@ -255,10 +308,8 @@ export default {
|
|||||||
queryParams: {
|
queryParams: {
|
||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
pageSize: 10,
|
pageSize: 10,
|
||||||
equipmentName: null,
|
planId: null,
|
||||||
createTime: null,
|
|
||||||
special: true,
|
special: true,
|
||||||
specialType: null,
|
|
||||||
},
|
},
|
||||||
// 表单参数
|
// 表单参数
|
||||||
form: {},
|
form: {},
|
||||||
@ -310,11 +361,10 @@ export default {
|
|||||||
);
|
);
|
||||||
},
|
},
|
||||||
initSearchBar() {
|
initSearchBar() {
|
||||||
this.$watch('current', {});
|
// this.http('/base/core-equipment/listAll', 'get').then(({ data }) => {
|
||||||
this.http('/base/core-equipment/listAll', 'get').then(({ data }) => {
|
// this.allSpecialEquipments = data.filter((item) => item.special);
|
||||||
this.allSpecialEquipments = data.filter((item) => item.special);
|
// this.setSearchBarEquipmentList(data.filter((item) => item.special));
|
||||||
this.setSearchBarEquipmentList(data.filter((item) => item.special));
|
// });
|
||||||
});
|
|
||||||
this.http('/base/equipment-maintain-plan/page', 'get', {
|
this.http('/base/equipment-maintain-plan/page', 'get', {
|
||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
pageSize: 100,
|
pageSize: 100,
|
||||||
@ -331,28 +381,34 @@ export default {
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
handleEmitFun({ action, value }) {
|
handleEmitFun({ action, value }) {
|
||||||
|
// console.log('handleEmitFun .... ', action, value);
|
||||||
switch (action) {
|
switch (action) {
|
||||||
// 查看详情
|
case '保养内容':
|
||||||
case '设备保养':
|
this.monitorDetailVisible = true;
|
||||||
this.$router.push({
|
this.$nextTick(() => {
|
||||||
path: '/equipment/base/maintain/record',
|
this.$refs.monitorDetailDrawer.show(value);
|
||||||
query: {
|
|
||||||
addRecord: 1,
|
|
||||||
row: value,
|
|
||||||
},
|
|
||||||
});
|
|
||||||
break;
|
|
||||||
case '保养记录':
|
|
||||||
const queryData = {
|
|
||||||
equipmentId: value.equipmentId,
|
|
||||||
maintainPlanId: value.id,
|
|
||||||
relatePlan: value.lastMaintainTime ? 1 : 2,
|
|
||||||
};
|
|
||||||
this.$router.push({
|
|
||||||
path: '/equipment/base/maintain/record',
|
|
||||||
query: queryData,
|
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
|
// case '设备保养':
|
||||||
|
// this.$router.push({
|
||||||
|
// path: '/equipment/base/maintain/record',
|
||||||
|
// query: {
|
||||||
|
// addRecord: 1,
|
||||||
|
// row: value,
|
||||||
|
// },
|
||||||
|
// });
|
||||||
|
// break;
|
||||||
|
// case '保养记录':
|
||||||
|
// const queryData = {
|
||||||
|
// equipmentId: value.equipmentId,
|
||||||
|
// maintainPlanId: value.id,
|
||||||
|
// relatePlan: value.lastMaintainTime ? 1 : 2,
|
||||||
|
// };
|
||||||
|
// this.$router.push({
|
||||||
|
// path: '/equipment/base/maintain/record',
|
||||||
|
// query: queryData,
|
||||||
|
// });
|
||||||
|
// break;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
/** 查询列表 */
|
/** 查询列表 */
|
||||||
|
@ -15,34 +15,55 @@
|
|||||||
<el-row :gutter="20">
|
<el-row :gutter="20">
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item
|
<el-form-item
|
||||||
label="计划名称"
|
label="保养计划名称"
|
||||||
prop="name"
|
prop="name"
|
||||||
:rules="[
|
:rules="[
|
||||||
{ required: true, message: '请输入计划名称', trigger: 'blur' },
|
{ required: true, message: '请输入保养计划名称', trigger: 'blur' },
|
||||||
]">
|
]">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="form.name"
|
v-model="form.name"
|
||||||
@change="$emit('update', form)"
|
@change="$emit('update', form)"
|
||||||
:placeholder="`请输入计划名称`"
|
:placeholder="`请输入保养计划名称`"
|
||||||
:disabled="disabled" />
|
:disabled="disabled" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
|
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item
|
<el-form-item
|
||||||
label="计划编号"
|
label="保养计划编号"
|
||||||
prop="code"
|
prop="code"
|
||||||
:rules="[
|
:rules="[
|
||||||
{ required: true, message: '请输入计划编号', trigger: 'blur' },
|
{ required: true, message: '请输入保养计划编号', trigger: 'blur' },
|
||||||
]">
|
]">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="form.code"
|
v-model="form.code"
|
||||||
@change="$emit('update', form)"
|
@change="$emit('update', form)"
|
||||||
:placeholder="`请输入计划编号`"
|
:placeholder="`请输入保养计划编号`"
|
||||||
:disabled="disabled" />
|
:disabled="disabled" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
|
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item
|
<el-form-item
|
||||||
|
label="部门"
|
||||||
|
prop="departmentId"
|
||||||
|
:rules="[{ required: true, message: '请选择部门', trigger: 'blur' }]">
|
||||||
|
<el-select
|
||||||
|
v-model="form.departmentId"
|
||||||
|
:placeholder="`请选择部门`"
|
||||||
|
:disabled="disabled"
|
||||||
|
clearable
|
||||||
|
filterable
|
||||||
|
@change="$emit('update', form)">
|
||||||
|
<el-option
|
||||||
|
v-for="opt in departmentOptions"
|
||||||
|
:key="opt.value"
|
||||||
|
:label="opt.label"
|
||||||
|
:value="opt.value" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
|
||||||
|
<!-- <el-form-item
|
||||||
label="设备大类"
|
label="设备大类"
|
||||||
prop="equipmentCategory"
|
prop="equipmentCategory"
|
||||||
:rules="[
|
:rules="[
|
||||||
@ -59,10 +80,29 @@
|
|||||||
:label="opt.label"
|
:label="opt.label"
|
||||||
:value="opt.value" />
|
:value="opt.value" />
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item> -->
|
||||||
</el-col>
|
</el-col>
|
||||||
|
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item
|
<el-form-item
|
||||||
|
label="产线"
|
||||||
|
prop="lineId"
|
||||||
|
:rules="[{ required: true, message: '请选择产线', trigger: 'blur' }]">
|
||||||
|
<el-select
|
||||||
|
v-model="form.lineId"
|
||||||
|
:placeholder="`请选择产线`"
|
||||||
|
:disabled="disabled"
|
||||||
|
clearable
|
||||||
|
filterable
|
||||||
|
@change="$emit('update', form)">
|
||||||
|
<el-option
|
||||||
|
v-for="opt in lineOptions"
|
||||||
|
:key="opt.value"
|
||||||
|
:label="opt.label"
|
||||||
|
:value="opt.value" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<!-- <el-form-item
|
||||||
label="设备"
|
label="设备"
|
||||||
prop="equipmentId"
|
prop="equipmentId"
|
||||||
:rules="[{ required: true, message: '请选择设备', trigger: 'blur' }]">
|
:rules="[{ required: true, message: '请选择设备', trigger: 'blur' }]">
|
||||||
@ -77,42 +117,9 @@
|
|||||||
:label="opt.label"
|
:label="opt.label"
|
||||||
:value="opt.value" />
|
:value="opt.value" />
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item> -->
|
||||||
</el-col>
|
|
||||||
<el-col :span="12">
|
|
||||||
<el-form-item label="保养类型" prop="maintainType">
|
|
||||||
<el-select
|
|
||||||
v-model="form.maintainType"
|
|
||||||
:placeholder="`请选择保养类型`"
|
|
||||||
:disabled="disabled"
|
|
||||||
@change="$emit('update', form)">
|
|
||||||
<el-option
|
|
||||||
v-for="opt in getDictDatas(DICT_TYPE.MAINTAIN_TYPE)"
|
|
||||||
:key="opt.value"
|
|
||||||
:label="opt.label"
|
|
||||||
:value="+opt.value" />
|
|
||||||
</el-select>
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="12">
|
|
||||||
<el-form-item
|
|
||||||
label="保养时长(h)"
|
|
||||||
prop="maintainDuration"
|
|
||||||
:rules="[
|
|
||||||
{
|
|
||||||
type: 'number',
|
|
||||||
message: '请输入正确的数字',
|
|
||||||
trigger: 'blur',
|
|
||||||
transform: (val) => Number(val),
|
|
||||||
},
|
|
||||||
]">
|
|
||||||
<el-input
|
|
||||||
v-model="form.maintainDuration"
|
|
||||||
@change="$emit('update', form)"
|
|
||||||
:placeholder="`请输入保养时长`"
|
|
||||||
:disabled="disabled" />
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
</el-col>
|
||||||
|
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item
|
<el-form-item
|
||||||
label="保养频率(天/次)"
|
label="保养频率(天/次)"
|
||||||
@ -133,6 +140,105 @@
|
|||||||
:disabled="disabled" />
|
:disabled="disabled" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item
|
||||||
|
label="确认时限(h)"
|
||||||
|
prop="confirmTimeLimit"
|
||||||
|
:rules="[
|
||||||
|
{ required: true, message: '请输入确认时限', trigger: 'blur' },
|
||||||
|
{
|
||||||
|
type: 'number',
|
||||||
|
message: '请输入正确的数字',
|
||||||
|
trigger: 'blur',
|
||||||
|
transform: (val) => Number(val),
|
||||||
|
},
|
||||||
|
]">
|
||||||
|
<el-input
|
||||||
|
v-model="form.confirmTimeLimit"
|
||||||
|
@change="$emit('update', form)"
|
||||||
|
:placeholder="`请输入确认时限(小时)`"
|
||||||
|
:disabled="disabled" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<!-- <el-col :span="12">
|
||||||
|
<el-form-item label="保养类型" prop="maintainType">
|
||||||
|
<el-select
|
||||||
|
v-model="form.maintainType"
|
||||||
|
:placeholder="`请选择保养类型`"
|
||||||
|
:disabled="disabled"
|
||||||
|
@change="$emit('update', form)">
|
||||||
|
<el-option
|
||||||
|
v-for="opt in getDictDatas(DICT_TYPE.MAINTAIN_TYPE)"
|
||||||
|
:key="opt.value"
|
||||||
|
:label="opt.label"
|
||||||
|
:value="+opt.value" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col> -->
|
||||||
|
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item
|
||||||
|
label="保养时长(h)"
|
||||||
|
prop="maintainDuration"
|
||||||
|
:rules="[
|
||||||
|
{
|
||||||
|
type: 'number',
|
||||||
|
message: '请输入正确的数字',
|
||||||
|
trigger: 'blur',
|
||||||
|
transform: (val) => Number(val),
|
||||||
|
},
|
||||||
|
]">
|
||||||
|
<el-input
|
||||||
|
v-model="form.maintainDuration"
|
||||||
|
@change="$emit('update', form)"
|
||||||
|
:placeholder="`请输入保养时长(小时)`"
|
||||||
|
:disabled="disabled" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item
|
||||||
|
label="首次保养时间"
|
||||||
|
prop="firstMaintenanceTime"
|
||||||
|
:rules="[
|
||||||
|
{ required: true, message: '请选择首次保养时间', trigger: 'blur' },
|
||||||
|
]">
|
||||||
|
<el-date-picker
|
||||||
|
v-model="form.firstMaintenanceTime"
|
||||||
|
type="datetime"
|
||||||
|
:disabled="edit"
|
||||||
|
:placeholder="`请选择首次保养时间`"
|
||||||
|
@change="$emit('update', form)"
|
||||||
|
value-format="timestamp"></el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item
|
||||||
|
label="计划保养人员"
|
||||||
|
prop="maintainer"
|
||||||
|
:rules="[
|
||||||
|
{ required: true, message: '请选择计划保养人员', trigger: 'blur' },
|
||||||
|
]">
|
||||||
|
<el-select
|
||||||
|
v-model="form.maintainer"
|
||||||
|
:placeholder="`请选择计划保养人员`"
|
||||||
|
:disabled="disabled"
|
||||||
|
multiple
|
||||||
|
clearable
|
||||||
|
filterable
|
||||||
|
@change="$emit('update', form)">
|
||||||
|
<el-option
|
||||||
|
v-for="opt in maintainerOptions"
|
||||||
|
:key="opt.value"
|
||||||
|
:label="opt.label"
|
||||||
|
:value="opt.value" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
<el-col :span="24">
|
<el-col :span="24">
|
||||||
<el-form-item label="备注" prop="remark">
|
<el-form-item label="备注" prop="remark">
|
||||||
<el-input
|
<el-input
|
||||||
@ -168,6 +274,10 @@ export default {
|
|||||||
type: Boolean,
|
type: Boolean,
|
||||||
default: false,
|
default: false,
|
||||||
},
|
},
|
||||||
|
edit: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
hasFiles: {
|
hasFiles: {
|
||||||
type: Boolean | Array,
|
type: Boolean | Array,
|
||||||
default: false,
|
default: false,
|
||||||
@ -185,20 +295,22 @@ export default {
|
|||||||
return {
|
return {
|
||||||
form: {},
|
form: {},
|
||||||
formLoading: true,
|
formLoading: true,
|
||||||
dataLoaded: false,
|
|
||||||
equipmentList: [],
|
|
||||||
equipmentOptions: [],
|
|
||||||
equipmentTypeOptions: [
|
equipmentTypeOptions: [
|
||||||
{ label: '安全设备', value: 1 },
|
{ label: '安全设备', value: 1 },
|
||||||
{ label: '消防设备', value: 2 },
|
{ label: '消防设备', value: 2 },
|
||||||
{ label: '特种设备', value: 3 },
|
{ label: '特种设备', value: 3 },
|
||||||
],
|
],
|
||||||
|
lineList: [],
|
||||||
|
maintainerList: [],
|
||||||
|
departmentList: [],
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
dataForm: {
|
dataForm: {
|
||||||
handler(val) {
|
handler(val) {
|
||||||
this.form = JSON.parse(JSON.stringify(val));
|
this.form = JSON.parse(JSON.stringify(val));
|
||||||
|
if (typeof val.maintainer == 'string')
|
||||||
|
this.form.maintainer = val.maintainer.split(',');
|
||||||
if (this.form.equipmentCategory != null) {
|
if (this.form.equipmentCategory != null) {
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
this.equipmentOptions = this.equipmentList
|
this.equipmentOptions = this.equipmentList
|
||||||
@ -224,8 +336,33 @@ export default {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.getEquipmentList();
|
!this.edit && this.getCode('/base/equipment-maintain-plan/getCode');
|
||||||
this.getCode('/base/equipment-maintain-plan/getCode');
|
this.getList('maintainer');
|
||||||
|
this.getList('department');
|
||||||
|
this.getList('line');
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
departmentOptions() {
|
||||||
|
return (this.departmentList || []).map((item) => ({
|
||||||
|
id: item.id,
|
||||||
|
label: item.name,
|
||||||
|
value: item.id,
|
||||||
|
}));
|
||||||
|
},
|
||||||
|
lineOptions() {
|
||||||
|
return (this.lineList || []).map((item) => ({
|
||||||
|
id: item.id,
|
||||||
|
label: item.name,
|
||||||
|
value: item.id,
|
||||||
|
}));
|
||||||
|
},
|
||||||
|
maintainerOptions() {
|
||||||
|
return (this.maintainerList || []).map((item) => ({
|
||||||
|
id: item.id,
|
||||||
|
label: item.name,
|
||||||
|
value: item.name,
|
||||||
|
}));
|
||||||
|
},
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
/** 模拟透传 ref */
|
/** 模拟透传 ref */
|
||||||
@ -253,6 +390,29 @@ export default {
|
|||||||
}));
|
}));
|
||||||
this.formLoading = false;
|
this.formLoading = false;
|
||||||
},
|
},
|
||||||
|
async getList(source = 'department') {
|
||||||
|
const urls = [
|
||||||
|
'/base/core-production-line/listAll',
|
||||||
|
'/base/core-department/listAll',
|
||||||
|
'/base/core-worker/listAll',
|
||||||
|
];
|
||||||
|
let res;
|
||||||
|
switch (source) {
|
||||||
|
case 'department':
|
||||||
|
res = await this.$axios(urls[1]);
|
||||||
|
this.departmentList = res.data || [];
|
||||||
|
break;
|
||||||
|
case 'maintainer':
|
||||||
|
res = await this.$axios(urls[2]);
|
||||||
|
this.maintainerList = res.data || [];
|
||||||
|
break;
|
||||||
|
case 'line':
|
||||||
|
res = await this.$axios(urls[0]);
|
||||||
|
this.lineList = res.data || [];
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
this.formLoading = false;
|
||||||
|
},
|
||||||
|
|
||||||
// handlers
|
// handlers
|
||||||
handleEqTypeChange(type) {
|
handleEqTypeChange(type) {
|
||||||
|
461
src/views/specialEquipment/maintain/PlanConfig--addContent.vue
Normal file
461
src/views/specialEquipment/maintain/PlanConfig--addContent.vue
Normal file
@ -0,0 +1,461 @@
|
|||||||
|
<!--
|
||||||
|
filename: PlanConfig--addContent.vue
|
||||||
|
author: liubin
|
||||||
|
date: 2024-02-04 09:40:04
|
||||||
|
description:
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<el-drawer
|
||||||
|
:visible="visible"
|
||||||
|
:show-close="false"
|
||||||
|
:wrapper-closable="false"
|
||||||
|
class="drawer"
|
||||||
|
custom-class="mes-drawer"
|
||||||
|
size="60%"
|
||||||
|
@closed="$emit('destroy')">
|
||||||
|
<SmallTitle slot="title">
|
||||||
|
{{
|
||||||
|
mode.includes('detail')
|
||||||
|
? '详情'
|
||||||
|
: mode.includes('edit')
|
||||||
|
? '编辑'
|
||||||
|
: '新增'
|
||||||
|
}}
|
||||||
|
</SmallTitle>
|
||||||
|
|
||||||
|
<div class="drawer-body flex">
|
||||||
|
<div class="drawer-body__content">
|
||||||
|
<section>
|
||||||
|
<SmallTitle>保养信息</SmallTitle>
|
||||||
|
<div class="form-part" style="margin-bottom: 32px">
|
||||||
|
<el-skeleton v-if="!showForm" animated />
|
||||||
|
<el-form
|
||||||
|
v-else
|
||||||
|
ref="form"
|
||||||
|
:model="form"
|
||||||
|
label-position="top"
|
||||||
|
v-loading="formLoading">
|
||||||
|
<el-row :gutter="20">
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="保养计划名称" prop="name">
|
||||||
|
<span>{{ form.name }}</span>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="部门" prop="departmentName">
|
||||||
|
<span>{{ form.departmentName }}</span>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="产线名" prop="lineName">
|
||||||
|
<span>{{ form.lineName }}</span>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="保养频率" prop="maintenancePeriod">
|
||||||
|
<span>{{ form.maintenancePeriod }}</span>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="保养时长" prop="maintainDuration">
|
||||||
|
<span>{{ form.maintainDuration }}</span>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="计划保养人员" prop="maintainer">
|
||||||
|
<span>{{ form.maintainer }}</span>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-form>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section>
|
||||||
|
<SmallTitle>保养详情</SmallTitle>
|
||||||
|
<div style="margin-top: 12px; position: relative">
|
||||||
|
<div
|
||||||
|
v-if="!mode.includes('detail')"
|
||||||
|
style="position: absolute; top: -40px; right: 0">
|
||||||
|
<el-button @click="handleAddDetail" type="text">
|
||||||
|
<i class="el-icon-plus"></i>
|
||||||
|
添加详情
|
||||||
|
</el-button>
|
||||||
|
</div>
|
||||||
|
<base-table
|
||||||
|
v-loading="detailLoading"
|
||||||
|
:table-props="detailTableProps"
|
||||||
|
:page="detailTableQuery.pageNo || 1"
|
||||||
|
:limit="detailTableQuery.pageSize || 10"
|
||||||
|
:table-data="detailList"
|
||||||
|
@emitFun="handleDetailTableAction">
|
||||||
|
<method-btn
|
||||||
|
slot="handleBtn"
|
||||||
|
label="操作"
|
||||||
|
width="100"
|
||||||
|
:method-list="detailTableBtns"
|
||||||
|
@clickBtn="handleDetailTableBtnClicked" />
|
||||||
|
</base-table>
|
||||||
|
|
||||||
|
<!-- 分页组件 -->
|
||||||
|
<pagination
|
||||||
|
v-show="detailTotal > 0"
|
||||||
|
:total="detailTotal"
|
||||||
|
:page.sync="detailTableQuery.pageNo"
|
||||||
|
:limit.sync="detailTableQuery.pageSize"
|
||||||
|
@pagination="refreshDetailList" />
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="drawer-body__footer">
|
||||||
|
<el-button style="" @click="cancel">取消</el-button>
|
||||||
|
<el-button v-if="mode == 'detail'" type="primary" @click="toggleEdit">
|
||||||
|
编辑
|
||||||
|
</el-button>
|
||||||
|
<el-button v-else type="primary" @click="confirm">保存</el-button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- 属性对话框 -->
|
||||||
|
<base-dialog
|
||||||
|
dialogTitle="保养详情"
|
||||||
|
:dialogVisible="detailAddVisible"
|
||||||
|
width="35%"
|
||||||
|
:append-to-body="true"
|
||||||
|
custom-class="baseDialog"
|
||||||
|
@close="closeDetailForm"
|
||||||
|
@cancel="closeDetailForm"
|
||||||
|
@confirm="submitDetailForm">
|
||||||
|
<DialogForm
|
||||||
|
v-if="detailAddVisible"
|
||||||
|
ref="detailForm"
|
||||||
|
v-model="detailForm"
|
||||||
|
:rows="detailRows" />
|
||||||
|
</base-dialog>
|
||||||
|
</el-drawer>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import DialogForm from '@/components/DialogForm';
|
||||||
|
|
||||||
|
const SmallTitle = {
|
||||||
|
name: 'SmallTitle',
|
||||||
|
props: ['size'],
|
||||||
|
components: {},
|
||||||
|
data() {
|
||||||
|
return {};
|
||||||
|
},
|
||||||
|
methods: {},
|
||||||
|
render: function (h) {
|
||||||
|
return h(
|
||||||
|
'span',
|
||||||
|
{
|
||||||
|
class: 'small-title',
|
||||||
|
style: {
|
||||||
|
fontSize: '18px',
|
||||||
|
lineHeight:
|
||||||
|
this.size == 'lg' ? '24px' : this.size == 'sm' ? '18px' : '20px',
|
||||||
|
fontWeight: 500,
|
||||||
|
fontFamily: '微软雅黑, Microsoft YaHei, Arial, Helvetica, sans-serif',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
this.$slots.default
|
||||||
|
);
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'PlanConfig--addContent',
|
||||||
|
components: { SmallTitle, DialogForm },
|
||||||
|
props: ['maintainData'],
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
visible: false,
|
||||||
|
mode: 'edit',
|
||||||
|
showForm: false,
|
||||||
|
form: {
|
||||||
|
departmentName: null,
|
||||||
|
id: null,
|
||||||
|
lineName: null,
|
||||||
|
maintainDuration: null,
|
||||||
|
maintainer: null,
|
||||||
|
maintenancePeriod: null,
|
||||||
|
name: null,
|
||||||
|
},
|
||||||
|
formLoading: false,
|
||||||
|
equipmentOptions: [],
|
||||||
|
detailList: [],
|
||||||
|
detailAddVisible: false,
|
||||||
|
detailPageProps: ['equipmentName', 'program'],
|
||||||
|
detailForm: {
|
||||||
|
planId: null,
|
||||||
|
equipmentId: null,
|
||||||
|
program: '',
|
||||||
|
maintenanceDes: '',
|
||||||
|
remark: '',
|
||||||
|
},
|
||||||
|
detailRows: [
|
||||||
|
[
|
||||||
|
{
|
||||||
|
select: true,
|
||||||
|
label: '设备',
|
||||||
|
prop: 'equipmentId',
|
||||||
|
options: [],
|
||||||
|
rules: [
|
||||||
|
{ required: true, message: '设备不能为空', trigger: 'blur' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
input: true,
|
||||||
|
label: '保养项目',
|
||||||
|
prop: 'program',
|
||||||
|
rules: [
|
||||||
|
{ required: true, message: '保养项目不能为空', trigger: 'blur' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
input: true,
|
||||||
|
label: '保养描述',
|
||||||
|
prop: 'maintenanceDes',
|
||||||
|
rules: [
|
||||||
|
{ required: true, message: '包养描述不能为空', trigger: 'blur' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
],
|
||||||
|
detailLoading: false,
|
||||||
|
detailTableProps: [
|
||||||
|
{ prop: 'equipmentName', label: '设备名称' },
|
||||||
|
{ prop: 'program', label: '保养项目' },
|
||||||
|
{ prop: 'remark', label: '备注' },
|
||||||
|
],
|
||||||
|
detailTableQuery: {
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
},
|
||||||
|
detailTableBtns: [
|
||||||
|
{
|
||||||
|
type: 'edit',
|
||||||
|
btnName: '编辑',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'delete',
|
||||||
|
btnName: '删除',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
detailTotal: 0,
|
||||||
|
detailList: [],
|
||||||
|
equipmentList: [],
|
||||||
|
};
|
||||||
|
},
|
||||||
|
computed: {},
|
||||||
|
mounted() {
|
||||||
|
this.loadEquipments();
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
show({
|
||||||
|
departmentName,
|
||||||
|
id,
|
||||||
|
lineName,
|
||||||
|
maintainDuration,
|
||||||
|
maintainer,
|
||||||
|
maintenancePeriod,
|
||||||
|
name,
|
||||||
|
}) {
|
||||||
|
this.form = Object.assign(
|
||||||
|
{},
|
||||||
|
{
|
||||||
|
departmentName,
|
||||||
|
id,
|
||||||
|
lineName,
|
||||||
|
maintainDuration,
|
||||||
|
maintainer,
|
||||||
|
maintenancePeriod,
|
||||||
|
name,
|
||||||
|
}
|
||||||
|
);
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.refreshDetailList();
|
||||||
|
});
|
||||||
|
this.visible = true;
|
||||||
|
this.showForm = true;
|
||||||
|
},
|
||||||
|
cancel() {
|
||||||
|
this.visible = false;
|
||||||
|
setTimeout(() => {
|
||||||
|
this.$emit('closed');
|
||||||
|
}, 500);
|
||||||
|
},
|
||||||
|
confirm() {
|
||||||
|
this.cancel();
|
||||||
|
},
|
||||||
|
toggleEdit() {
|
||||||
|
this.mode == 'edit' ? 'detail' : 'edit';
|
||||||
|
},
|
||||||
|
async loadEquipments() {
|
||||||
|
// TODO: 很有可能此处要改成动态刷新/获取/加载设备列表,当总的特殊设备数量大于100的时候...
|
||||||
|
const res = await this.$axios('/base/core-equipment/page', {
|
||||||
|
params: {
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 100,
|
||||||
|
special: true,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
this.equipmentList = res.data?.list || [];
|
||||||
|
this.detailRows[0][0].options = (res.data?.list || []).map((item) => ({
|
||||||
|
label: item.name,
|
||||||
|
value: item.id,
|
||||||
|
}));
|
||||||
|
},
|
||||||
|
closeDetailForm() {
|
||||||
|
this.detailAddVisible = false;
|
||||||
|
},
|
||||||
|
async submitDetailForm() {
|
||||||
|
// validation
|
||||||
|
this.$refs.detailForm.validate(async (valid) => {
|
||||||
|
if (!valid) return;
|
||||||
|
const res = await this.$axios[this.detailForm.id ? 'put' : 'post'](
|
||||||
|
`/base/equipment-maintain-plan-det/${
|
||||||
|
this.detailForm.id ? 'update' : 'create'
|
||||||
|
}`,
|
||||||
|
{
|
||||||
|
...this.detailForm,
|
||||||
|
planId: this.form.id,
|
||||||
|
}
|
||||||
|
);
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.detailAddVisible = false;
|
||||||
|
this.$message.success('添加成功');
|
||||||
|
this.refreshDetailList();
|
||||||
|
} else {
|
||||||
|
this.detailAddVisible = false;
|
||||||
|
this.$message.error('出错');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
async refreshDetailList() {
|
||||||
|
this.detailLoading = true;
|
||||||
|
if (!this.form.id)
|
||||||
|
return this.$message.info('没有找到保养计划相关信息...');
|
||||||
|
const res = await this.$axios('/base/equipment-maintain-plan-det/page', {
|
||||||
|
params: {
|
||||||
|
pageNo: this.detailTableQuery.pageNo,
|
||||||
|
pageSize: this.detailTableQuery.pageSize,
|
||||||
|
planId: this.form.id,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
this.detailList = res.data?.list || [];
|
||||||
|
this.detailTotal = res.data?.total || 0;
|
||||||
|
this.detailLoading = false;
|
||||||
|
},
|
||||||
|
//
|
||||||
|
handleDetailTableAction() {},
|
||||||
|
handleDetailTableBtnClicked({ data, type }) {
|
||||||
|
switch (type) {
|
||||||
|
case 'edit':
|
||||||
|
const { id, equipmentId, planId, program, maintenanceDes, remark } =
|
||||||
|
data;
|
||||||
|
this.detailAddVisible = true;
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.detailForm = Object.assign(
|
||||||
|
{},
|
||||||
|
{
|
||||||
|
id,
|
||||||
|
equipmentId,
|
||||||
|
planId,
|
||||||
|
program,
|
||||||
|
maintenanceDes,
|
||||||
|
remark,
|
||||||
|
}
|
||||||
|
);
|
||||||
|
});
|
||||||
|
break;
|
||||||
|
case 'delete':
|
||||||
|
if (!data.id) return;
|
||||||
|
this.$confirm('确认移除该详情吗?', '提示', {
|
||||||
|
confirmButtonText: '确 认',
|
||||||
|
cancelButtonText: '取 消',
|
||||||
|
})
|
||||||
|
.then(async () => {
|
||||||
|
const res = await this.$axios.delete(
|
||||||
|
'/base/equipment-maintain-plan-det/delete',
|
||||||
|
{
|
||||||
|
params: {
|
||||||
|
id: data.id,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
);
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.$message.success('删除成功!');
|
||||||
|
this.refreshDetailList();
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(console.error);
|
||||||
|
break;
|
||||||
|
case 'detail':
|
||||||
|
this.handleDetail(data);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
this.handleTableActions({ data, type });
|
||||||
|
}
|
||||||
|
},
|
||||||
|
handleAddDetail() {
|
||||||
|
this.detailAddVisible = true;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.drawer >>> .el-drawer {
|
||||||
|
border-radius: 8px 0 0 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer >>> .el-drawer__header {
|
||||||
|
margin: 0;
|
||||||
|
padding: 32px 32px 24px;
|
||||||
|
border-bottom: 1px solid #dcdfe6;
|
||||||
|
margin-bottom: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.small-title::before {
|
||||||
|
content: '';
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: top;
|
||||||
|
width: 4px;
|
||||||
|
height: 22px;
|
||||||
|
border-radius: 1px;
|
||||||
|
margin-right: 8px;
|
||||||
|
background-color: #0b58ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer-body {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
height: calc(100% - 72px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer-body__content {
|
||||||
|
flex: 1;
|
||||||
|
/* background: #eee; */
|
||||||
|
padding: 20px 30px;
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer-body__footer {
|
||||||
|
display: flex;
|
||||||
|
justify-content: flex-end;
|
||||||
|
padding: 18px;
|
||||||
|
}
|
||||||
|
</style>
|
@ -24,7 +24,7 @@
|
|||||||
v-if="tableBtn.length"
|
v-if="tableBtn.length"
|
||||||
slot="handleBtn"
|
slot="handleBtn"
|
||||||
label="操作"
|
label="操作"
|
||||||
:width="120"
|
:width="180"
|
||||||
:method-list="tableBtn"
|
:method-list="tableBtn"
|
||||||
@clickBtn="handleTableBtnClick" />
|
@clickBtn="handleTableBtnClick" />
|
||||||
</base-table>
|
</base-table>
|
||||||
@ -44,8 +44,18 @@
|
|||||||
@close="cancel"
|
@close="cancel"
|
||||||
@cancel="cancel"
|
@cancel="cancel"
|
||||||
@confirm="submitForm">
|
@confirm="submitForm">
|
||||||
<DialogForm v-if="open" ref="form" v-model="form" :has-files="false" />
|
<DialogForm
|
||||||
|
v-if="open"
|
||||||
|
ref="form"
|
||||||
|
:edit="form.id != null"
|
||||||
|
v-model="form"
|
||||||
|
:has-files="false" />
|
||||||
</base-dialog>
|
</base-dialog>
|
||||||
|
|
||||||
|
<PlanConfigAddContent
|
||||||
|
v-if="addContentDrawerVisible"
|
||||||
|
ref="planConfigDetailDrawer"
|
||||||
|
@closed="addContentDrawerVisible = false" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -55,20 +65,25 @@ import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
|||||||
import { deleteEqMaintainPlan } from '@/api/equipment/base/maintain/record';
|
import { deleteEqMaintainPlan } from '@/api/equipment/base/maintain/record';
|
||||||
import { publicFormatter } from '@/utils/dict';
|
import { publicFormatter } from '@/utils/dict';
|
||||||
import PlanConfigAdd from './PlanConfig--add.vue';
|
import PlanConfigAdd from './PlanConfig--add.vue';
|
||||||
|
import PlanConfigAddContent from './PlanConfig--addContent.vue';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'SpecialEquipmentPlanConfig',
|
name: 'SpecialEquipmentPlanConfig',
|
||||||
components: { DialogForm: PlanConfigAdd },
|
components: { DialogForm: PlanConfigAdd, PlanConfigAddContent },
|
||||||
mixins: [basicPageMixin],
|
mixins: [basicPageMixin],
|
||||||
data() {
|
data() {
|
||||||
const t = new Date();
|
const t = new Date();
|
||||||
const [y, m, d] = [t.getFullYear(), t.getMonth(), t.getDate()];
|
const [y, m, d] = [t.getFullYear(), t.getMonth(), t.getDate()];
|
||||||
return {
|
return {
|
||||||
searchBarKeys: ['equipmentName', 'specialType', 'createTime'],
|
searchBarKeys: ['planName'], // 'specialType', 'equipmentName', 'createTime'],
|
||||||
tableBtn: [
|
tableBtn: [
|
||||||
|
// {
|
||||||
|
// type: 'detail',
|
||||||
|
// btnName: '保养记录',
|
||||||
|
// },
|
||||||
{
|
{
|
||||||
type: 'detail',
|
type: 'addContent',
|
||||||
btnName: '保养记录',
|
btnName: '添加内容',
|
||||||
},
|
},
|
||||||
this.$auth.hasPermi('equipment:plan-config:update')
|
this.$auth.hasPermi('equipment:plan-config:update')
|
||||||
? {
|
? {
|
||||||
@ -84,6 +99,23 @@ export default {
|
|||||||
: undefined,
|
: undefined,
|
||||||
].filter((v) => v),
|
].filter((v) => v),
|
||||||
tableProps: [
|
tableProps: [
|
||||||
|
{ prop: 'name', label: '计划名称' },
|
||||||
|
{ prop: 'departmentName', label: '部门' },
|
||||||
|
{ width: 144, prop: 'lineName', label: '产线名' },
|
||||||
|
{ width: 144, prop: 'maintenancePeriod', label: '保养频率(天/次)' },
|
||||||
|
{ width: 144, prop: 'firstMaintenanceTime', label: '首次保养时间' },
|
||||||
|
{ width: 144, prop: 'maintainDuration', label: '保养时长' },
|
||||||
|
{ prop: 'maintainer', label: '计划保养人员' },
|
||||||
|
{
|
||||||
|
width: 144,
|
||||||
|
prop: 'confirmTimeLimit',
|
||||||
|
label: '确认时限',
|
||||||
|
filter: (val) =>
|
||||||
|
val != null && val > 24
|
||||||
|
? `${(val - (val % 24)) / 24}天${val % 24}小时`
|
||||||
|
: `${val}小时`,
|
||||||
|
},
|
||||||
|
{ prop: 'remark', label: '备注' },
|
||||||
// {
|
// {
|
||||||
// prop: 'createTime',
|
// prop: 'createTime',
|
||||||
// label: '添加时间',
|
// label: '添加时间',
|
||||||
@ -91,59 +123,64 @@ export default {
|
|||||||
// width: 180,
|
// width: 180,
|
||||||
// filter: (val) => moment(val).format('yyyy-MM-DD HH:mm:ss'),
|
// filter: (val) => moment(val).format('yyyy-MM-DD HH:mm:ss'),
|
||||||
// },
|
// },
|
||||||
{ prop: 'name', label: '计划名称' },
|
// { prop: 'code', label: '计划编号' },
|
||||||
{ prop: 'code', label: '计划编号' },
|
// {
|
||||||
{
|
// prop: 'enabled',
|
||||||
prop: 'enabled',
|
// label: '启用状态',
|
||||||
label: '启用状态',
|
// filter: (val) => ['停用', '启用'][val],
|
||||||
filter: (val) => ['停用', '启用'][val],
|
// },
|
||||||
},
|
// {
|
||||||
{ prop: 'lineName', label: '产线' },
|
// prop: 'equipmentCategory',
|
||||||
{
|
// label: '设备大类',
|
||||||
prop: 'equipmentCategory',
|
// filter: (val) =>
|
||||||
label: '设备大类',
|
// val != null ? ['-', '安全', '消防', '特种'][val] : '-',
|
||||||
filter: (val) =>
|
// },
|
||||||
val != null ? ['-', '安全', '消防', '特种'][val] : '-',
|
// { prop: 'equipmentName', label: '设备名称' },
|
||||||
},
|
// { width: 144, prop: 'maintainDuration', label: '计划保养用时(h)' },
|
||||||
{ prop: 'equipmentName', label: '设备名称' },
|
// {
|
||||||
{ width: 144, prop: 'maintainDuration', label: '计划保养用时(h)' },
|
// prop: 'maintainType',
|
||||||
{ width: 144, prop: 'maintenancePeriod', label: '保养频率(天/次)' },
|
// label: '保养类型',
|
||||||
{
|
// filter: publicFormatter('maintain_type'),
|
||||||
prop: 'maintainType',
|
// },
|
||||||
label: '保养类型',
|
|
||||||
filter: publicFormatter('maintain_type'),
|
|
||||||
},
|
|
||||||
{ prop: 'remark', label: '备注' },
|
|
||||||
],
|
],
|
||||||
searchBarFormConfig: [
|
searchBarFormConfig: [
|
||||||
{
|
// {
|
||||||
type: 'select',
|
// type: 'select',
|
||||||
label: '设备大类',
|
// label: '设备大类',
|
||||||
selectOptions: [
|
// selectOptions: [
|
||||||
{ id: 1, name: '安全设备' },
|
// { id: 1, name: '安全设备' },
|
||||||
{ id: 2, name: '消防设备' },
|
// { id: 2, name: '消防设备' },
|
||||||
{ id: 3, name: '特种设备' },
|
// { id: 3, name: '特种设备' },
|
||||||
],
|
// ],
|
||||||
placeholder: '请选择设备大类',
|
// placeholder: '请选择设备大类',
|
||||||
param: 'specialType',
|
// param: 'specialType',
|
||||||
},
|
// },
|
||||||
{
|
{
|
||||||
type: 'input',
|
type: 'input',
|
||||||
label: '设备名',
|
label: '保养计划名称',
|
||||||
placeholder: '请输入设备名称',
|
placeholder: '请输入保养计划名称',
|
||||||
param: 'equipmentName',
|
param: 'planName',
|
||||||
},
|
// selectOptions: [
|
||||||
{
|
// {name: 1, id: 1}
|
||||||
type: 'datePicker',
|
// ]
|
||||||
label: '时间段',
|
|
||||||
dateType: 'daterange',
|
|
||||||
format: 'yyyy-MM-dd',
|
|
||||||
valueFormat: 'yyyy-MM-dd HH:mm:ss',
|
|
||||||
rangeSeparator: '-',
|
|
||||||
startPlaceholder: '开始时间',
|
|
||||||
endPlaceholder: '结束时间',
|
|
||||||
param: 'createTime',
|
|
||||||
},
|
},
|
||||||
|
// {
|
||||||
|
// type: 'input',
|
||||||
|
// label: '设备名',
|
||||||
|
// placeholder: '请输入设备名称',
|
||||||
|
// param: 'equipmentName',
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// type: 'datePicker',
|
||||||
|
// label: '时间段',
|
||||||
|
// dateType: 'daterange',
|
||||||
|
// format: 'yyyy-MM-dd',
|
||||||
|
// valueFormat: 'yyyy-MM-dd HH:mm:ss',
|
||||||
|
// rangeSeparator: '-',
|
||||||
|
// startPlaceholder: '开始时间',
|
||||||
|
// endPlaceholder: '结束时间',
|
||||||
|
// param: 'createTime',
|
||||||
|
// },
|
||||||
{
|
{
|
||||||
type: 'button',
|
type: 'button',
|
||||||
btnName: '查询',
|
btnName: '查询',
|
||||||
@ -271,13 +308,16 @@ export default {
|
|||||||
queryParams: {
|
queryParams: {
|
||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
pageSize: 10,
|
pageSize: 10,
|
||||||
equipmentName: null,
|
// equipmentName: null,
|
||||||
createTime: null,
|
// createTime: null,
|
||||||
specialType: null,
|
specialType: null,
|
||||||
|
planName: null,
|
||||||
},
|
},
|
||||||
// 表单参数
|
// 表单参数
|
||||||
form: {},
|
form: {},
|
||||||
basePath: '/base/equipment-maintain-plan',
|
basePath: '/base/equipment-maintain-plan',
|
||||||
|
addContentDrawerVisible: false,
|
||||||
|
maintainData: null,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
@ -311,19 +351,36 @@ export default {
|
|||||||
/** 表单重置 */
|
/** 表单重置 */
|
||||||
reset() {
|
reset() {
|
||||||
this.form = {
|
this.form = {
|
||||||
|
id: null,
|
||||||
code: null,
|
code: null,
|
||||||
name: null,
|
name: null,
|
||||||
equipmentId: null,
|
// equipmentId: null,
|
||||||
enabled: null,
|
maintainer: null,
|
||||||
|
lineId: null,
|
||||||
|
departmentId: null,
|
||||||
|
// enabled: null,
|
||||||
maintenancePeriod: null,
|
maintenancePeriod: null,
|
||||||
maintainDuration: null,
|
maintainDuration: null,
|
||||||
maintainType: null,
|
maintainType: null,
|
||||||
remark: null,
|
remark: null,
|
||||||
enabled: 1,
|
confirmTimeLimit: null,
|
||||||
equipmentCategory: null,
|
firstMaintenanceTime: null,
|
||||||
|
speical: false,
|
||||||
|
// equipmentCategory: null,
|
||||||
};
|
};
|
||||||
this.resetForm('form');
|
this.resetForm('form');
|
||||||
},
|
},
|
||||||
|
handleTableActions({ data, type }) {
|
||||||
|
switch (type) {
|
||||||
|
case 'addContent':
|
||||||
|
// 添加内容
|
||||||
|
this.addContentDrawerVisible = true;
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs.planConfigDetailDrawer.show(data);
|
||||||
|
});
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
},
|
||||||
/** 搜索按钮操作 */
|
/** 搜索按钮操作 */
|
||||||
handleQuery() {
|
handleQuery() {
|
||||||
this.queryParams.pageNo = 1;
|
this.queryParams.pageNo = 1;
|
||||||
@ -364,7 +421,6 @@ export default {
|
|||||||
const id = row.id;
|
const id = row.id;
|
||||||
this.info({ id }).then((response) => {
|
this.info({ id }).then((response) => {
|
||||||
this.form = response.data;
|
this.form = response.data;
|
||||||
debugger;
|
|
||||||
this.open = true;
|
this.open = true;
|
||||||
this.title = '修改保养计划';
|
this.title = '修改保养计划';
|
||||||
});
|
});
|
||||||
@ -377,7 +433,10 @@ export default {
|
|||||||
}
|
}
|
||||||
// 修改的提交
|
// 修改的提交
|
||||||
if (this.form.id != null) {
|
if (this.form.id != null) {
|
||||||
this.put(this.form).then((response) => {
|
this.put({
|
||||||
|
...this.form,
|
||||||
|
maintainer: this.form.maintainer.join(','),
|
||||||
|
}).then((response) => {
|
||||||
this.$modal.msgSuccess('修改成功');
|
this.$modal.msgSuccess('修改成功');
|
||||||
this.open = false;
|
this.open = false;
|
||||||
this.getList();
|
this.getList();
|
||||||
@ -385,7 +444,11 @@ export default {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
// 添加的提交
|
// 添加的提交
|
||||||
this.post(this.form).then((response) => {
|
this.post({
|
||||||
|
...this.form,
|
||||||
|
special: true,
|
||||||
|
maintainer: this.form.maintainer.join(','),
|
||||||
|
}).then((response) => {
|
||||||
this.$modal.msgSuccess('新增成功');
|
this.$modal.msgSuccess('新增成功');
|
||||||
this.open = false;
|
this.open = false;
|
||||||
this.getList();
|
this.getList();
|
||||||
|
425
src/views/specialEquipment/maintain/Record--detail.vue
Normal file
425
src/views/specialEquipment/maintain/Record--detail.vue
Normal file
@ -0,0 +1,425 @@
|
|||||||
|
<!--
|
||||||
|
filename: PlanConfig--addContent.vue
|
||||||
|
author: liubin
|
||||||
|
date: 2024-02-04 09:40:04
|
||||||
|
description:
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<el-drawer
|
||||||
|
:visible="visible"
|
||||||
|
:show-close="false"
|
||||||
|
:wrapper-closable="false"
|
||||||
|
class="drawer"
|
||||||
|
custom-class="mes-drawer"
|
||||||
|
size="60%"
|
||||||
|
@closed="$emit('destroy')">
|
||||||
|
<SmallTitle slot="title">
|
||||||
|
{{
|
||||||
|
mode.includes('detail')
|
||||||
|
? '详情'
|
||||||
|
: mode.includes('edit')
|
||||||
|
? '编辑'
|
||||||
|
: '新增'
|
||||||
|
}}
|
||||||
|
</SmallTitle>
|
||||||
|
|
||||||
|
<div class="drawer-body flex">
|
||||||
|
<div class="drawer-body__content">
|
||||||
|
<section>
|
||||||
|
<!-- <SmallTitle>保养信息</SmallTitle> -->
|
||||||
|
<div class="form-part" style="margin-bottom: 32px">
|
||||||
|
<el-skeleton v-if="!showForm" animated />
|
||||||
|
<el-form
|
||||||
|
v-else
|
||||||
|
ref="form"
|
||||||
|
:model="form"
|
||||||
|
label-position="top"
|
||||||
|
v-loading="formLoading">
|
||||||
|
<el-row :gutter="20">
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="计划保养人员" prop="planMaintainWorker">
|
||||||
|
<span>{{ form.planMaintainWorker }}</span>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="实际保养人员" prop="maintainWorker">
|
||||||
|
<span>{{ form.maintainWorker }}</span>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-form>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section>
|
||||||
|
<SmallTitle>保养详情</SmallTitle>
|
||||||
|
<div style="margin-top: 12px; position: relative">
|
||||||
|
<base-table
|
||||||
|
v-loading="detailLoading"
|
||||||
|
:table-props="detailTableProps"
|
||||||
|
:page="detailTableQuery.pageNo || 1"
|
||||||
|
:limit="detailTableQuery.pageSize || 10"
|
||||||
|
:table-data="detailList"
|
||||||
|
@emitFun="handleDetailTableAction">
|
||||||
|
<!-- <method-btn
|
||||||
|
slot="handleBtn"
|
||||||
|
label="操作"
|
||||||
|
width="100"
|
||||||
|
:method-list="detailTableBtns"
|
||||||
|
@clickBtn="handleDetailTableBtnClicked" /> -->
|
||||||
|
</base-table>
|
||||||
|
|
||||||
|
<!-- 分页组件 -->
|
||||||
|
<pagination
|
||||||
|
v-show="detailTotal > 0"
|
||||||
|
:total="detailTotal"
|
||||||
|
:page.sync="detailTableQuery.pageNo"
|
||||||
|
:limit.sync="detailTableQuery.pageSize"
|
||||||
|
@pagination="refreshDetailList" />
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="drawer-body__footer">
|
||||||
|
<el-button style="" @click="cancel">返回</el-button>
|
||||||
|
<!-- <el-button v-if="mode == 'detail'" type="primary" @click="toggleEdit">
|
||||||
|
编辑
|
||||||
|
</el-button>
|
||||||
|
<el-button v-else type="primary" @click="confirm">保存</el-button> -->
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- 属性对话框 -->
|
||||||
|
<base-dialog
|
||||||
|
dialogTitle="保养详情"
|
||||||
|
:dialogVisible="detailAddVisible"
|
||||||
|
width="35%"
|
||||||
|
:append-to-body="true"
|
||||||
|
custom-class="baseDialog"
|
||||||
|
@close="closeDetailForm"
|
||||||
|
@cancel="closeDetailForm"
|
||||||
|
@confirm="submitDetailForm">
|
||||||
|
<DialogForm
|
||||||
|
v-if="detailAddVisible"
|
||||||
|
ref="detailForm"
|
||||||
|
v-model="detailForm"
|
||||||
|
:rows="detailRows" />
|
||||||
|
</base-dialog>
|
||||||
|
</el-drawer>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import DialogForm from '@/components/DialogForm';
|
||||||
|
|
||||||
|
const SmallTitle = {
|
||||||
|
name: 'SmallTitle',
|
||||||
|
props: ['size'],
|
||||||
|
components: {},
|
||||||
|
data() {
|
||||||
|
return {};
|
||||||
|
},
|
||||||
|
methods: {},
|
||||||
|
render: function (h) {
|
||||||
|
return h(
|
||||||
|
'span',
|
||||||
|
{
|
||||||
|
class: 'small-title',
|
||||||
|
style: {
|
||||||
|
fontSize: '18px',
|
||||||
|
lineHeight:
|
||||||
|
this.size == 'lg' ? '24px' : this.size == 'sm' ? '18px' : '20px',
|
||||||
|
fontWeight: 500,
|
||||||
|
fontFamily: '微软雅黑, Microsoft YaHei, Arial, Helvetica, sans-serif',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
this.$slots.default
|
||||||
|
);
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'PlanConfig--addContent',
|
||||||
|
components: { SmallTitle, DialogForm },
|
||||||
|
props: ['maintainData'],
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
visible: false,
|
||||||
|
mode: 'detail',
|
||||||
|
showForm: false,
|
||||||
|
form: {
|
||||||
|
id: null,
|
||||||
|
maintainWorker: null,
|
||||||
|
planMaintainWorker: null,
|
||||||
|
},
|
||||||
|
formLoading: false,
|
||||||
|
equipmentOptions: [],
|
||||||
|
detailList: [],
|
||||||
|
detailAddVisible: false,
|
||||||
|
detailPageProps: ['equipmentName', 'program'],
|
||||||
|
detailForm: {
|
||||||
|
planId: null,
|
||||||
|
equipmentId: null,
|
||||||
|
program: '',
|
||||||
|
maintenanceDes: '',
|
||||||
|
remark: '',
|
||||||
|
},
|
||||||
|
detailRows: [
|
||||||
|
[
|
||||||
|
{
|
||||||
|
select: true,
|
||||||
|
label: '设备',
|
||||||
|
prop: 'equipmentId',
|
||||||
|
options: [],
|
||||||
|
rules: [
|
||||||
|
{ required: true, message: '设备不能为空', trigger: 'blur' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
input: true,
|
||||||
|
label: '保养项目',
|
||||||
|
prop: 'program',
|
||||||
|
rules: [
|
||||||
|
{ required: true, message: '保养项目不能为空', trigger: 'blur' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
input: true,
|
||||||
|
label: '保养描述',
|
||||||
|
prop: 'maintenanceDes',
|
||||||
|
rules: [
|
||||||
|
{ required: true, message: '包养描述不能为空', trigger: 'blur' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
],
|
||||||
|
detailLoading: false,
|
||||||
|
detailTableProps: [
|
||||||
|
{ prop: 'equipmentName', label: '设备名称' },
|
||||||
|
{ prop: 'program', label: '保养项目' },
|
||||||
|
{ prop: 'maintenanceDes', label: '保养描述' },
|
||||||
|
// { prop: 'remark', label: '备注' },
|
||||||
|
],
|
||||||
|
detailTableQuery: {
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
},
|
||||||
|
detailTableBtns: [
|
||||||
|
{
|
||||||
|
type: 'edit',
|
||||||
|
btnName: '编辑',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'delete',
|
||||||
|
btnName: '删除',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
detailTotal: 0,
|
||||||
|
detailList: [],
|
||||||
|
equipmentList: [],
|
||||||
|
};
|
||||||
|
},
|
||||||
|
computed: {},
|
||||||
|
mounted() {
|
||||||
|
this.loadEquipments();
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
show({ planMaintainWorker, id, maintainWorker }) {
|
||||||
|
this.form = Object.assign(
|
||||||
|
{},
|
||||||
|
{
|
||||||
|
planMaintainWorker,
|
||||||
|
id,
|
||||||
|
maintainWorker,
|
||||||
|
}
|
||||||
|
);
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.refreshDetailList();
|
||||||
|
});
|
||||||
|
this.visible = true;
|
||||||
|
this.showForm = true;
|
||||||
|
},
|
||||||
|
cancel() {
|
||||||
|
this.visible = false;
|
||||||
|
setTimeout(() => {
|
||||||
|
this.$emit('closed');
|
||||||
|
}, 500);
|
||||||
|
},
|
||||||
|
confirm() {
|
||||||
|
this.cancel();
|
||||||
|
},
|
||||||
|
toggleEdit() {
|
||||||
|
this.mode == 'edit' ? 'detail' : 'edit';
|
||||||
|
},
|
||||||
|
async loadEquipments() {
|
||||||
|
// TODO: 很有可能此处要改成动态刷新/获取/加载设备列表,当总的特殊设备数量大于100的时候...
|
||||||
|
const res = await this.$axios('/base/core-equipment/page', {
|
||||||
|
params: {
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 100,
|
||||||
|
special: true,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
this.equipmentList = res.data?.list || [];
|
||||||
|
this.detailRows[0][0].options = (res.data?.list || []).map((item) => ({
|
||||||
|
label: item.name,
|
||||||
|
value: item.id,
|
||||||
|
}));
|
||||||
|
},
|
||||||
|
closeDetailForm() {
|
||||||
|
this.detailAddVisible = false;
|
||||||
|
},
|
||||||
|
async submitDetailForm() {
|
||||||
|
// validation
|
||||||
|
this.$refs.detailForm.validate(async (valid) => {
|
||||||
|
if (!valid) return;
|
||||||
|
const res = await this.$axios[this.detailForm.id ? 'put' : 'post'](
|
||||||
|
`/base/equipment-maintain-plan-det/${
|
||||||
|
this.detailForm.id ? 'update' : 'create'
|
||||||
|
}`,
|
||||||
|
{
|
||||||
|
...this.detailForm,
|
||||||
|
planId: this.form.id,
|
||||||
|
}
|
||||||
|
);
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.detailAddVisible = false;
|
||||||
|
this.$message.success('添加成功');
|
||||||
|
this.refreshDetailList();
|
||||||
|
} else {
|
||||||
|
this.detailAddVisible = false;
|
||||||
|
this.$message.error('出错');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
async refreshDetailList() {
|
||||||
|
this.detailLoading = true;
|
||||||
|
if (!this.form.id) {
|
||||||
|
this.$message.info('没有找到保养计划相关信息...');
|
||||||
|
this.detailLoading = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
const res = await this.$axios(
|
||||||
|
'/base/equipment-maintain-log-det/page',
|
||||||
|
{
|
||||||
|
params: {
|
||||||
|
pageNo: this.detailTableQuery.pageNo,
|
||||||
|
pageSize: this.detailTableQuery.pageSize,
|
||||||
|
// planId: this.form.id,
|
||||||
|
logId: this.form.id,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
);
|
||||||
|
this.detailList = res.data?.list || [];
|
||||||
|
this.detailTotal = res.data?.total || 0;
|
||||||
|
this.detailLoading = false;
|
||||||
|
} catch (err) {
|
||||||
|
this.detailLoading = false;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
//
|
||||||
|
handleDetailTableAction() {},
|
||||||
|
handleDetailTableBtnClicked({ data, type }) {
|
||||||
|
switch (type) {
|
||||||
|
case 'edit':
|
||||||
|
const { id, equipmentId, planId, program, maintenanceDes, remark } =
|
||||||
|
data;
|
||||||
|
this.detailAddVisible = true;
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.detailForm = Object.assign(
|
||||||
|
{},
|
||||||
|
{
|
||||||
|
id,
|
||||||
|
equipmentId,
|
||||||
|
planId,
|
||||||
|
program,
|
||||||
|
maintenanceDes,
|
||||||
|
remark,
|
||||||
|
}
|
||||||
|
);
|
||||||
|
});
|
||||||
|
break;
|
||||||
|
case 'delete':
|
||||||
|
if (!data.id) return;
|
||||||
|
this.$confirm('确认移除该详情吗?', '提示', {
|
||||||
|
confirmButtonText: '确 认',
|
||||||
|
cancelButtonText: '取 消',
|
||||||
|
})
|
||||||
|
.then(async () => {
|
||||||
|
const res = await this.$axios.delete(
|
||||||
|
'/base/equipment-maintain-plan-det/delete',
|
||||||
|
{
|
||||||
|
params: {
|
||||||
|
id: data.id,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
);
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.$message.success('删除成功!');
|
||||||
|
this.refreshDetailList();
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(console.error);
|
||||||
|
break;
|
||||||
|
case 'detail':
|
||||||
|
this.handleDetail(data);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
this.handleTableActions({ data, type });
|
||||||
|
}
|
||||||
|
},
|
||||||
|
handleAddDetail() {
|
||||||
|
this.detailAddVisible = true;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.drawer >>> .el-drawer {
|
||||||
|
border-radius: 8px 0 0 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer >>> .el-drawer__header {
|
||||||
|
margin: 0;
|
||||||
|
padding: 32px 32px 24px;
|
||||||
|
border-bottom: 1px solid #dcdfe6;
|
||||||
|
margin-bottom: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.small-title::before {
|
||||||
|
content: '';
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: top;
|
||||||
|
width: 4px;
|
||||||
|
height: 22px;
|
||||||
|
border-radius: 1px;
|
||||||
|
margin-right: 8px;
|
||||||
|
background-color: #0b58ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer-body {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
height: calc(100% - 72px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer-body__content {
|
||||||
|
flex: 1;
|
||||||
|
/* background: #eee; */
|
||||||
|
padding: 20px 30px;
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer-body__footer {
|
||||||
|
display: flex;
|
||||||
|
justify-content: flex-end;
|
||||||
|
padding: 18px;
|
||||||
|
}
|
||||||
|
</style>
|
@ -11,7 +11,6 @@
|
|||||||
<SearchBar
|
<SearchBar
|
||||||
:formConfigs="searchBarFormConfig"
|
:formConfigs="searchBarFormConfig"
|
||||||
ref="search-bar"
|
ref="search-bar"
|
||||||
:is-fold="true"
|
|
||||||
@select-changed="handleSearchBarChange"
|
@select-changed="handleSearchBarChange"
|
||||||
@headBtnClick="handleSearchBarBtnClick" />
|
@headBtnClick="handleSearchBarBtnClick" />
|
||||||
|
|
||||||
@ -22,13 +21,13 @@
|
|||||||
:limit="queryParams.pageSize"
|
:limit="queryParams.pageSize"
|
||||||
:table-data="list"
|
:table-data="list"
|
||||||
@emitFun="handleEmitFun">
|
@emitFun="handleEmitFun">
|
||||||
<method-btn
|
<!-- <method-btn
|
||||||
v-if="tableBtn.length"
|
v-if="tableBtn.length"
|
||||||
slot="handleBtn"
|
slot="handleBtn"
|
||||||
label="操作"
|
label="操作"
|
||||||
:width="120"
|
:width="120"
|
||||||
:method-list="tableBtn"
|
:method-list="tableBtn"
|
||||||
@clickBtn="handleTableBtnClick" />
|
@clickBtn="handleTableBtnClick" /> -->
|
||||||
</base-table>
|
</base-table>
|
||||||
|
|
||||||
<!-- 分页组件 -->
|
<!-- 分页组件 -->
|
||||||
@ -60,6 +59,11 @@
|
|||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
</base-dialog>
|
</base-dialog>
|
||||||
|
|
||||||
|
<RecordDetail
|
||||||
|
v-if="recordDetailVisible"
|
||||||
|
ref="recordDetailDrawer"
|
||||||
|
@closed="recordDetailVisible = false" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -72,21 +76,47 @@ import {
|
|||||||
deleteEqMaintainLog,
|
deleteEqMaintainLog,
|
||||||
exportMaintainLogExcel,
|
exportMaintainLogExcel,
|
||||||
} from '@/api/equipment/base/maintain/record';
|
} from '@/api/equipment/base/maintain/record';
|
||||||
|
import RecordDetail from './Record--detail.vue';
|
||||||
|
|
||||||
const timeFilter = (val) => moment(val).format('yyyy-MM-DD HH:mm:ss');
|
const timeFilter = (val) => moment(val).format('yyyy-MM-DD HH:mm:ss');
|
||||||
|
|
||||||
|
const btn = {
|
||||||
|
name: 'tableBtn',
|
||||||
|
props: ['injectData'],
|
||||||
|
data() {
|
||||||
|
return {};
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
handleClick() {
|
||||||
|
this.$emit('emitData', {
|
||||||
|
action: this.injectData.label,
|
||||||
|
value: this.injectData,
|
||||||
|
});
|
||||||
|
},
|
||||||
|
},
|
||||||
|
render: function (h) {
|
||||||
|
return (
|
||||||
|
<el-button type="text" onClick={this.handleClick}>
|
||||||
|
{this.injectData.name}
|
||||||
|
</el-button>
|
||||||
|
);
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'SpecialEquipmentMaintainRecord',
|
name: 'SpecialEquipmentMaintainRecord',
|
||||||
components: { DialogForm },
|
components: { DialogForm, RecordDetail },
|
||||||
mixins: [basicPageMixin],
|
mixins: [basicPageMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
recordDetailVisible: false,
|
||||||
searchBarKeys: [
|
searchBarKeys: [
|
||||||
'maintainPlanId',
|
'maintainPlanId',
|
||||||
'startTime',
|
'startTime',
|
||||||
'relatePlan',
|
'special',
|
||||||
'equipmentId',
|
// 'relatePlan',
|
||||||
'specialType',
|
// 'equipmentId',
|
||||||
|
// 'specialType',
|
||||||
],
|
],
|
||||||
tableBtn: [
|
tableBtn: [
|
||||||
this.$auth.hasPermi('equipment:maintain-record:update')
|
this.$auth.hasPermi('equipment:maintain-record:update')
|
||||||
@ -122,99 +152,147 @@ export default {
|
|||||||
width: 110,
|
width: 110,
|
||||||
showOverflowtooltip: true,
|
showOverflowtooltip: true,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
prop: 'planName',
|
||||||
|
label: '保养计划名称',
|
||||||
|
width: 110,
|
||||||
|
showOverflowtooltip: true,
|
||||||
|
filter: (val) => (val != null ? val : '---'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'departmentName',
|
||||||
|
label: '部门',
|
||||||
|
width: 110,
|
||||||
|
showOverflowtooltip: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'lineName',
|
||||||
|
label: '产线名',
|
||||||
|
width: 110,
|
||||||
|
showOverflowtooltip: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'planStartTime',
|
||||||
|
label: '计划开始时间',
|
||||||
|
filter: timeFilter,
|
||||||
|
minWidth: 150,
|
||||||
|
showOverflowtooltip: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'planEndTime',
|
||||||
|
label: '计划结束时间',
|
||||||
|
filter: timeFilter,
|
||||||
|
minWidth: 150,
|
||||||
|
showOverflowtooltip: true,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
prop: 'startTime',
|
prop: 'startTime',
|
||||||
label: '开始时间',
|
label: '实际开始时间',
|
||||||
filter: timeFilter,
|
filter: timeFilter,
|
||||||
minWidth: 150,
|
minWidth: 150,
|
||||||
showOverflowtooltip: true,
|
showOverflowtooltip: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'endTime',
|
prop: 'endTime',
|
||||||
label: '结束时间',
|
label: '实际结束时间',
|
||||||
filter: timeFilter,
|
filter: timeFilter,
|
||||||
minWidth: 150,
|
minWidth: 150,
|
||||||
showOverflowtooltip: true,
|
showOverflowtooltip: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'equipmentCategory',
|
prop: 'relatePlan',
|
||||||
label: '设备大类',
|
label: '保养计划类型',
|
||||||
minWidth: 100,
|
minWidth: 100,
|
||||||
showOverflowtooltip: true,
|
showOverflowtooltip: true,
|
||||||
filter: (val) =>
|
filter: (val) =>
|
||||||
val != null ? ['-', '安全设备', '消防设备', '特种设备'][val] : '-',
|
val != null ? ['-', '计划型', '非计划型'][val] : '-',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'equipmentName',
|
prop: '_detail',
|
||||||
label: '设备名称',
|
label: '详情',
|
||||||
minWidth: 100,
|
name: '详情',
|
||||||
showOverflowtooltip: true,
|
minWidth: 60,
|
||||||
},
|
subcomponent: btn,
|
||||||
{
|
|
||||||
prop: 'maintainWorker',
|
|
||||||
label: '保养人员',
|
|
||||||
minWidth: 100,
|
|
||||||
showOverflowtooltip: true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'relatePlan',
|
|
||||||
label: '是否计划保养',
|
|
||||||
width: 120,
|
|
||||||
filter: (v) => (v != null ? ['', '是', '否'][v] : ''),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'planName',
|
|
||||||
label: '保养计划名称',
|
|
||||||
minWidth: 120,
|
|
||||||
showOverflowtooltip: true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'maintainDuration',
|
|
||||||
label: '计划保养用时(h)',
|
|
||||||
minWidth: 130,
|
|
||||||
showOverflowtooltip: true,
|
|
||||||
},
|
|
||||||
{ prop: 'timeUsed', label: '实际保养用时(h)', minWidth: 130 },
|
|
||||||
{
|
|
||||||
prop: 'remark',
|
|
||||||
label: '备注',
|
|
||||||
minWidth: 100,
|
|
||||||
showOverflowtooltip: true,
|
|
||||||
},
|
},
|
||||||
|
// {
|
||||||
|
// prop: 'equipmentCategory',
|
||||||
|
// label: '设备大类',
|
||||||
|
// minWidth: 100,
|
||||||
|
// showOverflowtooltip: true,
|
||||||
|
// filter: (val) =>
|
||||||
|
// val != null ? ['-', '安全设备', '消防设备', '特种设备'][val] : '-',
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// prop: 'equipmentName',
|
||||||
|
// label: '设备名称',
|
||||||
|
// minWidth: 100,
|
||||||
|
// showOverflowtooltip: true,
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// prop: 'maintainWorker',
|
||||||
|
// label: '保养人员',
|
||||||
|
// minWidth: 100,
|
||||||
|
// showOverflowtooltip: true,
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// prop: 'relatePlan',
|
||||||
|
// label: '是否计划保养',
|
||||||
|
// width: 120,
|
||||||
|
// filter: (v) => (v != null ? ['', '是', '否'][v] : ''),
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// prop: 'planName',
|
||||||
|
// label: '保养计划名称',
|
||||||
|
// minWidth: 120,
|
||||||
|
// showOverflowtooltip: true,
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// prop: 'maintainDuration',
|
||||||
|
// label: '计划保养用时(h)',
|
||||||
|
// minWidth: 130,
|
||||||
|
// showOverflowtooltip: true,
|
||||||
|
// },
|
||||||
|
// { prop: 'timeUsed', label: '实际保养用时(h)', minWidth: 130 },
|
||||||
|
// {
|
||||||
|
// prop: 'remark',
|
||||||
|
// label: '备注',
|
||||||
|
// minWidth: 100,
|
||||||
|
// showOverflowtooltip: true,
|
||||||
|
// },
|
||||||
],
|
],
|
||||||
searchBarFormConfig: [
|
searchBarFormConfig: [
|
||||||
|
// {
|
||||||
|
// type: 'select',
|
||||||
|
// label: '设备大类',
|
||||||
|
// placeholder: '请选择设备大类',
|
||||||
|
// param: 'specialType',
|
||||||
|
// onchange: true,
|
||||||
|
// selectOptions: [
|
||||||
|
// { id: 1, name: '安全设备' },
|
||||||
|
// { id: 2, name: '消防设备' },
|
||||||
|
// { id: 3, name: '特种设备' },
|
||||||
|
// ],
|
||||||
|
// filterable: true,
|
||||||
|
// defaultSelect: null
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// type: 'select',
|
||||||
|
// label: '设备',
|
||||||
|
// placeholder: '请选择设备',
|
||||||
|
// param: 'equipmentId',
|
||||||
|
// defaultSelect: null
|
||||||
|
// },
|
||||||
{
|
{
|
||||||
type: 'select',
|
type: 'select',
|
||||||
label: '设备大类',
|
label: '保养计划名称',
|
||||||
placeholder: '请选择设备大类',
|
placeholder: '请选择保养计划名称',
|
||||||
param: 'specialType',
|
|
||||||
onchange: true,
|
|
||||||
selectOptions: [
|
|
||||||
{ id: 1, name: '安全设备' },
|
|
||||||
{ id: 2, name: '消防设备' },
|
|
||||||
{ id: 3, name: '特种设备' },
|
|
||||||
],
|
|
||||||
filterable: true,
|
|
||||||
defaultSelect: null
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: 'select',
|
|
||||||
label: '设备',
|
|
||||||
placeholder: '请选择设备',
|
|
||||||
param: 'equipmentId',
|
|
||||||
defaultSelect: null
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: 'select',
|
|
||||||
label: '计划名称',
|
|
||||||
placeholder: '请选择计划名称',
|
|
||||||
param: 'maintainPlanId',
|
param: 'maintainPlanId',
|
||||||
defaultSelect: null
|
defaultSelect: null,
|
||||||
},
|
},
|
||||||
// 开始结束时间
|
// 开始结束时间
|
||||||
{
|
{
|
||||||
type: 'datePicker',
|
type: 'datePicker',
|
||||||
label: '保养开始时间',
|
label: '实际开始时间',
|
||||||
dateType: 'daterange', // datetimerange
|
dateType: 'daterange', // datetimerange
|
||||||
format: 'yyyy-MM-dd',
|
format: 'yyyy-MM-dd',
|
||||||
valueFormat: 'yyyy-MM-dd HH:mm:ss',
|
valueFormat: 'yyyy-MM-dd HH:mm:ss',
|
||||||
@ -223,19 +301,19 @@ export default {
|
|||||||
endPlaceholder: '结束日期',
|
endPlaceholder: '结束日期',
|
||||||
defaultTime: ['00:00:00', '23:59:59'],
|
defaultTime: ['00:00:00', '23:59:59'],
|
||||||
param: 'startTime',
|
param: 'startTime',
|
||||||
defaultSelect: null
|
defaultSelect: null,
|
||||||
// width: 350,
|
// width: 350,
|
||||||
},
|
},
|
||||||
{
|
// {
|
||||||
type: 'select',
|
// type: 'select',
|
||||||
label: '是否计划保养',
|
// label: '是否计划保养',
|
||||||
selectOptions: [
|
// selectOptions: [
|
||||||
{ name: '是', id: 1 },
|
// { name: '是', id: 1 },
|
||||||
{ name: '否', id: 2 },
|
// { name: '否', id: 2 },
|
||||||
],
|
// ],
|
||||||
defaultSelect: null,
|
// defaultSelect: null,
|
||||||
param: 'relatePlan',
|
// param: 'relatePlan',
|
||||||
},
|
// },
|
||||||
{
|
{
|
||||||
type: 'button',
|
type: 'button',
|
||||||
btnName: '查询',
|
btnName: '查询',
|
||||||
@ -254,15 +332,15 @@ export default {
|
|||||||
plain: true,
|
plain: true,
|
||||||
color: 'primary',
|
color: 'primary',
|
||||||
},
|
},
|
||||||
{
|
// {
|
||||||
type: this.$auth.hasPermi('equipment:maintain-record:create')
|
// type: this.$auth.hasPermi('equipment:maintain-record:create')
|
||||||
? 'button'
|
// ? 'button'
|
||||||
: '',
|
// : '',
|
||||||
btnName: '新增',
|
// btnName: '新增',
|
||||||
name: 'add',
|
// name: 'add',
|
||||||
plain: true,
|
// plain: true,
|
||||||
color: 'success',
|
// color: 'success',
|
||||||
},
|
// },
|
||||||
],
|
],
|
||||||
rows: [
|
rows: [
|
||||||
[
|
[
|
||||||
@ -422,12 +500,11 @@ export default {
|
|||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
pageSize: 10,
|
pageSize: 10,
|
||||||
maintainPlanId: null,
|
maintainPlanId: null,
|
||||||
maintainPlanId: null,
|
|
||||||
startTime: null,
|
startTime: null,
|
||||||
relatePlan: null,
|
// relatePlan: null,
|
||||||
equipmentId: null,
|
// equipmentId: null,
|
||||||
special: true,
|
special: true,
|
||||||
specialType: null,
|
// specialType: null,
|
||||||
},
|
},
|
||||||
// 表单参数
|
// 表单参数
|
||||||
form: {},
|
form: {},
|
||||||
@ -438,32 +515,24 @@ export default {
|
|||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
this.initSearchBar();
|
this.initSearchBar();
|
||||||
if (this.$route.query) {
|
|
||||||
this.queryParams.specialType =
|
|
||||||
this.$route.query?.specialType ?? undefined;
|
|
||||||
this.queryParams.equipmentId =
|
|
||||||
this.$route.query?.equipmentId ?? undefined;
|
|
||||||
this.queryParams.maintainPlanId =
|
|
||||||
this.$route.query?.maintainPlanId ?? undefined;
|
|
||||||
this.queryParams.relatePlan = this.$route.query?.relatePlan ?? undefined;
|
|
||||||
this.queryParams.startTime = this.$route.query?.createTime ?? undefined;
|
|
||||||
this.searchBarFormConfig[0].defaultSelect =
|
|
||||||
this.$route.query.specialType ?? undefined;
|
|
||||||
this.searchBarFormConfig[1].defaultSelect =
|
|
||||||
this.$route.query.equipmentId ?? undefined;
|
|
||||||
this.searchBarFormConfig[2].defaultSelect =
|
|
||||||
this.$route.query.maintainPlanId ?? undefined;
|
|
||||||
this.searchBarFormConfig[3].defaultSelect =
|
|
||||||
this.$route.query?.createTime ?? undefined;
|
|
||||||
this.searchBarFormConfig[4].defaultSelect =
|
|
||||||
Number(this.$route.query.relatePlan) ?? undefined;
|
|
||||||
}
|
|
||||||
this.getList();
|
this.getList();
|
||||||
if (this.$route.query.addRecord) {
|
|
||||||
this.handleAdd();
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
handleEmitFun({ action, value }) {
|
||||||
|
switch (action) {
|
||||||
|
case '详情':
|
||||||
|
this.recordDetailVisible = true;
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs.recordDetailDrawer.show({
|
||||||
|
id: value.id,
|
||||||
|
planMaintainWorker: value.planMaintainWorker,
|
||||||
|
maintainWorker: value.maintainWorker,
|
||||||
|
});
|
||||||
|
});
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
handleSearchBarChange({ param, value }) {
|
handleSearchBarChange({ param, value }) {
|
||||||
if ('specialType' === param) {
|
if ('specialType' === param) {
|
||||||
if (!value) {
|
if (!value) {
|
||||||
@ -475,28 +544,14 @@ export default {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
setSearchBarEquipmentList(eqList) {
|
|
||||||
this.$set(
|
|
||||||
this.searchBarFormConfig[1],
|
|
||||||
'selectOptions',
|
|
||||||
eqList.map((item) => ({
|
|
||||||
name: item.name,
|
|
||||||
id: item.id,
|
|
||||||
}))
|
|
||||||
);
|
|
||||||
},
|
|
||||||
initSearchBar() {
|
initSearchBar() {
|
||||||
this.http('/base/core-equipment/listAll', 'get').then(({ data }) => {
|
|
||||||
this.allSpecialEquipments = data.filter((item) => item.special);
|
|
||||||
this.setSearchBarEquipmentList(data.filter((item) => item.special));
|
|
||||||
});
|
|
||||||
this.http('/base/equipment-maintain-plan/page', 'get', {
|
this.http('/base/equipment-maintain-plan/page', 'get', {
|
||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
pageSize: 100,
|
pageSize: 100,
|
||||||
special: true,
|
special: true,
|
||||||
}).then(({ data }) => {
|
}).then(({ data }) => {
|
||||||
this.$set(
|
this.$set(
|
||||||
this.searchBarFormConfig[2],
|
this.searchBarFormConfig[0],
|
||||||
'selectOptions',
|
'selectOptions',
|
||||||
(data?.list || []).map((item) => ({
|
(data?.list || []).map((item) => ({
|
||||||
name: item.name,
|
name: item.name,
|
||||||
@ -509,7 +564,7 @@ export default {
|
|||||||
getList() {
|
getList() {
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
// 执行查询
|
// 执行查询
|
||||||
this.recv(this.queryParams).then((response) => {
|
this.recv({ ...this.queryParams, special: true }).then((response) => {
|
||||||
this.list = response.data.list;
|
this.list = response.data.list;
|
||||||
this.total = response.data.total;
|
this.total = response.data.total;
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
@ -565,19 +620,6 @@ export default {
|
|||||||
this.form.relatePlan = tempRow.nextMaintainTime ? 1 : 2;
|
this.form.relatePlan = tempRow.nextMaintainTime ? 1 : 2;
|
||||||
this.form.startTime = tempRow.nextMaintainTime;
|
this.form.startTime = tempRow.nextMaintainTime;
|
||||||
this.form.maintainPlanId = tempRow.id;
|
this.form.maintainPlanId = tempRow.id;
|
||||||
// await (() => {
|
|
||||||
// return new Promise((acpt, rejt) => {
|
|
||||||
// this.form.relatePlan =
|
|
||||||
// this.$route.query.relatePlan ||
|
|
||||||
// (tempRow.nextMaintainTime ? 1 : 2);
|
|
||||||
// this.form.startTime = tempRow.nextMaintainTime;
|
|
||||||
// acpt();
|
|
||||||
// });
|
|
||||||
// })();
|
|
||||||
// this.$nextTick(() => {
|
|
||||||
// this.form.maintainPlanId = tempRow.id;
|
|
||||||
// this.form.equipmentId = tempRow.equipmentId;
|
|
||||||
// });
|
|
||||||
}
|
}
|
||||||
if (this.$route.query.isAdd) {
|
if (this.$route.query.isAdd) {
|
||||||
// 赋值
|
// 赋值
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
v-loading="formLoading">
|
v-loading="formLoading">
|
||||||
<el-row :gutter="20">
|
<el-row :gutter="20">
|
||||||
<!-- 维修单号 -->
|
<!-- 维修单号 -->
|
||||||
<el-col :span="12">
|
<el-col :span="8">
|
||||||
<el-form-item
|
<el-form-item
|
||||||
label="维修单号"
|
label="维修单号"
|
||||||
prop="repairOrderNumber"
|
prop="repairOrderNumber"
|
||||||
@ -28,39 +28,37 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
|
|
||||||
<!-- 维修工 -->
|
<!-- 产线名 -->
|
||||||
<el-col :span="12">
|
<el-col :span="8">
|
||||||
<el-form-item
|
<el-form-item label="产线名" prop="lineId">
|
||||||
label="维修工"
|
<el-select
|
||||||
prop="repairman"
|
v-model="formFilters.lineId"
|
||||||
:rules="[
|
:placeholder="`请选择产线`"
|
||||||
{ required: true, message: '维修工不能为空', trigger: 'blur' },
|
:disabled="disabled"
|
||||||
]">
|
clearable
|
||||||
<el-input
|
filterable
|
||||||
v-model="form.repairman"
|
@change="initSections">
|
||||||
@change="$emit('update', form)"
|
<el-option
|
||||||
placeholder="请输入维修工"
|
v-for="opt in lineOptions"
|
||||||
:disabled="disabled" />
|
:key="opt.value"
|
||||||
|
:label="opt.label"
|
||||||
|
:value="opt.value" />
|
||||||
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
|
|
||||||
<!-- 设备大类 -->
|
<!-- 工段名 -->
|
||||||
<el-col :span="12">
|
<el-col :span="8">
|
||||||
<el-form-item
|
<el-form-item label="工段名" prop="sectionId">
|
||||||
label="设备大类"
|
|
||||||
prop="equipmentCategory"
|
|
||||||
:rules="[
|
|
||||||
{ required: true, message: '设备大类不能为空', trigger: 'blur' },
|
|
||||||
]">
|
|
||||||
<el-select
|
<el-select
|
||||||
v-model="form.equipmentCategory"
|
v-model="formFilters.sectionId"
|
||||||
:placeholder="`请选择设备大类`"
|
:placeholder="`请选择工段`"
|
||||||
:disabled="disabled"
|
:disabled="disabled"
|
||||||
clearable
|
clearable
|
||||||
filterable
|
filterable
|
||||||
@change="handleEqTypeChange">
|
@change="handleEqTypeChange">
|
||||||
<el-option
|
<el-option
|
||||||
v-for="opt in equipmentTypeOptions"
|
v-for="opt in sectionOptions"
|
||||||
:key="opt.value"
|
:key="opt.value"
|
||||||
:label="opt.label"
|
:label="opt.label"
|
||||||
:value="opt.value" />
|
:value="opt.value" />
|
||||||
@ -69,7 +67,7 @@
|
|||||||
</el-col>
|
</el-col>
|
||||||
|
|
||||||
<!-- 设备名称 -->
|
<!-- 设备名称 -->
|
||||||
<el-col :span="12">
|
<el-col :span="8">
|
||||||
<el-form-item
|
<el-form-item
|
||||||
label="设备名称"
|
label="设备名称"
|
||||||
prop="equipmentId"
|
prop="equipmentId"
|
||||||
@ -93,7 +91,7 @@
|
|||||||
</el-col>
|
</el-col>
|
||||||
|
|
||||||
<!-- 故障发生时间 -->
|
<!-- 故障发生时间 -->
|
||||||
<el-col :span="12">
|
<el-col :span="8">
|
||||||
<el-form-item
|
<el-form-item
|
||||||
label="故障发生时间"
|
label="故障发生时间"
|
||||||
prop="faultTime"
|
prop="faultTime"
|
||||||
@ -117,7 +115,7 @@
|
|||||||
</el-col>
|
</el-col>
|
||||||
|
|
||||||
<!-- 故障级别 -->
|
<!-- 故障级别 -->
|
||||||
<el-col :span="12">
|
<el-col :span="8">
|
||||||
<el-form-item
|
<el-form-item
|
||||||
label="故障级别"
|
label="故障级别"
|
||||||
prop="faultLevel"
|
prop="faultLevel"
|
||||||
@ -142,8 +140,107 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
|
|
||||||
|
<!-- 故障类型 - 数据字典 -->
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item
|
||||||
|
label="故障类型"
|
||||||
|
prop="faultType"
|
||||||
|
:rules="[
|
||||||
|
{
|
||||||
|
required: true,
|
||||||
|
message: '故障类型不能为空',
|
||||||
|
trigger: 'blur',
|
||||||
|
},
|
||||||
|
]">
|
||||||
|
<el-select
|
||||||
|
v-model="form.faultType"
|
||||||
|
placeholder="故障类型"
|
||||||
|
:disabled="disabled"
|
||||||
|
@change="$emit('update', form)">
|
||||||
|
<el-option
|
||||||
|
v-for="opt in getDictDatas(DICT_TYPE.FAULT_TYPE)"
|
||||||
|
:key="opt.value"
|
||||||
|
:label="opt.label"
|
||||||
|
:value="opt.value" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<!-- 维修开始时间 -->
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item
|
||||||
|
label="维修开始时间"
|
||||||
|
prop="maintenanceStartTime"
|
||||||
|
:rules="[
|
||||||
|
{
|
||||||
|
required: true,
|
||||||
|
message: '维修开始时间不能为空',
|
||||||
|
trigger: 'blur',
|
||||||
|
},
|
||||||
|
]">
|
||||||
|
<el-date-picker
|
||||||
|
v-model="form.maintenanceStartTime"
|
||||||
|
type="datetime"
|
||||||
|
:disabled="disabled"
|
||||||
|
:placeholder="`请选择维修开始时间`"
|
||||||
|
value-format="timestamp"
|
||||||
|
format="yyyy-MM-dd HH:mm:ss"
|
||||||
|
clearable
|
||||||
|
@change="$emit('update', form)" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<!-- 维修结束时间 -->
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item
|
||||||
|
label="维修结束时间"
|
||||||
|
prop="maintenanceFinishTime"
|
||||||
|
:rules="[
|
||||||
|
{
|
||||||
|
required: true,
|
||||||
|
message: '维修结束时间不能为空',
|
||||||
|
trigger: 'blur',
|
||||||
|
},
|
||||||
|
]">
|
||||||
|
<el-date-picker
|
||||||
|
v-model="form.maintenanceFinishTime"
|
||||||
|
type="datetime"
|
||||||
|
:disabled="disabled"
|
||||||
|
:placeholder="`请选择维修结束时间`"
|
||||||
|
value-format="timestamp"
|
||||||
|
format="yyyy-MM-dd HH:mm:ss"
|
||||||
|
clearable
|
||||||
|
@change="$emit('update', form)" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<!-- 维修工 -->
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item
|
||||||
|
label="维修工"
|
||||||
|
prop="repairman"
|
||||||
|
:rules="[
|
||||||
|
{ required: true, message: '维修工不能为空', trigger: 'blur' },
|
||||||
|
]">
|
||||||
|
<el-select
|
||||||
|
v-model="form.repairman"
|
||||||
|
@change="$emit('update', form)"
|
||||||
|
placeholder="请选择维修工"
|
||||||
|
filterable
|
||||||
|
clearable
|
||||||
|
multiple
|
||||||
|
:disabled="disabled">
|
||||||
|
<el-option
|
||||||
|
v-for="opt in workerOptions"
|
||||||
|
:key="opt.value"
|
||||||
|
:label="opt.label"
|
||||||
|
:value="opt.value" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
<!-- 联系方式 -->
|
<!-- 联系方式 -->
|
||||||
<el-col :span="24">
|
<el-col :span="8">
|
||||||
<el-form-item
|
<el-form-item
|
||||||
label="联系方式"
|
label="联系方式"
|
||||||
prop="repairmanPhone"
|
prop="repairmanPhone"
|
||||||
@ -157,11 +254,243 @@
|
|||||||
:disabled="disabled" />
|
:disabled="disabled" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
|
|
||||||
|
<!-- 维修方式 - 数据字典 -->
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item
|
||||||
|
label="维修方式"
|
||||||
|
prop="repairMode"
|
||||||
|
:rules="[
|
||||||
|
{
|
||||||
|
required: true,
|
||||||
|
message: '维修方式不能为空',
|
||||||
|
trigger: 'blur',
|
||||||
|
},
|
||||||
|
]">
|
||||||
|
<el-select
|
||||||
|
v-model="form.repairMode"
|
||||||
|
placeholder="维修方式"
|
||||||
|
:disabled="disabled"
|
||||||
|
@change="$emit('update', form)">
|
||||||
|
<el-option
|
||||||
|
v-for="opt in getDictDatas(DICT_TYPE.REPAIR_MODE)"
|
||||||
|
:key="opt.value"
|
||||||
|
:label="opt.label"
|
||||||
|
:value="opt.value" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<!-- 维修结果 - 数据字典 -->
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item
|
||||||
|
label="维修结果"
|
||||||
|
prop="maintenanceResult"
|
||||||
|
:rules="[
|
||||||
|
{
|
||||||
|
required: true,
|
||||||
|
message: '维修结果不能为空',
|
||||||
|
trigger: 'blur',
|
||||||
|
},
|
||||||
|
]">
|
||||||
|
<el-select
|
||||||
|
v-model="form.maintenanceResult"
|
||||||
|
placeholder="维修结果"
|
||||||
|
:disabled="disabled"
|
||||||
|
@change="$emit('update', form)">
|
||||||
|
<el-option
|
||||||
|
v-for="opt in getDictDatas(DICT_TYPE.REPAIR_RESULT)"
|
||||||
|
:key="opt.value"
|
||||||
|
:label="opt.label"
|
||||||
|
:value="opt.value" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<!-- 备注 -->
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item label="备注" prop="remark">
|
||||||
|
<el-input
|
||||||
|
v-model="form.remark"
|
||||||
|
@change="$emit('update', form)"
|
||||||
|
placeholder="请输入备注"
|
||||||
|
:disabled="disabled" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<!-- 故障明细 -->
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item
|
||||||
|
label="故障明细"
|
||||||
|
prop="faultDetail"
|
||||||
|
:rules="[
|
||||||
|
{
|
||||||
|
required: true,
|
||||||
|
message: '故障明细不能为空',
|
||||||
|
trigger: 'blur',
|
||||||
|
},
|
||||||
|
]">
|
||||||
|
<Editor
|
||||||
|
key="fault-detail"
|
||||||
|
:height="200"
|
||||||
|
v-model="form.faultDetail"
|
||||||
|
@on-change="$emit('update', form)" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<!-- 维修描述 -->
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item label="维修描述" prop="maintenanceDetail">
|
||||||
|
<Editor
|
||||||
|
key="maintenance-detail"
|
||||||
|
:height="200"
|
||||||
|
v-model="form.maintenanceDetail"
|
||||||
|
@on-change="$emit('update', form)" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<!-- 维修附件 -->
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item label="维修附件" prop="files">
|
||||||
|
<div
|
||||||
|
class="upload-area"
|
||||||
|
:class="uploadOpen ? '' : 'height-48'"
|
||||||
|
ref="uploadArea">
|
||||||
|
<span class="close-icon" :class="uploadOpen ? 'open' : ''">
|
||||||
|
<el-button
|
||||||
|
type="text"
|
||||||
|
icon="el-icon-arrow-right"
|
||||||
|
@click="uploadOpen = !uploadOpen" />
|
||||||
|
</span>
|
||||||
|
<!-- :file-list="uploadedFileList" -->
|
||||||
|
<el-upload
|
||||||
|
class="upload-in-dialog"
|
||||||
|
:action="uploadUrl"
|
||||||
|
:headers="uploadHeaders"
|
||||||
|
:show-file-list="false"
|
||||||
|
icon="el-icon-upload2"
|
||||||
|
:disabled="disabled"
|
||||||
|
:before-upload="beforeUpload"
|
||||||
|
:on-success="
|
||||||
|
(response, file, fileList) => {
|
||||||
|
handleUploadSuccess(response, file, 'files');
|
||||||
|
}
|
||||||
|
">
|
||||||
|
<el-button size="mini" :disabled="disabled || false">
|
||||||
|
<svg-icon
|
||||||
|
icon-class="icon-upload"
|
||||||
|
style="color: inherit"></svg-icon>
|
||||||
|
上传文件
|
||||||
|
</el-button>
|
||||||
|
<div class="el-upload__tip" slot="tip">
|
||||||
|
只能上传jpg/png文件, 大小不超过2MB
|
||||||
|
</div>
|
||||||
|
</el-upload>
|
||||||
|
|
||||||
|
<uploadedFile
|
||||||
|
class="file"
|
||||||
|
v-for="file in form.files"
|
||||||
|
:file="file"
|
||||||
|
:key="file.fileUrl"
|
||||||
|
:disabled="disabled"
|
||||||
|
@delete="!disabled && handleDeleteFile(file, col.prop)" />
|
||||||
|
</div>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<!-- 设备大类 -->
|
||||||
|
<!-- <el-col :span="8">
|
||||||
|
<el-form-item
|
||||||
|
label="设备大类"
|
||||||
|
prop="equipmentCategory"
|
||||||
|
:rules="[
|
||||||
|
{ required: true, message: '设备大类不能为空', trigger: 'blur' },
|
||||||
|
]">
|
||||||
|
<el-select
|
||||||
|
v-model="form.equipmentCategory"
|
||||||
|
:placeholder="`请选择设备大类`"
|
||||||
|
:disabled="disabled"
|
||||||
|
clearable
|
||||||
|
filterable
|
||||||
|
@change="handleEqTypeChange">
|
||||||
|
<el-option
|
||||||
|
v-for="opt in equipmentTypeOptions"
|
||||||
|
:key="opt.value"
|
||||||
|
:label="opt.label"
|
||||||
|
:value="opt.value" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col> -->
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-form>
|
</el-form>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import Editor from '@/components/Editor';
|
||||||
|
import { getAccessToken } from '@/utils/auth';
|
||||||
|
import tupleImg from '@/assets/images/tuple.png';
|
||||||
|
|
||||||
|
const uploadedFile = {
|
||||||
|
name: 'UploadedFile',
|
||||||
|
props: ['file', 'disabled'],
|
||||||
|
data() {
|
||||||
|
return {};
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
handleDelete() {
|
||||||
|
this.$emit('delete', this.file);
|
||||||
|
},
|
||||||
|
async handleDownload() {
|
||||||
|
const data = await this.$axios({
|
||||||
|
url: this.file.fileUrl,
|
||||||
|
method: 'get',
|
||||||
|
responseType: 'blob',
|
||||||
|
});
|
||||||
|
|
||||||
|
await this.$message.success('开始下载');
|
||||||
|
// create download link
|
||||||
|
const url = window.URL.createObjectURL(data);
|
||||||
|
const link = document.createElement('a');
|
||||||
|
link.href = url;
|
||||||
|
link.download = this.file.fileName;
|
||||||
|
document.body.appendChild(link);
|
||||||
|
link.click();
|
||||||
|
document.body.removeChild(link);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
mounted() {},
|
||||||
|
render: function (h) {
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
title={this.file.fileName}
|
||||||
|
onClick={this.handleDownload}
|
||||||
|
style={{
|
||||||
|
background: `url(${tupleImg}) no-repeat`,
|
||||||
|
backgroundSize: '14px',
|
||||||
|
backgroundPosition: '0 55%',
|
||||||
|
paddingLeft: '20px',
|
||||||
|
paddingRight: '24px',
|
||||||
|
textOverflow: 'ellipsis',
|
||||||
|
whiteSpace: 'nowrap',
|
||||||
|
overflow: 'hidden',
|
||||||
|
cursor: 'pointer',
|
||||||
|
display: 'inline-block',
|
||||||
|
}}>
|
||||||
|
{this.file.fileName}
|
||||||
|
{!this.disabled && (
|
||||||
|
<el-button
|
||||||
|
type="text"
|
||||||
|
icon="el-icon-close"
|
||||||
|
style="float: right; position: relative; top: 2px; left: 8px; z-index: 100"
|
||||||
|
class="dialog__upload_component__close"
|
||||||
|
onClick={this.handleDelete}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'DialogForm',
|
name: 'DialogForm',
|
||||||
model: {
|
model: {
|
||||||
@ -169,7 +498,7 @@ export default {
|
|||||||
event: 'update',
|
event: 'update',
|
||||||
},
|
},
|
||||||
emits: ['update'],
|
emits: ['update'],
|
||||||
components: {},
|
components: { Editor, uploadedFile },
|
||||||
props: {
|
props: {
|
||||||
dataForm: {
|
dataForm: {
|
||||||
type: Object,
|
type: Object,
|
||||||
@ -186,9 +515,13 @@ export default {
|
|||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
isInit: true,
|
||||||
allSpeicalEquipments: [],
|
allSpeicalEquipments: [],
|
||||||
uploadOpen: false,
|
|
||||||
form: {},
|
form: {},
|
||||||
|
formFilters: {
|
||||||
|
lineId: null,
|
||||||
|
sectionId: null,
|
||||||
|
},
|
||||||
formLoading: true,
|
formLoading: true,
|
||||||
dataLoaded: false,
|
dataLoaded: false,
|
||||||
equipmentList: [],
|
equipmentList: [],
|
||||||
@ -200,6 +533,11 @@ export default {
|
|||||||
],
|
],
|
||||||
workerOptions: [],
|
workerOptions: [],
|
||||||
planOptions: [],
|
planOptions: [],
|
||||||
|
sectionOptions: [],
|
||||||
|
lineOptions: [],
|
||||||
|
uploadOpen: false,
|
||||||
|
uploadUrl: process.env.VUE_APP_BASE_API + '/admin-api/infra/file/upload', // 上传有关的headers,url都是固定的
|
||||||
|
uploadHeaders: { Authorization: 'Bearer ' + getAccessToken() },
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
@ -232,7 +570,6 @@ export default {
|
|||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.initOptions();
|
this.initOptions();
|
||||||
// this.getCode('/base/equipment-maintain-plan/getCode');
|
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
/** 模拟透传 ref */
|
/** 模拟透传 ref */
|
||||||
@ -242,23 +579,61 @@ export default {
|
|||||||
resetFields(args) {
|
resetFields(args) {
|
||||||
return this.$refs.form.resetFields(args);
|
return this.$refs.form.resetFields(args);
|
||||||
},
|
},
|
||||||
|
|
||||||
// getCode
|
// getCode
|
||||||
// async getCode(url) {
|
async getCode() {
|
||||||
// this.formLoading = true;
|
const response = await this.$axios('/base/equipment-repair-log/getCode');
|
||||||
// const response = await this.$axios(url);
|
this.form.repairOrderNumber = response.data || '';
|
||||||
// this.formLoading = false;
|
},
|
||||||
// this.form.code = response.data || '';
|
|
||||||
// },
|
|
||||||
|
|
||||||
// initialize
|
// initialize
|
||||||
async initOptions() {
|
async initOptions() {
|
||||||
this.initEquipment();
|
this.formLoading = true;
|
||||||
// this.initWorker();
|
await this.getCode();
|
||||||
// this.initPlan();
|
await this.initEquipment();
|
||||||
|
await this.initLines();
|
||||||
|
await this.initWorker();
|
||||||
|
await this.initSections();
|
||||||
|
this.formLoading = false;
|
||||||
|
this.isInit = false;
|
||||||
|
this.setInitWorker();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
/** 设置默认维修工为用户自己 */
|
||||||
|
setInitWorker() {
|
||||||
|
/** 获取用户自身id */
|
||||||
|
const userId = this.$store.getters.userId;
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.form.repairman = [userId];
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
/** 获取产线 */
|
||||||
|
async initLines() {
|
||||||
|
const res = await this.$axios('/base/core-production-line/listAll');
|
||||||
|
this.lineOptions = (res.data || []).map((item) => ({
|
||||||
|
label: item.name,
|
||||||
|
value: item.id,
|
||||||
|
}));
|
||||||
|
},
|
||||||
|
|
||||||
|
/** 获取工段 */
|
||||||
|
async initSections(byLineId) {
|
||||||
|
this.formLoading = !this.isInit && true;
|
||||||
|
const res = await this.$axios({
|
||||||
|
url:
|
||||||
|
byLineId && !this.isInit
|
||||||
|
? '/base/core-workshop-section/listByParentId?id=' + byLineId
|
||||||
|
: '/base/core-workshop-section/listAll',
|
||||||
|
});
|
||||||
|
this.sectionOptions = (res.data || []).map((item) => ({
|
||||||
|
label: item.name,
|
||||||
|
value: item.id,
|
||||||
|
}));
|
||||||
|
this.formLoading = !this.isInit && false;
|
||||||
|
},
|
||||||
|
/** 获取设备 */
|
||||||
async initEquipment(type = 'special-equipment') {
|
async initEquipment(type = 'special-equipment') {
|
||||||
this.formLoading = true;
|
|
||||||
const response = await this.$axios('/base/core-equipment/listAll');
|
const response = await this.$axios('/base/core-equipment/listAll');
|
||||||
this.equipmentList = response.data || [];
|
this.equipmentList = response.data || [];
|
||||||
const equipmentOptions = (response.data || [])
|
const equipmentOptions = (response.data || [])
|
||||||
@ -269,32 +644,55 @@ export default {
|
|||||||
}));
|
}));
|
||||||
this.equipmentOptions = equipmentOptions;
|
this.equipmentOptions = equipmentOptions;
|
||||||
this.allSpeicalEquipments = equipmentOptions;
|
this.allSpeicalEquipments = equipmentOptions;
|
||||||
this.formLoading = false;
|
},
|
||||||
|
/** 获取维修工 - 同时从用户表和员工表拉取数据 */
|
||||||
|
async initWorker() {
|
||||||
|
let list = [];
|
||||||
|
/** user */
|
||||||
|
const userList = await this.$axios({
|
||||||
|
url: '/system/user/page',
|
||||||
|
params: {
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 100,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
list = list.concat(
|
||||||
|
(userList.data?.list || []).map((item) => ({
|
||||||
|
label: item.username,
|
||||||
|
value: item.id,
|
||||||
|
}))
|
||||||
|
);
|
||||||
|
/** worker */
|
||||||
|
const workerList = await this.$axios({
|
||||||
|
url: '/base/core-worker/listAll',
|
||||||
|
});
|
||||||
|
list = list.concat(
|
||||||
|
(workerList.data || []).map((item) => ({
|
||||||
|
label: item.name,
|
||||||
|
value: item.id,
|
||||||
|
}))
|
||||||
|
);
|
||||||
|
/** setting */
|
||||||
|
this.workerOptions = list;
|
||||||
},
|
},
|
||||||
|
|
||||||
// async initWorker() {
|
beforeUpload(file) {
|
||||||
// this.formLoading = true;
|
const checkFileSize = () => {
|
||||||
// const response = await this.$axios({
|
const isLt2M = file.size / 1024 / 1024 < 2;
|
||||||
// url: '/base/core-worker/listAll',
|
if (!isLt2M) {
|
||||||
// });
|
this.$modal.msgError('上传文件大小不能超过 2MB!');
|
||||||
// this.workerOptions = (response.data || []).map((item) => ({
|
}
|
||||||
// label: item.name,
|
return isLt2M;
|
||||||
// value: item.id,
|
};
|
||||||
// }));
|
const checkFileType = () => {
|
||||||
// this.formLoading = false;
|
const isJPG =
|
||||||
// },
|
file.type === 'image/jpeg' ||
|
||||||
// async initPlan() {
|
file.type === 'image/png' ||
|
||||||
// this.formLoading = true;
|
file.type === 'image/jpg';
|
||||||
// const response = await this.$axios({
|
return isJPG;
|
||||||
// url: '/base/equipment-maintain-plan/page',
|
};
|
||||||
// params: { pageNo: 1, pageSize: 100, speical: true },
|
return checkFileSize() && checkFileType();
|
||||||
// });
|
},
|
||||||
// this.planOptions = (response.data?.list || []).map((item) => ({
|
|
||||||
// label: item.name,
|
|
||||||
// value: item.id,
|
|
||||||
// }));
|
|
||||||
// this.formLoading = false;
|
|
||||||
// },
|
|
||||||
|
|
||||||
// handlers
|
// handlers
|
||||||
handleEqTypeChange(type) {
|
handleEqTypeChange(type) {
|
||||||
@ -335,19 +733,27 @@ export default {
|
|||||||
// upload
|
// upload
|
||||||
handleFilesOpen() {},
|
handleFilesOpen() {},
|
||||||
|
|
||||||
beforeUpload() {},
|
handleUploadSuccess(response, file, prop) {
|
||||||
|
console.log('response', response);
|
||||||
handleUploadSuccess(response, file) {
|
if (response.code != 0) {
|
||||||
this.$modal.msgSuccess('上传成功');
|
this.$modal.msgError('上传失败: ', response.msg || '-');
|
||||||
console.log('file', file);
|
return;
|
||||||
|
}
|
||||||
this.form.files.push({
|
this.form.files.push({
|
||||||
fileName: file.name,
|
fileName: file.name,
|
||||||
fileUrl: response.data,
|
fileUrl: response.data,
|
||||||
|
fileType: prop == 'files' ? 2 : 1,
|
||||||
});
|
});
|
||||||
|
this.$modal.msgSuccess('上传成功');
|
||||||
this.$emit('update', this.form);
|
this.$emit('update', this.form);
|
||||||
},
|
},
|
||||||
|
|
||||||
handleDeleteFile(file) {},
|
handleDeleteFile(file, prop) {
|
||||||
|
this.form.files = this.form.files.filter(
|
||||||
|
(item) => item.fileUrl != file.fileUrl
|
||||||
|
);
|
||||||
|
this.$emit('update', this.form);
|
||||||
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
@ -51,7 +51,7 @@
|
|||||||
v-model="form"
|
v-model="form"
|
||||||
:disabled="mode == 'detail'" />
|
:disabled="mode == 'detail'" />
|
||||||
</base-dialog>
|
</base-dialog>
|
||||||
<CustomDialogForm
|
<DetailDrawer
|
||||||
v-if="addOrUpdateVisible"
|
v-if="addOrUpdateVisible"
|
||||||
ref="addOrUpdate"
|
ref="addOrUpdate"
|
||||||
@refreshDataList="getList"
|
@refreshDataList="getList"
|
||||||
@ -61,7 +61,7 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
||||||
import CustomDialogForm from './CustomDialogForm.vue';
|
import DetailDrawer from './CustomDialogForm.vue';
|
||||||
import {
|
import {
|
||||||
deleteRepair,
|
deleteRepair,
|
||||||
exportRepairLogExcel,
|
exportRepairLogExcel,
|
||||||
@ -72,13 +72,13 @@ import DialogForm from './Repair--add.vue';
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'SpecialEquipmentRepair',
|
name: 'SpecialEquipmentRepair',
|
||||||
components: { CustomDialogForm, DialogForm },
|
components: { DetailDrawer, DialogForm },
|
||||||
mixins: [basicPageMixin],
|
mixins: [basicPageMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
addOrUpdateVisible: false,
|
addOrUpdateVisible: false,
|
||||||
searchBarKeys: [
|
searchBarKeys: [
|
||||||
'maintenanceStatus',
|
'maintenanceResult',
|
||||||
'createTime',
|
'createTime',
|
||||||
'equipmentId',
|
'equipmentId',
|
||||||
'specialType',
|
'specialType',
|
||||||
@ -110,65 +110,68 @@ export default {
|
|||||||
: undefined,
|
: undefined,
|
||||||
].filter((v) => v),
|
].filter((v) => v),
|
||||||
tableProps: [
|
tableProps: [
|
||||||
{
|
// {
|
||||||
prop: 'createTime',
|
// prop: 'createTime',
|
||||||
label: '添加时间',
|
// label: '添加时间',
|
||||||
fixed: true,
|
// fixed: true,
|
||||||
width: 150,
|
// width: 150,
|
||||||
filter: parseTime,
|
// filter: parseTime,
|
||||||
},
|
// },
|
||||||
{
|
{
|
||||||
prop: 'repairOrderNumber',
|
prop: 'repairOrderNumber',
|
||||||
label: '设备维修单号',
|
label: '设备维修单号',
|
||||||
minWidth: 120,
|
minWidth: 120,
|
||||||
showOverflowtooltip: true,
|
showOverflowtooltip: true,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
prop: 'lineName',
|
||||||
|
label: '产线名',
|
||||||
|
minWidth: 120,
|
||||||
|
showOverflowtooltip: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'sectionName',
|
||||||
|
label: '工段名',
|
||||||
|
minWidth: 120,
|
||||||
|
showOverflowtooltip: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'equipmentName',
|
||||||
|
label: '设备名称',
|
||||||
|
minWidth: 120,
|
||||||
|
showOverflowtooltip: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'faultDetail',
|
||||||
|
label: '故障明细',
|
||||||
|
minWidth: 120,
|
||||||
|
showOverflowtooltip: true,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
prop: 'maintenanceStartTime',
|
prop: 'maintenanceStartTime',
|
||||||
label: '开始时间',
|
label: '维修开始时间',
|
||||||
filter: parseTime,
|
filter: parseTime,
|
||||||
minWidth: 150,
|
minWidth: 150,
|
||||||
showOverflowtooltip: true,
|
showOverflowtooltip: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'maintenanceFinishTime',
|
prop: 'maintenanceFinishTime',
|
||||||
label: '结束时间',
|
label: '维修结束时间',
|
||||||
filter: parseTime,
|
filter: parseTime,
|
||||||
minWidth: 150,
|
minWidth: 150,
|
||||||
showOverflowtooltip: true,
|
showOverflowtooltip: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'maintenanceStatus',
|
prop: 'maintenanceResult',
|
||||||
label: '维修状态',
|
label: '维修结果',
|
||||||
filter: (v) => (v != null ? ['未完成', '完成', '进行中'][v] : ''),
|
|
||||||
},
|
|
||||||
{ prop: 'maintenanceDuration', label: '维修时长(h)', width: 110 },
|
|
||||||
{ prop: 'lineName', label: '产线' },
|
|
||||||
{ prop: 'sectionName', label: '工段' },
|
|
||||||
{
|
|
||||||
prop: 'equipmentName',
|
|
||||||
label: '设备名称',
|
|
||||||
minWidth: 100,
|
|
||||||
showOverflowtooltip: true,
|
showOverflowtooltip: true,
|
||||||
|
filter: (v) => (v != null ? ['成功', '失败'][v] : ''),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'maintenanceDetail',
|
prop: 'maintenanceDetail',
|
||||||
label: '维修明细',
|
label: '维修描述',
|
||||||
subcomponent: htmls,
|
|
||||||
minWidth: 100,
|
|
||||||
showOverflowtooltip: true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'repairman',
|
|
||||||
label: '维修工',
|
|
||||||
minWidth: 100,
|
|
||||||
showOverflowtooltip: true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'repairmanPhone',
|
|
||||||
label: '联系方式',
|
|
||||||
minWidth: 100,
|
|
||||||
showOverflowtooltip: true,
|
showOverflowtooltip: true,
|
||||||
|
width: 110,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'remark',
|
prop: 'remark',
|
||||||
@ -176,21 +179,52 @@ export default {
|
|||||||
minWidth: 120,
|
minWidth: 120,
|
||||||
showOverflowtooltip: true,
|
showOverflowtooltip: true,
|
||||||
},
|
},
|
||||||
|
// {
|
||||||
|
// prop: 'maintenanceStatus',
|
||||||
|
// label: '维修状态',
|
||||||
|
// filter: (v) => (v != null ? ['未完成', '完成', '进行中'][v] : ''),
|
||||||
|
// },
|
||||||
|
// { prop: 'maintenanceDuration', label: '维修时长(h)', width: 110 },
|
||||||
|
// {
|
||||||
|
// prop: 'equipmentName',
|
||||||
|
// label: '设备名称',
|
||||||
|
// minWidth: 100,
|
||||||
|
// showOverflowtooltip: true,
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// prop: 'maintenanceDetail',
|
||||||
|
// label: '维修明细',
|
||||||
|
// subcomponent: htmls,
|
||||||
|
// minWidth: 100,
|
||||||
|
// showOverflowtooltip: true,
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// prop: 'repairman',
|
||||||
|
// label: '维修工',
|
||||||
|
// minWidth: 100,
|
||||||
|
// showOverflowtooltip: true,
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// prop: 'repairmanPhone',
|
||||||
|
// label: '联系方式',
|
||||||
|
// minWidth: 100,
|
||||||
|
// showOverflowtooltip: true,
|
||||||
|
// },
|
||||||
],
|
],
|
||||||
searchBarFormConfig: [
|
searchBarFormConfig: [
|
||||||
{
|
// {
|
||||||
type: 'select',
|
// type: 'select',
|
||||||
label: '设备大类',
|
// label: '设备大类',
|
||||||
placeholder: '请选择设备大类',
|
// placeholder: '请选择设备大类',
|
||||||
param: 'specialType',
|
// param: 'specialType',
|
||||||
onchange: true,
|
// onchange: true,
|
||||||
selectOptions: [
|
// selectOptions: [
|
||||||
{ id: 1, name: '安全设备' },
|
// { id: 1, name: '安全设备' },
|
||||||
{ id: 2, name: '消防设备' },
|
// { id: 2, name: '消防设备' },
|
||||||
{ id: 3, name: '特种设备' },
|
// { id: 3, name: '特种设备' },
|
||||||
],
|
// ],
|
||||||
filterable: true,
|
// filterable: true,
|
||||||
},
|
// },
|
||||||
{
|
{
|
||||||
type: 'select',
|
type: 'select',
|
||||||
label: '设备',
|
label: '设备',
|
||||||
@ -200,13 +234,12 @@ export default {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: 'select',
|
type: 'select',
|
||||||
label: '状态',
|
label: '维修结果',
|
||||||
placeholder: '请选择状态',
|
placeholder: '请选择维修结果',
|
||||||
param: 'maintenanceStatus',
|
param: 'maintenanceResult',
|
||||||
selectOptions: [
|
selectOptions: [
|
||||||
{ name: '未完成', id: '0' },
|
{ name: '成功', id: '0' },
|
||||||
{ name: '完成', id: '1' },
|
{ name: '失败', id: '1' },
|
||||||
{ name: '进行中', id: '2' },
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
// 时间段
|
// 时间段
|
||||||
@ -253,7 +286,8 @@ export default {
|
|||||||
queryParams: {
|
queryParams: {
|
||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
pageSize: 10,
|
pageSize: 10,
|
||||||
maintenanceStatus: null,
|
// maintenanceStatus: null,
|
||||||
|
maintenanceResult: null,
|
||||||
createTime: null,
|
createTime: null,
|
||||||
equipmentId: null,
|
equipmentId: null,
|
||||||
special: true,
|
special: true,
|
||||||
@ -369,12 +403,13 @@ export default {
|
|||||||
if (!valid) {
|
if (!valid) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
// if (this.form.repairman) {
|
|
||||||
// this.form.repairman = this.form.repairman.join(',')
|
|
||||||
// }
|
|
||||||
// 修改的提交
|
// 修改的提交
|
||||||
if (this.form.id != null) {
|
if (this.form.id != null) {
|
||||||
this.put(this.form).then((response) => {
|
this.put({
|
||||||
|
...this.form,
|
||||||
|
repairman: this.form.repairman.join(','),
|
||||||
|
}).then((response) => {
|
||||||
this.$modal.msgSuccess('修改成功');
|
this.$modal.msgSuccess('修改成功');
|
||||||
this.open = false;
|
this.open = false;
|
||||||
this.getList();
|
this.getList();
|
||||||
@ -382,7 +417,10 @@ export default {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
// 添加的提交
|
// 添加的提交
|
||||||
this.post(this.form).then((response) => {
|
this.post({
|
||||||
|
...this.form,
|
||||||
|
repairman: this.form.repairman.join(','),
|
||||||
|
}).then((response) => {
|
||||||
this.$modal.msgSuccess('新增成功');
|
this.$modal.msgSuccess('新增成功');
|
||||||
this.open = false;
|
this.open = false;
|
||||||
this.getList();
|
this.getList();
|
||||||
@ -459,7 +497,7 @@ export default {
|
|||||||
},
|
},
|
||||||
setSearchBarEquipmentList(eqList) {
|
setSearchBarEquipmentList(eqList) {
|
||||||
this.$set(
|
this.$set(
|
||||||
this.searchBarFormConfig[1],
|
this.searchBarFormConfig[0],
|
||||||
'selectOptions',
|
'selectOptions',
|
||||||
eqList.map((item) => ({
|
eqList.map((item) => ({
|
||||||
name: item.name,
|
name: item.name,
|
||||||
|
@ -0,0 +1,399 @@
|
|||||||
|
<!--
|
||||||
|
filename: dialogForm.vue
|
||||||
|
author: liubin
|
||||||
|
date: 2023-08-15 10:32:36
|
||||||
|
description: 弹窗的表单组件
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<el-form
|
||||||
|
ref="form"
|
||||||
|
:model="form"
|
||||||
|
:size="size"
|
||||||
|
:label-position="labelPosition"
|
||||||
|
v-loading="formLoading">
|
||||||
|
<el-row :gutter="20">
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item
|
||||||
|
label="保养计划单号"
|
||||||
|
prop="code"
|
||||||
|
:rules="[
|
||||||
|
{ required: true, message: '请输入保养计划单号', trigger: 'blur' },
|
||||||
|
]">
|
||||||
|
<el-input
|
||||||
|
v-model="form.code"
|
||||||
|
@change="$emit('update', form)"
|
||||||
|
:placeholder="`请输入保养计划单号`"
|
||||||
|
:disabled="disabled" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="保养计划名称" prop="name">
|
||||||
|
<el-input
|
||||||
|
v-model="form.name"
|
||||||
|
disabled
|
||||||
|
:placeholder="`请输入保养计划名称`" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item
|
||||||
|
label="部门"
|
||||||
|
prop="departmentId"
|
||||||
|
:rules="[{ required: true, message: '请选择部门', trigger: 'blur' }]">
|
||||||
|
<el-select
|
||||||
|
v-model="form.departmentId"
|
||||||
|
:placeholder="`请选择部门`"
|
||||||
|
:disabled="disabled"
|
||||||
|
clearable
|
||||||
|
filterable
|
||||||
|
@change="$emit('update', form)">
|
||||||
|
<el-option
|
||||||
|
v-for="opt in departmentOptions"
|
||||||
|
:key="opt.value"
|
||||||
|
:label="opt.label"
|
||||||
|
:value="opt.value" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
|
||||||
|
<!-- <el-form-item
|
||||||
|
label="设备大类"
|
||||||
|
prop="equipmentCategory"
|
||||||
|
:rules="[
|
||||||
|
{ required: true, message: '请选择设备大类', trigger: 'blur' },
|
||||||
|
]">
|
||||||
|
<el-select
|
||||||
|
v-model="form.equipmentCategory"
|
||||||
|
:placeholder="`请选择设备大类`"
|
||||||
|
:disabled="disabled"
|
||||||
|
@change="handleEqTypeChange">
|
||||||
|
<el-option
|
||||||
|
v-for="opt in equipmentTypeOptions"
|
||||||
|
:key="opt.value"
|
||||||
|
:label="opt.label"
|
||||||
|
:value="opt.value" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item> -->
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item
|
||||||
|
label="产线"
|
||||||
|
prop="lineId"
|
||||||
|
:rules="[{ required: true, message: '请选择产线', trigger: 'blur' }]">
|
||||||
|
<el-select
|
||||||
|
v-model="form.lineId"
|
||||||
|
:placeholder="`请选择产线`"
|
||||||
|
:disabled="disabled"
|
||||||
|
clearable
|
||||||
|
filterable
|
||||||
|
@change="$emit('update', form)">
|
||||||
|
<el-option
|
||||||
|
v-for="opt in lineOptions"
|
||||||
|
:key="opt.value"
|
||||||
|
:label="opt.label"
|
||||||
|
:value="opt.value" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="计划保养人员" prop="maintainer">
|
||||||
|
<el-input v-model="form.maintainer" disabled />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item
|
||||||
|
label="计划开始时间"
|
||||||
|
prop="firstMaintenanceTime"
|
||||||
|
:rules="[
|
||||||
|
{ required: true, message: '请选择计划开始时间', trigger: 'blur' },
|
||||||
|
]">
|
||||||
|
<el-date-picker
|
||||||
|
v-model="form.firstMaintenanceTime"
|
||||||
|
type="datetime"
|
||||||
|
:disabled="edit"
|
||||||
|
placeholder="请选择计划开始时间"
|
||||||
|
@change="$emit('update', form)"
|
||||||
|
value-format="timestamp"></el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item
|
||||||
|
label="计划结束时间"
|
||||||
|
prop="firstMaintenanceTime"
|
||||||
|
:rules="[
|
||||||
|
{ required: true, message: '请选择计划结束时间', trigger: 'blur' },
|
||||||
|
]">
|
||||||
|
<el-date-picker
|
||||||
|
v-model="form.firstMaintenanceTime"
|
||||||
|
type="datetime"
|
||||||
|
:disabled="edit"
|
||||||
|
placeholder="请选择计划结束时间"
|
||||||
|
@change="$emit('update', form)"
|
||||||
|
value-format="timestamp"></el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item
|
||||||
|
label="实际开始时间"
|
||||||
|
prop="firstMaintenanceTime"
|
||||||
|
:rules="[
|
||||||
|
{ required: true, message: '请选择实际开始时间', trigger: 'blur' },
|
||||||
|
]">
|
||||||
|
<el-date-picker
|
||||||
|
v-model="form.firstMaintenanceTime"
|
||||||
|
type="datetime"
|
||||||
|
:disabled="edit"
|
||||||
|
placeholder="请选择实际开始时间"
|
||||||
|
@change="$emit('update', form)"
|
||||||
|
value-format="timestamp"></el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item
|
||||||
|
label="实际结束时间"
|
||||||
|
prop="firstMaintenanceTime"
|
||||||
|
:rules="[
|
||||||
|
{ required: true, message: '请选择实际结束时间', trigger: 'blur' },
|
||||||
|
]">
|
||||||
|
<el-date-picker
|
||||||
|
v-model="form.firstMaintenanceTime"
|
||||||
|
type="datetime"
|
||||||
|
:disabled="edit"
|
||||||
|
placeholder="请选择实际结束时间"
|
||||||
|
@change="$emit('update', form)"
|
||||||
|
value-format="timestamp"></el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item
|
||||||
|
label="实际保养人员"
|
||||||
|
prop="maintainer"
|
||||||
|
:rules="[
|
||||||
|
{ required: true, message: '请选择实际保养人员', trigger: 'blur' },
|
||||||
|
]">
|
||||||
|
<el-select
|
||||||
|
v-model="form.maintainer"
|
||||||
|
:placeholder="`请选择计划保养人员`"
|
||||||
|
:disabled="disabled"
|
||||||
|
multiple
|
||||||
|
clearable
|
||||||
|
filterable
|
||||||
|
@change="$emit('update', form)">
|
||||||
|
<el-option
|
||||||
|
v-for="opt in maintainerOptions"
|
||||||
|
:key="opt.value"
|
||||||
|
:label="opt.label"
|
||||||
|
:value="opt.value" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item label="备注" prop="remark">
|
||||||
|
<el-input
|
||||||
|
v-model="form.remark"
|
||||||
|
@change="$emit('update', form)"
|
||||||
|
:placeholder="`请输入备注`"
|
||||||
|
:disabled="disabled" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-form>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: 'DialogForm',
|
||||||
|
model: {
|
||||||
|
prop: 'dataForm',
|
||||||
|
event: 'update',
|
||||||
|
},
|
||||||
|
emits: ['update'],
|
||||||
|
components: {},
|
||||||
|
props: {
|
||||||
|
rows: {
|
||||||
|
type: Array,
|
||||||
|
default: () => [],
|
||||||
|
},
|
||||||
|
dataForm: {
|
||||||
|
type: Object,
|
||||||
|
default: () => ({}),
|
||||||
|
},
|
||||||
|
disabled: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
|
edit: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
|
hasFiles: {
|
||||||
|
type: Boolean | Array,
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
|
labelPosition: {
|
||||||
|
type: String,
|
||||||
|
default: 'right',
|
||||||
|
},
|
||||||
|
size: {
|
||||||
|
type: String,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
form: {},
|
||||||
|
formLoading: true,
|
||||||
|
equipmentTypeOptions: [
|
||||||
|
{ label: '安全设备', value: 1 },
|
||||||
|
{ label: '消防设备', value: 2 },
|
||||||
|
{ label: '特种设备', value: 3 },
|
||||||
|
],
|
||||||
|
lineList: [],
|
||||||
|
maintainerList: [],
|
||||||
|
departmentList: [],
|
||||||
|
};
|
||||||
|
},
|
||||||
|
watch: {
|
||||||
|
dataForm: {
|
||||||
|
handler(val) {
|
||||||
|
this.form = JSON.parse(JSON.stringify(val));
|
||||||
|
if (typeof val.maintainer == 'string')
|
||||||
|
this.form.maintainer = val.maintainer.split(',');
|
||||||
|
if (this.form.equipmentCategory != null) {
|
||||||
|
setTimeout(() => {
|
||||||
|
this.equipmentOptions = this.equipmentList
|
||||||
|
.filter((item) => item.special)
|
||||||
|
.filter(
|
||||||
|
(item) => item.specialType === this.form.equipmentCategory
|
||||||
|
)
|
||||||
|
.map((item) => ({ label: item.name, value: item.id }));
|
||||||
|
}, 1000);
|
||||||
|
}
|
||||||
|
if (this.hasFiles) {
|
||||||
|
if (typeof this.hasFiles == 'boolean' && this.hasFiles) {
|
||||||
|
this.form.files = this.form.files ?? [];
|
||||||
|
} else if (Array.isArray(this.hasFiles)) {
|
||||||
|
this.hasFiles.forEach((prop) => {
|
||||||
|
this.form[prop] = this.form[prop] ?? [];
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
deep: true,
|
||||||
|
immediate: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
!this.edit && this.getCode('/base/equipment-maintain-plan/getCode');
|
||||||
|
this.getList('maintainer');
|
||||||
|
this.getList('department');
|
||||||
|
this.getList('line');
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
departmentOptions() {
|
||||||
|
return (this.departmentList || []).map((item) => ({
|
||||||
|
id: item.id,
|
||||||
|
label: item.name,
|
||||||
|
value: item.id,
|
||||||
|
}));
|
||||||
|
},
|
||||||
|
lineOptions() {
|
||||||
|
return (this.lineList || []).map((item) => ({
|
||||||
|
id: item.id,
|
||||||
|
label: item.name,
|
||||||
|
value: item.id,
|
||||||
|
}));
|
||||||
|
},
|
||||||
|
maintainerOptions() {
|
||||||
|
return (this.maintainerList || []).map((item) => ({
|
||||||
|
id: item.id,
|
||||||
|
label: item.name,
|
||||||
|
value: item.name,
|
||||||
|
}));
|
||||||
|
},
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
/** 模拟透传 ref */
|
||||||
|
validate(cb) {
|
||||||
|
return this.$refs.form.validate(cb);
|
||||||
|
},
|
||||||
|
resetFields(args) {
|
||||||
|
return this.$refs.form.resetFields(args);
|
||||||
|
},
|
||||||
|
// getCode
|
||||||
|
async getCode(url) {
|
||||||
|
this.formLoading = true;
|
||||||
|
const response = await this.$axios(url);
|
||||||
|
this.formLoading = false;
|
||||||
|
this.form.code = response.data || '';
|
||||||
|
},
|
||||||
|
// initialize
|
||||||
|
async getEquipmentList() {
|
||||||
|
this.formLoading = true;
|
||||||
|
const response = await this.$axios('/base/core-equipment/listAll');
|
||||||
|
this.equipmentList = response.data || [];
|
||||||
|
this.equipmentOptions = (response.data || []).map((item) => ({
|
||||||
|
label: item.name,
|
||||||
|
value: item.id,
|
||||||
|
}));
|
||||||
|
this.formLoading = false;
|
||||||
|
},
|
||||||
|
async getList(source = 'department') {
|
||||||
|
const urls = [
|
||||||
|
'/base/core-production-line/listAll',
|
||||||
|
'/base/core-department/listAll',
|
||||||
|
'/base/core-worker/listAll',
|
||||||
|
];
|
||||||
|
let res;
|
||||||
|
switch (source) {
|
||||||
|
case 'department':
|
||||||
|
res = await this.$axios(urls[1]);
|
||||||
|
this.departmentList = res.data || [];
|
||||||
|
break;
|
||||||
|
case 'maintainer':
|
||||||
|
res = await this.$axios(urls[2]);
|
||||||
|
this.maintainerList = res.data || [];
|
||||||
|
break;
|
||||||
|
case 'line':
|
||||||
|
res = await this.$axios(urls[0]);
|
||||||
|
this.lineList = res.data || [];
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
this.formLoading = false;
|
||||||
|
},
|
||||||
|
|
||||||
|
// handlers
|
||||||
|
handleEqTypeChange(type) {
|
||||||
|
this.form.equipmentId = null;
|
||||||
|
if (type) {
|
||||||
|
this.equipmentOptions = this.equipmentList
|
||||||
|
.filter((item) => item.special)
|
||||||
|
.filter((item) => item.specialType === type)
|
||||||
|
.map((item) => ({ label: item.name, value: item.id }));
|
||||||
|
} else
|
||||||
|
this.equipmentOptions = this.equipmentList.map((item) => ({
|
||||||
|
label: item.name,
|
||||||
|
value: item.id,
|
||||||
|
}));
|
||||||
|
// this.$emit('update', this.form)
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
.el-date-editor,
|
||||||
|
.el-select {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
</style>
|
@ -0,0 +1,373 @@
|
|||||||
|
<!--
|
||||||
|
filename: dialogForm.vue
|
||||||
|
author: liubin
|
||||||
|
date: 2023-08-15 10:32:36
|
||||||
|
description: 弹窗的表单组件
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<el-form
|
||||||
|
ref="form"
|
||||||
|
:model="form"
|
||||||
|
:size="size"
|
||||||
|
:label-position="labelPosition"
|
||||||
|
v-loading="formLoading">
|
||||||
|
<el-row :gutter="20">
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item
|
||||||
|
label="保养计划单号"
|
||||||
|
prop="maintainOrderNumber"
|
||||||
|
:rules="[
|
||||||
|
{ required: true, message: '请输入保养计划单号', trigger: 'blur' },
|
||||||
|
]">
|
||||||
|
<el-input
|
||||||
|
v-model="form.maintainOrderNumber"
|
||||||
|
@change="$emit('update', form)"
|
||||||
|
:placeholder="`请输入保养计划单号`"
|
||||||
|
:disabled="disabled" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="保养计划名称" prop="name">
|
||||||
|
<el-input value="---" disabled />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item
|
||||||
|
label="部门"
|
||||||
|
prop="departmentId"
|
||||||
|
:rules="[{ required: true, message: '请选择部门', trigger: 'blur' }]">
|
||||||
|
<el-select
|
||||||
|
v-model="form.departmentId"
|
||||||
|
:placeholder="`请选择部门`"
|
||||||
|
:disabled="disabled"
|
||||||
|
clearable
|
||||||
|
filterable
|
||||||
|
@change="$emit('update', form)">
|
||||||
|
<el-option
|
||||||
|
v-for="opt in departmentOptions"
|
||||||
|
:key="opt.value"
|
||||||
|
:label="opt.label"
|
||||||
|
:value="opt.value" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
|
||||||
|
<!-- <el-form-item
|
||||||
|
label="设备大类"
|
||||||
|
prop="equipmentCategory"
|
||||||
|
:rules="[
|
||||||
|
{ required: true, message: '请选择设备大类', trigger: 'blur' },
|
||||||
|
]">
|
||||||
|
<el-select
|
||||||
|
v-model="form.equipmentCategory"
|
||||||
|
:placeholder="`请选择设备大类`"
|
||||||
|
:disabled="disabled"
|
||||||
|
@change="handleEqTypeChange">
|
||||||
|
<el-option
|
||||||
|
v-for="opt in equipmentTypeOptions"
|
||||||
|
:key="opt.value"
|
||||||
|
:label="opt.label"
|
||||||
|
:value="opt.value" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item> -->
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item
|
||||||
|
label="产线"
|
||||||
|
prop="lineId"
|
||||||
|
:rules="[{ required: true, message: '请选择产线', trigger: 'blur' }]">
|
||||||
|
<el-select
|
||||||
|
v-model="form.lineId"
|
||||||
|
:placeholder="`请选择产线`"
|
||||||
|
:disabled="disabled"
|
||||||
|
clearable
|
||||||
|
filterable
|
||||||
|
@change="$emit('update', form)">
|
||||||
|
<el-option
|
||||||
|
v-for="opt in lineOptions"
|
||||||
|
:key="opt.value"
|
||||||
|
:label="opt.label"
|
||||||
|
:value="opt.value" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="计划保养人员" prop="maintainer">
|
||||||
|
<el-input value="---" disabled />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="计划开始时间" prop="planStartTime">
|
||||||
|
<el-input value="---" disabled />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="计划结束时间" prop="planEndTime">
|
||||||
|
<el-input value="---" disabled />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item
|
||||||
|
label="实际开始时间"
|
||||||
|
prop="startTime"
|
||||||
|
:rules="[
|
||||||
|
{ required: true, message: '请选择实际开始时间', trigger: 'blur' },
|
||||||
|
]">
|
||||||
|
<el-date-picker
|
||||||
|
v-model="form.startTime"
|
||||||
|
type="datetime"
|
||||||
|
:disabled="edit"
|
||||||
|
placeholder="请选择实际开始时间"
|
||||||
|
@change="$emit('update', form)"
|
||||||
|
value-format="timestamp"></el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item
|
||||||
|
label="实际结束时间"
|
||||||
|
prop="endTime"
|
||||||
|
:rules="[
|
||||||
|
{ required: true, message: '请选择实际结束时间', trigger: 'blur' },
|
||||||
|
]">
|
||||||
|
<el-date-picker
|
||||||
|
v-model="form.endTime"
|
||||||
|
type="datetime"
|
||||||
|
:disabled="edit"
|
||||||
|
placeholder="请选择实际结束时间"
|
||||||
|
@change="$emit('update', form)"
|
||||||
|
value-format="timestamp"></el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item
|
||||||
|
label="实际保养人员"
|
||||||
|
prop="maintainWorker"
|
||||||
|
:rules="[
|
||||||
|
{ required: true, message: '请选择实际保养人员', trigger: 'blur' },
|
||||||
|
]">
|
||||||
|
<el-select
|
||||||
|
v-model="form.maintainWorker"
|
||||||
|
:placeholder="`请选择实际保养人员`"
|
||||||
|
:disabled="disabled"
|
||||||
|
multiple
|
||||||
|
clearable
|
||||||
|
filterable
|
||||||
|
@change="$emit('update', form)">
|
||||||
|
<el-option
|
||||||
|
v-for="opt in maintainerOptions"
|
||||||
|
:key="opt.value"
|
||||||
|
:label="opt.label"
|
||||||
|
:value="opt.value" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item label="备注" prop="remark">
|
||||||
|
<el-input
|
||||||
|
v-model="form.remark"
|
||||||
|
@change="$emit('update', form)"
|
||||||
|
:placeholder="`请输入备注`"
|
||||||
|
:disabled="disabled" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-form>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: 'DialogForm',
|
||||||
|
model: {
|
||||||
|
prop: 'dataForm',
|
||||||
|
event: 'update',
|
||||||
|
},
|
||||||
|
emits: ['update'],
|
||||||
|
components: {},
|
||||||
|
props: {
|
||||||
|
rows: {
|
||||||
|
type: Array,
|
||||||
|
default: () => [],
|
||||||
|
},
|
||||||
|
dataForm: {
|
||||||
|
type: Object,
|
||||||
|
default: () => ({}),
|
||||||
|
},
|
||||||
|
disabled: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
|
edit: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
|
hasFiles: {
|
||||||
|
type: Boolean | Array,
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
|
labelPosition: {
|
||||||
|
type: String,
|
||||||
|
default: 'right',
|
||||||
|
},
|
||||||
|
size: {
|
||||||
|
type: String,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
form: {},
|
||||||
|
formLoading: true,
|
||||||
|
equipmentTypeOptions: [
|
||||||
|
{ label: '安全设备', value: 1 },
|
||||||
|
{ label: '消防设备', value: 2 },
|
||||||
|
{ label: '特种设备', value: 3 },
|
||||||
|
],
|
||||||
|
lineList: [],
|
||||||
|
maintainerList: [],
|
||||||
|
departmentList: [],
|
||||||
|
};
|
||||||
|
},
|
||||||
|
watch: {
|
||||||
|
dataForm: {
|
||||||
|
handler(val) {
|
||||||
|
this.form = JSON.parse(JSON.stringify(val));
|
||||||
|
if (typeof val.maintainer == 'string')
|
||||||
|
this.form.maintainer = val.maintainer.split(',');
|
||||||
|
if (this.form.equipmentCategory != null) {
|
||||||
|
setTimeout(() => {
|
||||||
|
this.equipmentOptions = this.equipmentList
|
||||||
|
.filter((item) => item.special)
|
||||||
|
.filter(
|
||||||
|
(item) => item.specialType === this.form.equipmentCategory
|
||||||
|
)
|
||||||
|
.map((item) => ({ label: item.name, value: item.id }));
|
||||||
|
}, 1000);
|
||||||
|
}
|
||||||
|
if (this.hasFiles) {
|
||||||
|
if (typeof this.hasFiles == 'boolean' && this.hasFiles) {
|
||||||
|
this.form.files = this.form.files ?? [];
|
||||||
|
} else if (Array.isArray(this.hasFiles)) {
|
||||||
|
this.hasFiles.forEach((prop) => {
|
||||||
|
this.form[prop] = this.form[prop] ?? [];
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
deep: true,
|
||||||
|
immediate: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
// !this.edit && this.getCode('/base/equipment-maintain-plan/getCode');
|
||||||
|
this.getList('maintainer');
|
||||||
|
this.getList('department');
|
||||||
|
this.getList('line');
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
departmentOptions() {
|
||||||
|
return (this.departmentList || []).map((item) => ({
|
||||||
|
id: item.id,
|
||||||
|
label: item.name,
|
||||||
|
value: item.id,
|
||||||
|
}));
|
||||||
|
},
|
||||||
|
lineOptions() {
|
||||||
|
return (this.lineList || []).map((item) => ({
|
||||||
|
id: item.id,
|
||||||
|
label: item.name,
|
||||||
|
value: item.id,
|
||||||
|
}));
|
||||||
|
},
|
||||||
|
maintainerOptions() {
|
||||||
|
return (this.maintainerList || []).map((item) => ({
|
||||||
|
id: item.id,
|
||||||
|
label: item.name,
|
||||||
|
value: item.name,
|
||||||
|
}));
|
||||||
|
},
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
/** 模拟透传 ref */
|
||||||
|
validate(cb) {
|
||||||
|
return this.$refs.form.validate(cb);
|
||||||
|
},
|
||||||
|
resetFields(args) {
|
||||||
|
return this.$refs.form.resetFields(args);
|
||||||
|
},
|
||||||
|
// getCode
|
||||||
|
async getCode(url) {
|
||||||
|
this.formLoading = true;
|
||||||
|
const response = await this.$axios(url);
|
||||||
|
this.formLoading = false;
|
||||||
|
this.form.code = response.data || '';
|
||||||
|
},
|
||||||
|
// initialize
|
||||||
|
async getEquipmentList() {
|
||||||
|
this.formLoading = true;
|
||||||
|
const response = await this.$axios('/base/core-equipment/listAll');
|
||||||
|
this.equipmentList = response.data || [];
|
||||||
|
this.equipmentOptions = (response.data || []).map((item) => ({
|
||||||
|
label: item.name,
|
||||||
|
value: item.id,
|
||||||
|
}));
|
||||||
|
this.formLoading = false;
|
||||||
|
},
|
||||||
|
async getList(source = 'department') {
|
||||||
|
const urls = [
|
||||||
|
'/base/core-production-line/listAll',
|
||||||
|
'/base/core-department/listAll',
|
||||||
|
'/base/core-worker/listAll',
|
||||||
|
];
|
||||||
|
let res;
|
||||||
|
switch (source) {
|
||||||
|
case 'department':
|
||||||
|
res = await this.$axios(urls[1]);
|
||||||
|
this.departmentList = res.data || [];
|
||||||
|
break;
|
||||||
|
case 'maintainer':
|
||||||
|
res = await this.$axios(urls[2]);
|
||||||
|
this.maintainerList = res.data || [];
|
||||||
|
break;
|
||||||
|
case 'line':
|
||||||
|
res = await this.$axios(urls[0]);
|
||||||
|
this.lineList = res.data || [];
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
this.formLoading = false;
|
||||||
|
},
|
||||||
|
|
||||||
|
// handlers
|
||||||
|
handleEqTypeChange(type) {
|
||||||
|
this.form.equipmentId = null;
|
||||||
|
if (type) {
|
||||||
|
this.equipmentOptions = this.equipmentList
|
||||||
|
.filter((item) => item.special)
|
||||||
|
.filter((item) => item.specialType === type)
|
||||||
|
.map((item) => ({ label: item.name, value: item.id }));
|
||||||
|
} else
|
||||||
|
this.equipmentOptions = this.equipmentList.map((item) => ({
|
||||||
|
label: item.name,
|
||||||
|
value: item.id,
|
||||||
|
}));
|
||||||
|
// this.$emit('update', this.form)
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
.el-date-editor,
|
||||||
|
.el-select {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
</style>
|
@ -0,0 +1,399 @@
|
|||||||
|
<!--
|
||||||
|
filename: dialogForm.vue
|
||||||
|
author: liubin
|
||||||
|
date: 2023-08-15 10:32:36
|
||||||
|
description: 弹窗的表单组件
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<el-form
|
||||||
|
ref="form"
|
||||||
|
:model="form"
|
||||||
|
:size="size"
|
||||||
|
:label-position="labelPosition"
|
||||||
|
v-loading="formLoading">
|
||||||
|
<el-row :gutter="20">
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item
|
||||||
|
label="保养计划单号"
|
||||||
|
prop="code"
|
||||||
|
:rules="[
|
||||||
|
{ required: true, message: '请输入保养计划单号', trigger: 'blur' },
|
||||||
|
]">
|
||||||
|
<el-input
|
||||||
|
v-model="form.code"
|
||||||
|
@change="$emit('update', form)"
|
||||||
|
:placeholder="`请输入保养计划单号`"
|
||||||
|
:disabled="disabled" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="保养计划名称" prop="name">
|
||||||
|
<el-input
|
||||||
|
v-model="form.name"
|
||||||
|
disabled
|
||||||
|
:placeholder="`请输入保养计划名称`" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item
|
||||||
|
label="部门"
|
||||||
|
prop="departmentId"
|
||||||
|
:rules="[{ required: true, message: '请选择部门', trigger: 'blur' }]">
|
||||||
|
<el-select
|
||||||
|
v-model="form.departmentId"
|
||||||
|
:placeholder="`请选择部门`"
|
||||||
|
:disabled="disabled"
|
||||||
|
clearable
|
||||||
|
filterable
|
||||||
|
@change="$emit('update', form)">
|
||||||
|
<el-option
|
||||||
|
v-for="opt in departmentOptions"
|
||||||
|
:key="opt.value"
|
||||||
|
:label="opt.label"
|
||||||
|
:value="opt.value" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
|
||||||
|
<!-- <el-form-item
|
||||||
|
label="设备大类"
|
||||||
|
prop="equipmentCategory"
|
||||||
|
:rules="[
|
||||||
|
{ required: true, message: '请选择设备大类', trigger: 'blur' },
|
||||||
|
]">
|
||||||
|
<el-select
|
||||||
|
v-model="form.equipmentCategory"
|
||||||
|
:placeholder="`请选择设备大类`"
|
||||||
|
:disabled="disabled"
|
||||||
|
@change="handleEqTypeChange">
|
||||||
|
<el-option
|
||||||
|
v-for="opt in equipmentTypeOptions"
|
||||||
|
:key="opt.value"
|
||||||
|
:label="opt.label"
|
||||||
|
:value="opt.value" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item> -->
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item
|
||||||
|
label="产线"
|
||||||
|
prop="lineId"
|
||||||
|
:rules="[{ required: true, message: '请选择产线', trigger: 'blur' }]">
|
||||||
|
<el-select
|
||||||
|
v-model="form.lineId"
|
||||||
|
:placeholder="`请选择产线`"
|
||||||
|
:disabled="disabled"
|
||||||
|
clearable
|
||||||
|
filterable
|
||||||
|
@change="$emit('update', form)">
|
||||||
|
<el-option
|
||||||
|
v-for="opt in lineOptions"
|
||||||
|
:key="opt.value"
|
||||||
|
:label="opt.label"
|
||||||
|
:value="opt.value" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="计划保养人员" prop="maintainer">
|
||||||
|
<el-input v-model="form.maintainer" disabled />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item
|
||||||
|
label="计划开始时间"
|
||||||
|
prop="firstMaintenanceTime"
|
||||||
|
:rules="[
|
||||||
|
{ required: true, message: '请选择计划开始时间', trigger: 'blur' },
|
||||||
|
]">
|
||||||
|
<el-date-picker
|
||||||
|
v-model="form.firstMaintenanceTime"
|
||||||
|
type="datetime"
|
||||||
|
:disabled="edit"
|
||||||
|
placeholder="请选择计划开始时间"
|
||||||
|
@change="$emit('update', form)"
|
||||||
|
value-format="timestamp"></el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item
|
||||||
|
label="计划结束时间"
|
||||||
|
prop="firstMaintenanceTime"
|
||||||
|
:rules="[
|
||||||
|
{ required: true, message: '请选择计划结束时间', trigger: 'blur' },
|
||||||
|
]">
|
||||||
|
<el-date-picker
|
||||||
|
v-model="form.firstMaintenanceTime"
|
||||||
|
type="datetime"
|
||||||
|
:disabled="edit"
|
||||||
|
placeholder="请选择计划结束时间"
|
||||||
|
@change="$emit('update', form)"
|
||||||
|
value-format="timestamp"></el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item
|
||||||
|
label="实际开始时间"
|
||||||
|
prop="firstMaintenanceTime"
|
||||||
|
:rules="[
|
||||||
|
{ required: true, message: '请选择实际开始时间', trigger: 'blur' },
|
||||||
|
]">
|
||||||
|
<el-date-picker
|
||||||
|
v-model="form.firstMaintenanceTime"
|
||||||
|
type="datetime"
|
||||||
|
:disabled="edit"
|
||||||
|
placeholder="请选择实际开始时间"
|
||||||
|
@change="$emit('update', form)"
|
||||||
|
value-format="timestamp"></el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item
|
||||||
|
label="实际结束时间"
|
||||||
|
prop="firstMaintenanceTime"
|
||||||
|
:rules="[
|
||||||
|
{ required: true, message: '请选择实际结束时间', trigger: 'blur' },
|
||||||
|
]">
|
||||||
|
<el-date-picker
|
||||||
|
v-model="form.firstMaintenanceTime"
|
||||||
|
type="datetime"
|
||||||
|
:disabled="edit"
|
||||||
|
placeholder="请选择实际结束时间"
|
||||||
|
@change="$emit('update', form)"
|
||||||
|
value-format="timestamp"></el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item
|
||||||
|
label="实际保养人员"
|
||||||
|
prop="maintainer"
|
||||||
|
:rules="[
|
||||||
|
{ required: true, message: '请选择实际保养人员', trigger: 'blur' },
|
||||||
|
]">
|
||||||
|
<el-select
|
||||||
|
v-model="form.maintainer"
|
||||||
|
:placeholder="`请选择计划保养人员`"
|
||||||
|
:disabled="disabled"
|
||||||
|
multiple
|
||||||
|
clearable
|
||||||
|
filterable
|
||||||
|
@change="$emit('update', form)">
|
||||||
|
<el-option
|
||||||
|
v-for="opt in maintainerOptions"
|
||||||
|
:key="opt.value"
|
||||||
|
:label="opt.label"
|
||||||
|
:value="opt.value" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item label="备注" prop="remark">
|
||||||
|
<el-input
|
||||||
|
v-model="form.remark"
|
||||||
|
@change="$emit('update', form)"
|
||||||
|
:placeholder="`请输入备注`"
|
||||||
|
:disabled="disabled" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-form>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: 'DialogForm',
|
||||||
|
model: {
|
||||||
|
prop: 'dataForm',
|
||||||
|
event: 'update',
|
||||||
|
},
|
||||||
|
emits: ['update'],
|
||||||
|
components: {},
|
||||||
|
props: {
|
||||||
|
rows: {
|
||||||
|
type: Array,
|
||||||
|
default: () => [],
|
||||||
|
},
|
||||||
|
dataForm: {
|
||||||
|
type: Object,
|
||||||
|
default: () => ({}),
|
||||||
|
},
|
||||||
|
disabled: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
|
edit: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
|
hasFiles: {
|
||||||
|
type: Boolean | Array,
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
|
labelPosition: {
|
||||||
|
type: String,
|
||||||
|
default: 'right',
|
||||||
|
},
|
||||||
|
size: {
|
||||||
|
type: String,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
form: {},
|
||||||
|
formLoading: true,
|
||||||
|
equipmentTypeOptions: [
|
||||||
|
{ label: '安全设备', value: 1 },
|
||||||
|
{ label: '消防设备', value: 2 },
|
||||||
|
{ label: '特种设备', value: 3 },
|
||||||
|
],
|
||||||
|
lineList: [],
|
||||||
|
maintainerList: [],
|
||||||
|
departmentList: [],
|
||||||
|
};
|
||||||
|
},
|
||||||
|
watch: {
|
||||||
|
dataForm: {
|
||||||
|
handler(val) {
|
||||||
|
this.form = JSON.parse(JSON.stringify(val));
|
||||||
|
if (typeof val.maintainer == 'string')
|
||||||
|
this.form.maintainer = val.maintainer.split(',');
|
||||||
|
if (this.form.equipmentCategory != null) {
|
||||||
|
setTimeout(() => {
|
||||||
|
this.equipmentOptions = this.equipmentList
|
||||||
|
.filter((item) => item.special)
|
||||||
|
.filter(
|
||||||
|
(item) => item.specialType === this.form.equipmentCategory
|
||||||
|
)
|
||||||
|
.map((item) => ({ label: item.name, value: item.id }));
|
||||||
|
}, 1000);
|
||||||
|
}
|
||||||
|
if (this.hasFiles) {
|
||||||
|
if (typeof this.hasFiles == 'boolean' && this.hasFiles) {
|
||||||
|
this.form.files = this.form.files ?? [];
|
||||||
|
} else if (Array.isArray(this.hasFiles)) {
|
||||||
|
this.hasFiles.forEach((prop) => {
|
||||||
|
this.form[prop] = this.form[prop] ?? [];
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
deep: true,
|
||||||
|
immediate: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
!this.edit && this.getCode('/base/equipment-maintain-plan/getCode');
|
||||||
|
this.getList('maintainer');
|
||||||
|
this.getList('department');
|
||||||
|
this.getList('line');
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
departmentOptions() {
|
||||||
|
return (this.departmentList || []).map((item) => ({
|
||||||
|
id: item.id,
|
||||||
|
label: item.name,
|
||||||
|
value: item.id,
|
||||||
|
}));
|
||||||
|
},
|
||||||
|
lineOptions() {
|
||||||
|
return (this.lineList || []).map((item) => ({
|
||||||
|
id: item.id,
|
||||||
|
label: item.name,
|
||||||
|
value: item.id,
|
||||||
|
}));
|
||||||
|
},
|
||||||
|
maintainerOptions() {
|
||||||
|
return (this.maintainerList || []).map((item) => ({
|
||||||
|
id: item.id,
|
||||||
|
label: item.name,
|
||||||
|
value: item.name,
|
||||||
|
}));
|
||||||
|
},
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
/** 模拟透传 ref */
|
||||||
|
validate(cb) {
|
||||||
|
return this.$refs.form.validate(cb);
|
||||||
|
},
|
||||||
|
resetFields(args) {
|
||||||
|
return this.$refs.form.resetFields(args);
|
||||||
|
},
|
||||||
|
// getCode
|
||||||
|
async getCode(url) {
|
||||||
|
this.formLoading = true;
|
||||||
|
const response = await this.$axios(url);
|
||||||
|
this.formLoading = false;
|
||||||
|
this.form.code = response.data || '';
|
||||||
|
},
|
||||||
|
// initialize
|
||||||
|
async getEquipmentList() {
|
||||||
|
this.formLoading = true;
|
||||||
|
const response = await this.$axios('/base/core-equipment/listAll');
|
||||||
|
this.equipmentList = response.data || [];
|
||||||
|
this.equipmentOptions = (response.data || []).map((item) => ({
|
||||||
|
label: item.name,
|
||||||
|
value: item.id,
|
||||||
|
}));
|
||||||
|
this.formLoading = false;
|
||||||
|
},
|
||||||
|
async getList(source = 'department') {
|
||||||
|
const urls = [
|
||||||
|
'/base/core-production-line/listAll',
|
||||||
|
'/base/core-department/listAll',
|
||||||
|
'/base/core-worker/listAll',
|
||||||
|
];
|
||||||
|
let res;
|
||||||
|
switch (source) {
|
||||||
|
case 'department':
|
||||||
|
res = await this.$axios(urls[1]);
|
||||||
|
this.departmentList = res.data || [];
|
||||||
|
break;
|
||||||
|
case 'maintainer':
|
||||||
|
res = await this.$axios(urls[2]);
|
||||||
|
this.maintainerList = res.data || [];
|
||||||
|
break;
|
||||||
|
case 'line':
|
||||||
|
res = await this.$axios(urls[0]);
|
||||||
|
this.lineList = res.data || [];
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
this.formLoading = false;
|
||||||
|
},
|
||||||
|
|
||||||
|
// handlers
|
||||||
|
handleEqTypeChange(type) {
|
||||||
|
this.form.equipmentId = null;
|
||||||
|
if (type) {
|
||||||
|
this.equipmentOptions = this.equipmentList
|
||||||
|
.filter((item) => item.special)
|
||||||
|
.filter((item) => item.specialType === type)
|
||||||
|
.map((item) => ({ label: item.name, value: item.id }));
|
||||||
|
} else
|
||||||
|
this.equipmentOptions = this.equipmentList.map((item) => ({
|
||||||
|
label: item.name,
|
||||||
|
value: item.id,
|
||||||
|
}));
|
||||||
|
// this.$emit('update', this.form)
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
.el-date-editor,
|
||||||
|
.el-select {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
</style>
|
@ -0,0 +1,373 @@
|
|||||||
|
<!--
|
||||||
|
filename: dialogForm.vue
|
||||||
|
author: liubin
|
||||||
|
date: 2023-08-15 10:32:36
|
||||||
|
description: 弹窗的表单组件
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<el-form
|
||||||
|
ref="form"
|
||||||
|
:model="form"
|
||||||
|
:size="size"
|
||||||
|
:label-position="labelPosition"
|
||||||
|
v-loading="formLoading">
|
||||||
|
<el-row :gutter="20">
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item
|
||||||
|
label="保养计划单号"
|
||||||
|
prop="code"
|
||||||
|
:rules="[
|
||||||
|
{ required: true, message: '请输入保养计划单号', trigger: 'blur' },
|
||||||
|
]">
|
||||||
|
<el-input
|
||||||
|
v-model="form.code"
|
||||||
|
@change="$emit('update', form)"
|
||||||
|
:placeholder="`请输入保养计划单号`"
|
||||||
|
:disabled="disabled" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="保养计划名称" prop="name">
|
||||||
|
<span>---</span>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item
|
||||||
|
label="部门"
|
||||||
|
prop="departmentId"
|
||||||
|
:rules="[{ required: true, message: '请选择部门', trigger: 'blur' }]">
|
||||||
|
<el-select
|
||||||
|
v-model="form.departmentId"
|
||||||
|
:placeholder="`请选择部门`"
|
||||||
|
:disabled="disabled"
|
||||||
|
clearable
|
||||||
|
filterable
|
||||||
|
@change="$emit('update', form)">
|
||||||
|
<el-option
|
||||||
|
v-for="opt in departmentOptions"
|
||||||
|
:key="opt.value"
|
||||||
|
:label="opt.label"
|
||||||
|
:value="opt.value" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
|
||||||
|
<!-- <el-form-item
|
||||||
|
label="设备大类"
|
||||||
|
prop="equipmentCategory"
|
||||||
|
:rules="[
|
||||||
|
{ required: true, message: '请选择设备大类', trigger: 'blur' },
|
||||||
|
]">
|
||||||
|
<el-select
|
||||||
|
v-model="form.equipmentCategory"
|
||||||
|
:placeholder="`请选择设备大类`"
|
||||||
|
:disabled="disabled"
|
||||||
|
@change="handleEqTypeChange">
|
||||||
|
<el-option
|
||||||
|
v-for="opt in equipmentTypeOptions"
|
||||||
|
:key="opt.value"
|
||||||
|
:label="opt.label"
|
||||||
|
:value="opt.value" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item> -->
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item
|
||||||
|
label="产线"
|
||||||
|
prop="lineId"
|
||||||
|
:rules="[{ required: true, message: '请选择产线', trigger: 'blur' }]">
|
||||||
|
<el-select
|
||||||
|
v-model="form.lineId"
|
||||||
|
:placeholder="`请选择产线`"
|
||||||
|
:disabled="disabled"
|
||||||
|
clearable
|
||||||
|
filterable
|
||||||
|
@change="$emit('update', form)">
|
||||||
|
<el-option
|
||||||
|
v-for="opt in lineOptions"
|
||||||
|
:key="opt.value"
|
||||||
|
:label="opt.label"
|
||||||
|
:value="opt.value" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="计划保养人员" prop="maintainer">
|
||||||
|
<span>---</span>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="计划开始时间" prop="firstMaintenanceTime">
|
||||||
|
<span>---</span>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="计划结束时间" prop="firstMaintenanceTime">
|
||||||
|
<span>---</span>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item
|
||||||
|
label="实际开始时间"
|
||||||
|
prop="firstMaintenanceTime"
|
||||||
|
:rules="[
|
||||||
|
{ required: true, message: '请选择实际开始时间', trigger: 'blur' },
|
||||||
|
]">
|
||||||
|
<el-date-picker
|
||||||
|
v-model="form.firstMaintenanceTime"
|
||||||
|
type="datetime"
|
||||||
|
:disabled="edit"
|
||||||
|
placeholder="请选择实际开始时间"
|
||||||
|
@change="$emit('update', form)"
|
||||||
|
value-format="timestamp"></el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item
|
||||||
|
label="实际结束时间"
|
||||||
|
prop="firstMaintenanceTime"
|
||||||
|
:rules="[
|
||||||
|
{ required: true, message: '请选择实际结束时间', trigger: 'blur' },
|
||||||
|
]">
|
||||||
|
<el-date-picker
|
||||||
|
v-model="form.firstMaintenanceTime"
|
||||||
|
type="datetime"
|
||||||
|
:disabled="edit"
|
||||||
|
placeholder="请选择实际结束时间"
|
||||||
|
@change="$emit('update', form)"
|
||||||
|
value-format="timestamp"></el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item
|
||||||
|
label="实际保养人员"
|
||||||
|
prop="maintainer"
|
||||||
|
:rules="[
|
||||||
|
{ required: true, message: '请选择实际保养人员', trigger: 'blur' },
|
||||||
|
]">
|
||||||
|
<el-select
|
||||||
|
v-model="form.maintainer"
|
||||||
|
:placeholder="`请选择计划保养人员`"
|
||||||
|
:disabled="disabled"
|
||||||
|
multiple
|
||||||
|
clearable
|
||||||
|
filterable
|
||||||
|
@change="$emit('update', form)">
|
||||||
|
<el-option
|
||||||
|
v-for="opt in maintainerOptions"
|
||||||
|
:key="opt.value"
|
||||||
|
:label="opt.label"
|
||||||
|
:value="opt.value" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item label="备注" prop="remark">
|
||||||
|
<el-input
|
||||||
|
v-model="form.remark"
|
||||||
|
@change="$emit('update', form)"
|
||||||
|
:placeholder="`请输入备注`"
|
||||||
|
:disabled="disabled" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-form>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: 'DialogForm',
|
||||||
|
model: {
|
||||||
|
prop: 'dataForm',
|
||||||
|
event: 'update',
|
||||||
|
},
|
||||||
|
emits: ['update'],
|
||||||
|
components: {},
|
||||||
|
props: {
|
||||||
|
rows: {
|
||||||
|
type: Array,
|
||||||
|
default: () => [],
|
||||||
|
},
|
||||||
|
dataForm: {
|
||||||
|
type: Object,
|
||||||
|
default: () => ({}),
|
||||||
|
},
|
||||||
|
disabled: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
|
edit: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
|
hasFiles: {
|
||||||
|
type: Boolean | Array,
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
|
labelPosition: {
|
||||||
|
type: String,
|
||||||
|
default: 'right',
|
||||||
|
},
|
||||||
|
size: {
|
||||||
|
type: String,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
form: {},
|
||||||
|
formLoading: true,
|
||||||
|
equipmentTypeOptions: [
|
||||||
|
{ label: '安全设备', value: 1 },
|
||||||
|
{ label: '消防设备', value: 2 },
|
||||||
|
{ label: '特种设备', value: 3 },
|
||||||
|
],
|
||||||
|
lineList: [],
|
||||||
|
maintainerList: [],
|
||||||
|
departmentList: [],
|
||||||
|
};
|
||||||
|
},
|
||||||
|
watch: {
|
||||||
|
dataForm: {
|
||||||
|
handler(val) {
|
||||||
|
this.form = JSON.parse(JSON.stringify(val));
|
||||||
|
if (typeof val.maintainer == 'string')
|
||||||
|
this.form.maintainer = val.maintainer.split(',');
|
||||||
|
if (this.form.equipmentCategory != null) {
|
||||||
|
setTimeout(() => {
|
||||||
|
this.equipmentOptions = this.equipmentList
|
||||||
|
.filter((item) => item.special)
|
||||||
|
.filter(
|
||||||
|
(item) => item.specialType === this.form.equipmentCategory
|
||||||
|
)
|
||||||
|
.map((item) => ({ label: item.name, value: item.id }));
|
||||||
|
}, 1000);
|
||||||
|
}
|
||||||
|
if (this.hasFiles) {
|
||||||
|
if (typeof this.hasFiles == 'boolean' && this.hasFiles) {
|
||||||
|
this.form.files = this.form.files ?? [];
|
||||||
|
} else if (Array.isArray(this.hasFiles)) {
|
||||||
|
this.hasFiles.forEach((prop) => {
|
||||||
|
this.form[prop] = this.form[prop] ?? [];
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
deep: true,
|
||||||
|
immediate: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
!this.edit && this.getCode('/base/equipment-maintain-plan/getCode');
|
||||||
|
this.getList('maintainer');
|
||||||
|
this.getList('department');
|
||||||
|
this.getList('line');
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
departmentOptions() {
|
||||||
|
return (this.departmentList || []).map((item) => ({
|
||||||
|
id: item.id,
|
||||||
|
label: item.name,
|
||||||
|
value: item.id,
|
||||||
|
}));
|
||||||
|
},
|
||||||
|
lineOptions() {
|
||||||
|
return (this.lineList || []).map((item) => ({
|
||||||
|
id: item.id,
|
||||||
|
label: item.name,
|
||||||
|
value: item.id,
|
||||||
|
}));
|
||||||
|
},
|
||||||
|
maintainerOptions() {
|
||||||
|
return (this.maintainerList || []).map((item) => ({
|
||||||
|
id: item.id,
|
||||||
|
label: item.name,
|
||||||
|
value: item.name,
|
||||||
|
}));
|
||||||
|
},
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
/** 模拟透传 ref */
|
||||||
|
validate(cb) {
|
||||||
|
return this.$refs.form.validate(cb);
|
||||||
|
},
|
||||||
|
resetFields(args) {
|
||||||
|
return this.$refs.form.resetFields(args);
|
||||||
|
},
|
||||||
|
// getCode
|
||||||
|
async getCode(url) {
|
||||||
|
this.formLoading = true;
|
||||||
|
const response = await this.$axios(url);
|
||||||
|
this.formLoading = false;
|
||||||
|
this.form.code = response.data || '';
|
||||||
|
},
|
||||||
|
// initialize
|
||||||
|
async getEquipmentList() {
|
||||||
|
this.formLoading = true;
|
||||||
|
const response = await this.$axios('/base/core-equipment/listAll');
|
||||||
|
this.equipmentList = response.data || [];
|
||||||
|
this.equipmentOptions = (response.data || []).map((item) => ({
|
||||||
|
label: item.name,
|
||||||
|
value: item.id,
|
||||||
|
}));
|
||||||
|
this.formLoading = false;
|
||||||
|
},
|
||||||
|
async getList(source = 'department') {
|
||||||
|
const urls = [
|
||||||
|
'/base/core-production-line/listAll',
|
||||||
|
'/base/core-department/listAll',
|
||||||
|
'/base/core-worker/listAll',
|
||||||
|
];
|
||||||
|
let res;
|
||||||
|
switch (source) {
|
||||||
|
case 'department':
|
||||||
|
res = await this.$axios(urls[1]);
|
||||||
|
this.departmentList = res.data || [];
|
||||||
|
break;
|
||||||
|
case 'maintainer':
|
||||||
|
res = await this.$axios(urls[2]);
|
||||||
|
this.maintainerList = res.data || [];
|
||||||
|
break;
|
||||||
|
case 'line':
|
||||||
|
res = await this.$axios(urls[0]);
|
||||||
|
this.lineList = res.data || [];
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
this.formLoading = false;
|
||||||
|
},
|
||||||
|
|
||||||
|
// handlers
|
||||||
|
handleEqTypeChange(type) {
|
||||||
|
this.form.equipmentId = null;
|
||||||
|
if (type) {
|
||||||
|
this.equipmentOptions = this.equipmentList
|
||||||
|
.filter((item) => item.special)
|
||||||
|
.filter((item) => item.specialType === type)
|
||||||
|
.map((item) => ({ label: item.name, value: item.id }));
|
||||||
|
} else
|
||||||
|
this.equipmentOptions = this.equipmentList.map((item) => ({
|
||||||
|
label: item.name,
|
||||||
|
value: item.id,
|
||||||
|
}));
|
||||||
|
// this.$emit('update', this.form)
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
.el-date-editor,
|
||||||
|
.el-select {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
</style>
|
813
src/views/specialEquipment/maintain/WaitingList.vue
Normal file
813
src/views/specialEquipment/maintain/WaitingList.vue
Normal file
@ -0,0 +1,813 @@
|
|||||||
|
<!--
|
||||||
|
filename: MaintainRecord.vue
|
||||||
|
author: liubin
|
||||||
|
date: 2023-12-12 13:54:53
|
||||||
|
description:
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div class="app-container SpecialEquipmentMaintainRecord">
|
||||||
|
<!-- 搜索工作栏 -->
|
||||||
|
<SearchBar
|
||||||
|
:formConfigs="searchBarFormConfig"
|
||||||
|
ref="search-bar"
|
||||||
|
@select-changed="handleSearchBarChange"
|
||||||
|
@headBtnClick="handleSearchBarBtnClick" />
|
||||||
|
|
||||||
|
<!-- 列表 -->
|
||||||
|
<!-- <base-table
|
||||||
|
:table-props="tableProps"
|
||||||
|
:page="queryParams.pageNo"
|
||||||
|
:limit="queryParams.pageSize"
|
||||||
|
:table-data="list"
|
||||||
|
@selection-change="handleSelectionChange"
|
||||||
|
@emitFun="handleEmitFun">
|
||||||
|
<method-btn
|
||||||
|
v-if="tableBtn.length"
|
||||||
|
slot="handleBtn"
|
||||||
|
label="操作"
|
||||||
|
:width="120"
|
||||||
|
:method-list="tableBtn"
|
||||||
|
@clickBtn="handleTableBtnClick" />
|
||||||
|
</base-table> -->
|
||||||
|
<WaitingListTable
|
||||||
|
ref="waiting-list-table"
|
||||||
|
:table-data="list"
|
||||||
|
:page="queryParams.pageNo"
|
||||||
|
:limit="queryParams.pageSize"
|
||||||
|
@edit="handleEdit"
|
||||||
|
@detail="handleDetail"
|
||||||
|
@delete="handleDelete"
|
||||||
|
@confirm="handleConfirm" />
|
||||||
|
|
||||||
|
<!-- 分页组件 -->
|
||||||
|
<pagination
|
||||||
|
v-show="total > 0"
|
||||||
|
:total="total"
|
||||||
|
:page.sync="queryParams.pageNo"
|
||||||
|
:limit.sync="queryParams.pageSize"
|
||||||
|
@pagination="getList" />
|
||||||
|
|
||||||
|
<!-- 对话框(添加) -->
|
||||||
|
<base-dialog
|
||||||
|
:dialogTitle="title"
|
||||||
|
:dialogVisible="open"
|
||||||
|
width="60%"
|
||||||
|
@close="cancel"
|
||||||
|
@cancel="cancel"
|
||||||
|
@confirm="submitForm">
|
||||||
|
<DialogFormUnplanned
|
||||||
|
v-if="open"
|
||||||
|
ref="form"
|
||||||
|
v-model="form"
|
||||||
|
:disabled="mode == 'detail'" />
|
||||||
|
<el-row v-if="mode === 'detail'" slot="footer" type="flex" justify="end">
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-button size="small" class="btnTextStyle" @click="cancel">
|
||||||
|
关闭
|
||||||
|
</el-button>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</base-dialog>
|
||||||
|
|
||||||
|
<!-- 编辑 -->
|
||||||
|
<UnplannedEditDrawer
|
||||||
|
ref="unplanned"
|
||||||
|
v-if="openUnplannedDrawer"
|
||||||
|
@refreshDataList="getList"
|
||||||
|
@destroy="openUnplannedDrawer = false" />
|
||||||
|
<PlannedEditDrawer
|
||||||
|
ref="planned"
|
||||||
|
v-if="openPlannedDrawer"
|
||||||
|
@refreshDataList="getList"
|
||||||
|
@destroy="openPlannedDrawer = false" />
|
||||||
|
|
||||||
|
<RecordDetail
|
||||||
|
v-if="recordDetailVisible"
|
||||||
|
ref="recordDetailDrawer"
|
||||||
|
@closed="recordDetailVisible = false" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import moment from 'moment';
|
||||||
|
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
||||||
|
import DialogFormUnplanned from './WaitingList--add--unplanned.vue';
|
||||||
|
import UnplannedEditDrawer from './WaitingListUnplanned--edit.vue';
|
||||||
|
import PlannedEditDrawer from './WaitingListPlanned--edit.vue';
|
||||||
|
import {
|
||||||
|
deleteEqMaintainLog,
|
||||||
|
exportMaintainLogExcel,
|
||||||
|
} from '@/api/equipment/base/maintain/record';
|
||||||
|
import WaitingListTable from './WaitingListTable.vue';
|
||||||
|
import RecordDetail from './Record--detail.vue';
|
||||||
|
|
||||||
|
const timeFilter = (val) => moment(val).format('yyyy-MM-DD HH:mm:ss');
|
||||||
|
|
||||||
|
const btn = {
|
||||||
|
name: 'tableBtn',
|
||||||
|
props: ['injectData'],
|
||||||
|
data() {
|
||||||
|
return {};
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
handleClick() {
|
||||||
|
this.$emit('emitData', {
|
||||||
|
action: this.injectData.label,
|
||||||
|
value: this.injectData,
|
||||||
|
});
|
||||||
|
},
|
||||||
|
},
|
||||||
|
render: function (h) {
|
||||||
|
return (
|
||||||
|
<el-button type="text" onClick={this.handleClick}>
|
||||||
|
{this.injectData.name}
|
||||||
|
</el-button>
|
||||||
|
);
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'SpecialEquipmentMaintainRecord',
|
||||||
|
components: {
|
||||||
|
DialogFormUnplanned,
|
||||||
|
WaitingListTable,
|
||||||
|
RecordDetail,
|
||||||
|
UnplannedEditDrawer,
|
||||||
|
PlannedEditDrawer
|
||||||
|
},
|
||||||
|
mixins: [basicPageMixin],
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
recordDetailVisible: false,
|
||||||
|
searchBarKeys: [
|
||||||
|
'maintainPlanId',
|
||||||
|
'startTime',
|
||||||
|
'special',
|
||||||
|
// 'relatePlan',
|
||||||
|
// 'equipmentId',
|
||||||
|
// 'specialType',
|
||||||
|
],
|
||||||
|
tobeConfirmedIdList: [],
|
||||||
|
// tableBtn: [
|
||||||
|
// // this.$auth.hasPermi('equipment:maintain-record:update')
|
||||||
|
// // ? {
|
||||||
|
// // type: 'detail',
|
||||||
|
// // btnName: '详情',
|
||||||
|
// // }
|
||||||
|
// // : undefined,
|
||||||
|
// {
|
||||||
|
// type: 'confirm',
|
||||||
|
// btnName: '确认',
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// type: 'edit',
|
||||||
|
// btnName: '编辑',
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// type: 'delete',
|
||||||
|
// btnName: '删除',
|
||||||
|
// },
|
||||||
|
// ],
|
||||||
|
// tableProps: [
|
||||||
|
// // {
|
||||||
|
// // prop: 'createTime',
|
||||||
|
// // label: '添加时间',
|
||||||
|
// // fixed: true,
|
||||||
|
// // width: 150,
|
||||||
|
// // filter: timeFilter,
|
||||||
|
// // },
|
||||||
|
// {
|
||||||
|
// type: 'selection',
|
||||||
|
// // prop: '_selection',
|
||||||
|
// // label: '批量选择',
|
||||||
|
// width: 48,
|
||||||
|
// subcomponent: {
|
||||||
|
// props: ['injectData'],
|
||||||
|
// data() {
|
||||||
|
// return {
|
||||||
|
// outside: false,
|
||||||
|
// selected: false,
|
||||||
|
// };
|
||||||
|
// },
|
||||||
|
// watch: {
|
||||||
|
// selected(val) {
|
||||||
|
// if (!this.outside) {
|
||||||
|
// console.log('emit row-selected...');
|
||||||
|
// this.$emit('emitData', {
|
||||||
|
// action: 'row-selected',
|
||||||
|
// value: {
|
||||||
|
// row: this.injectData,
|
||||||
|
// selected: val,
|
||||||
|
// },
|
||||||
|
// });
|
||||||
|
// }
|
||||||
|
// },
|
||||||
|
// injectData: {
|
||||||
|
// deep: true,
|
||||||
|
// immediate: true,
|
||||||
|
// handler: function (val) {
|
||||||
|
// this.outside = true;
|
||||||
|
// this.selected = !!((val._selection & 0b01) != 0);
|
||||||
|
// this.$nextTick(() => {
|
||||||
|
// this.outside = false;
|
||||||
|
// });
|
||||||
|
// },
|
||||||
|
// },
|
||||||
|
// },
|
||||||
|
// render(h) {
|
||||||
|
// const enabled = 0b10 & this.injectData._selection;
|
||||||
|
// // return this.injectData?._selection ? h('h1', null, 'hello') : h('h1', null, '1');
|
||||||
|
// return (
|
||||||
|
// <div>
|
||||||
|
// <span>{this.selected}</span>
|
||||||
|
// <el-checkbox disabled={!enabled} v-model={this.selected} />
|
||||||
|
// </div>
|
||||||
|
// );
|
||||||
|
// },
|
||||||
|
// },
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// prop: 'maintainOrderNumber',
|
||||||
|
// label: '设备保养单号',
|
||||||
|
// width: 110,
|
||||||
|
// showOverflowtooltip: true,
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// prop: 'planName',
|
||||||
|
// label: '保养计划名称',
|
||||||
|
// width: 110,
|
||||||
|
// showOverflowtooltip: true,
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// prop: 'departmentName',
|
||||||
|
// label: '部门',
|
||||||
|
// width: 110,
|
||||||
|
// showOverflowtooltip: true,
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// prop: 'lineName',
|
||||||
|
// label: '产线名',
|
||||||
|
// width: 110,
|
||||||
|
// showOverflowtooltip: true,
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// prop: 'planStartTime',
|
||||||
|
// label: '计划开始时间',
|
||||||
|
// filter: timeFilter,
|
||||||
|
// minWidth: 150,
|
||||||
|
// showOverflowtooltip: true,
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// prop: 'planEndTime',
|
||||||
|
// label: '计划结束时间',
|
||||||
|
// filter: timeFilter,
|
||||||
|
// minWidth: 150,
|
||||||
|
// showOverflowtooltip: true,
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// prop: 'startTime',
|
||||||
|
// label: '实际开始时间',
|
||||||
|
// filter: timeFilter,
|
||||||
|
// minWidth: 150,
|
||||||
|
// showOverflowtooltip: true,
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// prop: 'endTime',
|
||||||
|
// label: '实际结束时间',
|
||||||
|
// filter: timeFilter,
|
||||||
|
// minWidth: 150,
|
||||||
|
// showOverflowtooltip: true,
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// prop: 'confirmDueTime',
|
||||||
|
// label: '确认截止时间',
|
||||||
|
// filter: timeFilter,
|
||||||
|
// minWidth: 150,
|
||||||
|
// showOverflowtooltip: true,
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// prop: 'relatePlan',
|
||||||
|
// label: '保养计划类型',
|
||||||
|
// minWidth: 150,
|
||||||
|
// showOverflowtooltip: true,
|
||||||
|
// filter: (val) =>
|
||||||
|
// val != null ? ['-', '计划型', '非计划型'][val] : '-',
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// prop: '_detail',
|
||||||
|
// label: '详情',
|
||||||
|
// name: '详情',
|
||||||
|
// minWidth: 60,
|
||||||
|
// subcomponent: btn,
|
||||||
|
// },
|
||||||
|
// // {
|
||||||
|
// // prop: 'equipmentCategory',
|
||||||
|
// // label: '设备大类',
|
||||||
|
// // minWidth: 100,
|
||||||
|
// // showOverflowtooltip: true,
|
||||||
|
// // filter: (val) =>
|
||||||
|
// // val != null ? ['-', '安全设备', '消防设备', '特种设备'][val] : '-',
|
||||||
|
// // },
|
||||||
|
// // {
|
||||||
|
// // prop: 'equipmentName',
|
||||||
|
// // label: '设备名称',
|
||||||
|
// // minWidth: 100,
|
||||||
|
// // showOverflowtooltip: true,
|
||||||
|
// // },
|
||||||
|
// // {
|
||||||
|
// // prop: 'maintainWorker',
|
||||||
|
// // label: '保养人员',
|
||||||
|
// // minWidth: 100,
|
||||||
|
// // showOverflowtooltip: true,
|
||||||
|
// // },
|
||||||
|
// // {
|
||||||
|
// // prop: 'relatePlan',
|
||||||
|
// // label: '是否计划保养',
|
||||||
|
// // width: 120,
|
||||||
|
// // filter: (v) => (v != null ? ['', '是', '否'][v] : ''),
|
||||||
|
// // },
|
||||||
|
// // {
|
||||||
|
// // prop: 'planName',
|
||||||
|
// // label: '保养计划名称',
|
||||||
|
// // minWidth: 120,
|
||||||
|
// // showOverflowtooltip: true,
|
||||||
|
// // },
|
||||||
|
// // {
|
||||||
|
// // prop: 'maintainDuration',
|
||||||
|
// // label: '计划保养用时(h)',
|
||||||
|
// // minWidth: 130,
|
||||||
|
// // showOverflowtooltip: true,
|
||||||
|
// // },
|
||||||
|
// // { prop: 'timeUsed', label: '实际保养用时(h)', minWidth: 130 },
|
||||||
|
// // {
|
||||||
|
// // prop: 'remark',
|
||||||
|
// // label: '备注',
|
||||||
|
// // minWidth: 100,
|
||||||
|
// // showOverflowtooltip: true,
|
||||||
|
// // },
|
||||||
|
// ],
|
||||||
|
searchBarFormConfig: [
|
||||||
|
// {
|
||||||
|
// type: 'select',
|
||||||
|
// label: '设备大类',
|
||||||
|
// placeholder: '请选择设备大类',
|
||||||
|
// param: 'specialType',
|
||||||
|
// onchange: true,
|
||||||
|
// selectOptions: [
|
||||||
|
// { id: 1, name: '安全设备' },
|
||||||
|
// { id: 2, name: '消防设备' },
|
||||||
|
// { id: 3, name: '特种设备' },
|
||||||
|
// ],
|
||||||
|
// filterable: true,
|
||||||
|
// defaultSelect: null
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// type: 'select',
|
||||||
|
// label: '设备',
|
||||||
|
// placeholder: '请选择设备',
|
||||||
|
// param: 'equipmentId',
|
||||||
|
// defaultSelect: null
|
||||||
|
// },
|
||||||
|
{
|
||||||
|
type: 'select',
|
||||||
|
label: '保养计划名称',
|
||||||
|
placeholder: '请选择保养计划名称',
|
||||||
|
param: 'maintainPlanId',
|
||||||
|
defaultSelect: null,
|
||||||
|
},
|
||||||
|
// 开始结束时间
|
||||||
|
{
|
||||||
|
type: 'datePicker',
|
||||||
|
label: '实际开始时间',
|
||||||
|
dateType: 'daterange', // datetimerange
|
||||||
|
format: 'yyyy-MM-dd',
|
||||||
|
valueFormat: 'yyyy-MM-dd HH:mm:ss',
|
||||||
|
rangeSeparator: '-',
|
||||||
|
startPlaceholder: '开始日期',
|
||||||
|
endPlaceholder: '结束日期',
|
||||||
|
defaultTime: ['00:00:00', '23:59:59'],
|
||||||
|
param: 'startTime',
|
||||||
|
defaultSelect: null,
|
||||||
|
// width: 350,
|
||||||
|
},
|
||||||
|
// {
|
||||||
|
// type: 'select',
|
||||||
|
// label: '是否计划保养',
|
||||||
|
// selectOptions: [
|
||||||
|
// { name: '是', id: 1 },
|
||||||
|
// { name: '否', id: 2 },
|
||||||
|
// ],
|
||||||
|
// defaultSelect: null,
|
||||||
|
// param: 'relatePlan',
|
||||||
|
// },
|
||||||
|
{
|
||||||
|
type: 'button',
|
||||||
|
btnName: '查询',
|
||||||
|
name: 'search',
|
||||||
|
color: 'primary',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'separate',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'button',
|
||||||
|
btnName: '新增',
|
||||||
|
name: 'add',
|
||||||
|
plain: true,
|
||||||
|
color: 'success',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'button',
|
||||||
|
btnName: '批量确认',
|
||||||
|
name: 'batchConfirm',
|
||||||
|
color: 'primary',
|
||||||
|
plain: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: this.$auth.hasPermi('equipment:maintain-record:export')
|
||||||
|
? 'button'
|
||||||
|
: '',
|
||||||
|
btnName: '导出',
|
||||||
|
name: 'export',
|
||||||
|
plain: true,
|
||||||
|
color: 'primary',
|
||||||
|
},
|
||||||
|
// {
|
||||||
|
// type: this.$auth.hasPermi('equipment:maintain-record:create')
|
||||||
|
// ? 'button'
|
||||||
|
// : '',
|
||||||
|
// btnName: '新增',
|
||||||
|
// name: 'add',
|
||||||
|
// plain: true,
|
||||||
|
// color: 'success',
|
||||||
|
// },
|
||||||
|
],
|
||||||
|
// 是否显示弹出层
|
||||||
|
open: false,
|
||||||
|
// 查询参数
|
||||||
|
queryParams: {
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
maintainPlanId: null,
|
||||||
|
startTime: null,
|
||||||
|
special: true,
|
||||||
|
confirmed: false,
|
||||||
|
},
|
||||||
|
// 表单参数
|
||||||
|
form: {},
|
||||||
|
basePath: '/base/equipment-maintain-log',
|
||||||
|
mode: null,
|
||||||
|
allSpecialEquipments: [],
|
||||||
|
openPlannedDrawer: false,
|
||||||
|
openUnplannedDrawer: false,
|
||||||
|
openPlannedDrawer: false,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
watch: {
|
||||||
|
tobeConfirmedIdList: {
|
||||||
|
handler(val) {
|
||||||
|
if (val.length == this.list.length) {
|
||||||
|
this.$refs['table'].toggleAllSelection();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
this.initSearchBar();
|
||||||
|
// if (this.$route.query) {
|
||||||
|
// this.queryParams.specialType =
|
||||||
|
// this.$route.query?.specialType ?? undefined;
|
||||||
|
// this.queryParams.equipmentId =
|
||||||
|
// this.$route.query?.equipmentId ?? undefined;
|
||||||
|
// this.queryParams.maintainPlanId =
|
||||||
|
// this.$route.query?.maintainPlanId ?? undefined;
|
||||||
|
// this.queryParams.relatePlan = this.$route.query?.relatePlan ?? undefined;
|
||||||
|
// this.queryParams.startTime = this.$route.query?.createTime ?? undefined;
|
||||||
|
// this.searchBarFormConfig[0].defaultSelect =
|
||||||
|
// this.$route.query.specialType ?? undefined;
|
||||||
|
// this.searchBarFormConfig[1].defaultSelect =
|
||||||
|
// this.$route.query.equipmentId ?? undefined;
|
||||||
|
// this.searchBarFormConfig[2].defaultSelect =
|
||||||
|
// this.$route.query.maintainPlanId ?? undefined;
|
||||||
|
// this.searchBarFormConfig[3].defaultSelect =
|
||||||
|
// this.$route.query?.createTime ?? undefined;
|
||||||
|
// this.searchBarFormConfig[4].defaultSelect =
|
||||||
|
// Number(this.$route.query.relatePlan) ?? undefined;
|
||||||
|
// }
|
||||||
|
this.getList();
|
||||||
|
// if (this.$route.query.addRecord) {
|
||||||
|
// this.handleAdd();
|
||||||
|
// }
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
/** 批量确认 */
|
||||||
|
async searchBarClicked(btn) {
|
||||||
|
switch (btn.btnName) {
|
||||||
|
case 'batchConfirm':
|
||||||
|
if (this.$refs['waiting-list-table'].selectedPlan.length == 0) {
|
||||||
|
this.$message.warning('请选择待确认的设备保养记录');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const res = await this.$axios({
|
||||||
|
url: '/base/equipment-maintain-log/confirm',
|
||||||
|
method: 'put',
|
||||||
|
data: this.$refs['waiting-list-table'].selectedPlan.map(
|
||||||
|
(item) => item.id
|
||||||
|
),
|
||||||
|
});
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.$message.success('确认成功');
|
||||||
|
this.getList();
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
handleSelectionChange(list) {
|
||||||
|
if (this.tobeConfirmedIdList.length) {
|
||||||
|
this.tobeConfirmedIdList = [];
|
||||||
|
this.list.forEach((item) => {
|
||||||
|
this.handleEmitFun({
|
||||||
|
action: 'row-selected',
|
||||||
|
value: { row: item, selected: false },
|
||||||
|
});
|
||||||
|
});
|
||||||
|
console.log(
|
||||||
|
'清空选择列表',
|
||||||
|
this.list.map((item) => item._selection)
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
this.tobeConfirmedIdList = list.map((item) => item.id);
|
||||||
|
this.list.forEach((item) => {
|
||||||
|
this.handleEmitFun({
|
||||||
|
action: 'row-selected',
|
||||||
|
value: { row: item, selected: true },
|
||||||
|
});
|
||||||
|
});
|
||||||
|
console.log(
|
||||||
|
'全选',
|
||||||
|
this.list.map((item) => item._selection)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
handleEmitFun({ action, value }) {
|
||||||
|
switch (action) {
|
||||||
|
case '详情':
|
||||||
|
this.recordDetailVisible = true;
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs.recordDetailDrawer.show({
|
||||||
|
id: value.id,
|
||||||
|
planMaintainWorker: value.planMaintainWorker,
|
||||||
|
maintainWorker: value.maintainWorker,
|
||||||
|
});
|
||||||
|
});
|
||||||
|
break;
|
||||||
|
case 'row-selected':
|
||||||
|
if (value.selected) {
|
||||||
|
this.tobeConfirmedIdList.push(value.row.id);
|
||||||
|
value.row._selection = 0b11;
|
||||||
|
} else {
|
||||||
|
const index = this.tobeConfirmedIdList.indexOf(value.row.id);
|
||||||
|
if (index != -1) {
|
||||||
|
this.tobeConfirmedIdList.splice(index, 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
console.log('tobeConfirmedIdList', this.tobeConfirmedIdList);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
handleSearchBarChange({ param, value }) {
|
||||||
|
if ('specialType' === param) {
|
||||||
|
if (!value) {
|
||||||
|
this.setSearchBarEquipmentList(this.allSpecialEquipments);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this.setSearchBarEquipmentList(
|
||||||
|
this.allSpecialEquipments.filter((item) => item.specialType == value)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
initSearchBar() {
|
||||||
|
// this.http('/base/core-equipment/listAll', 'get').then(({ data }) => {
|
||||||
|
// this.allSpecialEquipments = data.filter((item) => item.special);
|
||||||
|
// this.setSearchBarEquipmentList(data.filter((item) => item.special));
|
||||||
|
// });
|
||||||
|
this.http('/base/equipment-maintain-plan/page', 'get', {
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 100,
|
||||||
|
special: true,
|
||||||
|
}).then(({ data }) => {
|
||||||
|
this.$set(
|
||||||
|
this.searchBarFormConfig[0],
|
||||||
|
// this.searchBarFormConfig[2],
|
||||||
|
'selectOptions',
|
||||||
|
(data?.list || []).map((item) => ({
|
||||||
|
name: item.name,
|
||||||
|
id: item.id,
|
||||||
|
}))
|
||||||
|
);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
/** 查询列表 */
|
||||||
|
getList() {
|
||||||
|
this.loading = true;
|
||||||
|
// 执行查询
|
||||||
|
this.recv({
|
||||||
|
...this.queryParams,
|
||||||
|
special: true,
|
||||||
|
// relatePlan: 2,
|
||||||
|
confirmed: false,
|
||||||
|
}).then((response) => {
|
||||||
|
this.list = response.data.list;
|
||||||
|
this.total = response.data.total;
|
||||||
|
this.loading = false;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
/** 取消按钮 */
|
||||||
|
cancel() {
|
||||||
|
this.open = false;
|
||||||
|
this.mode = null;
|
||||||
|
this.reset();
|
||||||
|
},
|
||||||
|
/** 表单重置 */
|
||||||
|
reset() {
|
||||||
|
this.form = {
|
||||||
|
id: null,
|
||||||
|
relatePlan: null,
|
||||||
|
maintainWorker: [],
|
||||||
|
maintainOrderNumber: null,
|
||||||
|
departmentId: null,
|
||||||
|
lineId: null,
|
||||||
|
startTime: null,
|
||||||
|
endTime: null,
|
||||||
|
planStartTime: null,
|
||||||
|
planEndTime: null,
|
||||||
|
confirmed: false,
|
||||||
|
remark: null,
|
||||||
|
special: false,
|
||||||
|
};
|
||||||
|
this.resetForm('form');
|
||||||
|
},
|
||||||
|
/** 搜索按钮操作 */
|
||||||
|
handleQuery() {
|
||||||
|
this.queryParams.pageNo = 1;
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
/** 重置按钮操作 */
|
||||||
|
resetQuery() {
|
||||||
|
this.resetForm('queryForm');
|
||||||
|
this.handleQuery();
|
||||||
|
},
|
||||||
|
/** 新增按钮操作 */
|
||||||
|
handleAdd() {
|
||||||
|
this.reset();
|
||||||
|
this.open = true;
|
||||||
|
this.title = '添加待确认保养记录';
|
||||||
|
},
|
||||||
|
|
||||||
|
getConfirmed() {
|
||||||
|
return this.$confirm('是否直接确认保养记录', '提示', {
|
||||||
|
confirmButtonText: '确定',
|
||||||
|
cancelButtonText: '取消',
|
||||||
|
type: 'warning',
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
/** 提交按钮 */
|
||||||
|
submitForm() {
|
||||||
|
this.$refs['form'].validate((valid) => {
|
||||||
|
if (!valid) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// 修改的提交
|
||||||
|
if (this.form.id != null) {
|
||||||
|
this.put({
|
||||||
|
...this.form,
|
||||||
|
maintainWorker: this.form.maintainWorker.join(','),
|
||||||
|
special: true,
|
||||||
|
relatePlan: 2,
|
||||||
|
}).then((response) => {
|
||||||
|
this.$modal.msgSuccess('修改成功');
|
||||||
|
this.open = false;
|
||||||
|
this.getList();
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 添加的提交
|
||||||
|
this.getConfirmed()
|
||||||
|
.then((confirmed) => {
|
||||||
|
this.post({
|
||||||
|
...this.form,
|
||||||
|
maintainWorker: this.form.maintainWorker.join(','),
|
||||||
|
special: true,
|
||||||
|
relatePlan: 2,
|
||||||
|
confirmed: true,
|
||||||
|
}).then((response) => {
|
||||||
|
this.$modal.msgSuccess('新增成功');
|
||||||
|
this.open = false;
|
||||||
|
this.getList();
|
||||||
|
});
|
||||||
|
})
|
||||||
|
.catch((err) => {
|
||||||
|
this.post({
|
||||||
|
...this.form,
|
||||||
|
maintainWorker: this.form.maintainWorker.join(','),
|
||||||
|
special: true,
|
||||||
|
relatePlan: 2,
|
||||||
|
confirmed: false,
|
||||||
|
}).then((response) => {
|
||||||
|
this.$modal.msgSuccess('新增成功');
|
||||||
|
this.open = false;
|
||||||
|
this.getList();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
},
|
||||||
|
/** 确认 */
|
||||||
|
async handleConfirm(row) {
|
||||||
|
const res = await this.$axios({
|
||||||
|
url: '/base/equipment-maintain-log/confirm',
|
||||||
|
method: 'put',
|
||||||
|
data: [row.id],
|
||||||
|
});
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.$message.success('确认成功');
|
||||||
|
this.getList();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
/** 编辑 */
|
||||||
|
async handleEdit(row) {
|
||||||
|
this.reset();
|
||||||
|
if (row.relatePlan == 1) {
|
||||||
|
// 计划型
|
||||||
|
// const res = await this.info({ id: row.id });
|
||||||
|
// this.form = res.data;
|
||||||
|
// this.form.maintainWorker = res.data.maintainWorker.split(',');
|
||||||
|
this.openPlannedDrawer = true;
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs.planned.init(row);
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
this.openUnplannedDrawer = true;
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs.unplanned.init(row);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
},
|
||||||
|
/** 删除按钮操作 */
|
||||||
|
handleDelete(row) {
|
||||||
|
this.$modal
|
||||||
|
.confirm(
|
||||||
|
'是否确认删除设备保养单号为"' + row.maintainOrderNumber + '"的数据项?'
|
||||||
|
)
|
||||||
|
.then(() => {
|
||||||
|
return this.$axios({
|
||||||
|
url: '/base/equipment-maintain-log/delete?id=' + row.id,
|
||||||
|
method: 'delete',
|
||||||
|
});
|
||||||
|
})
|
||||||
|
.then(() => {
|
||||||
|
this.getList();
|
||||||
|
this.$modal.msgSuccess('删除成功');
|
||||||
|
})
|
||||||
|
.catch(console.error);
|
||||||
|
},
|
||||||
|
handleDetail(row) {
|
||||||
|
this.recordDetailVisible = true;
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs.recordDetailDrawer.show({
|
||||||
|
id: row.id,
|
||||||
|
planMaintainWorker: row.planMaintainWorker,
|
||||||
|
maintainWorker: row.maintainWorker,
|
||||||
|
});
|
||||||
|
});
|
||||||
|
},
|
||||||
|
/** 导出按钮操作 */
|
||||||
|
handleExport() {
|
||||||
|
// 处理查询参数
|
||||||
|
let params = { ...this.queryParams };
|
||||||
|
params.pageNo = undefined;
|
||||||
|
params.pageSize = undefined;
|
||||||
|
this.$modal
|
||||||
|
.confirm('是否确认导出所有保养记录?')
|
||||||
|
.then(() => {
|
||||||
|
this.exportLoading = true;
|
||||||
|
return exportMaintainLogExcel(params);
|
||||||
|
})
|
||||||
|
.then((response) => {
|
||||||
|
this.$download.excel(response, '设备保养记录.xls');
|
||||||
|
this.exportLoading = false;
|
||||||
|
})
|
||||||
|
.catch(() => {});
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
.SpecialEquipmentMaintainRecord {
|
||||||
|
}
|
||||||
|
</style>
|
758
src/views/specialEquipment/maintain/WaitingListPlanned--edit.vue
Normal file
758
src/views/specialEquipment/maintain/WaitingListPlanned--edit.vue
Normal file
@ -0,0 +1,758 @@
|
|||||||
|
<!--
|
||||||
|
filename: WaitingListUnplanned--edit.vue
|
||||||
|
author: liubin
|
||||||
|
date: 2023-08-22 14:38:56
|
||||||
|
description:
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<el-drawer
|
||||||
|
:visible="visible"
|
||||||
|
:show-close="false"
|
||||||
|
:wrapper-closable="false"
|
||||||
|
class="drawer"
|
||||||
|
custom-class="mes-drawer"
|
||||||
|
size="60%"
|
||||||
|
@closed="$emit('destroy')">
|
||||||
|
<SmallTitle slot="title">编辑</SmallTitle>
|
||||||
|
|
||||||
|
<div class="drawer-body flex">
|
||||||
|
<div class="drawer-body__content">
|
||||||
|
<div class="form-part" style="margin-bottom: 32px">
|
||||||
|
<!-- <el-skeleton v-if="!showForm" animated /> -->
|
||||||
|
<el-form
|
||||||
|
class="equipment-info-form"
|
||||||
|
ref="form"
|
||||||
|
:model="form"
|
||||||
|
label-width="200px"
|
||||||
|
label-position="top"
|
||||||
|
v-loading="formLoading">
|
||||||
|
<el-row :gutter="20">
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="保养计划单号" prop="maintainOrderNumber">
|
||||||
|
<!-- :rules="[
|
||||||
|
{
|
||||||
|
required: true,
|
||||||
|
message: '请输入保养计划单号',
|
||||||
|
trigger: 'blur',
|
||||||
|
},
|
||||||
|
]" -->
|
||||||
|
<el-input
|
||||||
|
v-model="form.maintainOrderNumber"
|
||||||
|
disabled
|
||||||
|
:placeholder="`请输入保养计划单号`" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="保养计划名称" prop="planName">
|
||||||
|
<el-input
|
||||||
|
v-model="form.planName"
|
||||||
|
placeholder="请输入保养计划名称"
|
||||||
|
disabled />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="部门" prop="departmentId">
|
||||||
|
<!-- :rules="[
|
||||||
|
{ required: true, message: '请选择部门', trigger: 'blur' },
|
||||||
|
]" -->
|
||||||
|
<el-select
|
||||||
|
v-model="form.departmentId"
|
||||||
|
:placeholder="`请选择部门`"
|
||||||
|
clearable
|
||||||
|
disabled
|
||||||
|
filterable>
|
||||||
|
<el-option
|
||||||
|
v-for="opt in departmentOptions"
|
||||||
|
:key="opt.value"
|
||||||
|
:label="opt.label"
|
||||||
|
:value="opt.value" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="产线" prop="lineId">
|
||||||
|
<!-- :rules="[
|
||||||
|
{ required: true, message: '请选择产线', trigger: 'blur' },
|
||||||
|
]" -->
|
||||||
|
<el-select
|
||||||
|
v-model="form.lineId"
|
||||||
|
:placeholder="`请选择产线`"
|
||||||
|
disabled
|
||||||
|
clearable
|
||||||
|
filterable>
|
||||||
|
<el-option
|
||||||
|
v-for="opt in lineOptions"
|
||||||
|
:key="opt.value"
|
||||||
|
:label="opt.label"
|
||||||
|
:value="opt.value" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="计划保养人员" prop="maintainer">
|
||||||
|
<el-select
|
||||||
|
v-model="form.planMaintainWorker"
|
||||||
|
placeholder="请选择计划保养人员"
|
||||||
|
disabled
|
||||||
|
clearable
|
||||||
|
filterable />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="计划开始时间" prop="planStartTime">
|
||||||
|
<el-date-picker
|
||||||
|
v-model="form.planStartTime"
|
||||||
|
type="datetime"
|
||||||
|
disabled
|
||||||
|
placeholder="请选择计划开始时间"
|
||||||
|
value-format="timestamp"></el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="计划结束时间" prop="planEndTime">
|
||||||
|
<el-date-picker
|
||||||
|
v-model="form.planEndTime"
|
||||||
|
type="datetime"
|
||||||
|
disabled
|
||||||
|
placeholder="请选择计划结束时间"
|
||||||
|
value-format="timestamp"></el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item
|
||||||
|
label="实际开始时间"
|
||||||
|
prop="startTime"
|
||||||
|
:rules="[
|
||||||
|
{
|
||||||
|
required: true,
|
||||||
|
message: '请选择实际开始时间',
|
||||||
|
trigger: 'blur',
|
||||||
|
},
|
||||||
|
]">
|
||||||
|
<el-date-picker
|
||||||
|
v-model="form.startTime"
|
||||||
|
type="datetime"
|
||||||
|
placeholder="请选择实际开始时间"
|
||||||
|
value-format="timestamp"></el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item
|
||||||
|
label="实际结束时间"
|
||||||
|
prop="endTime"
|
||||||
|
:rules="[
|
||||||
|
{
|
||||||
|
required: true,
|
||||||
|
message: '请选择实际结束时间',
|
||||||
|
trigger: 'blur',
|
||||||
|
},
|
||||||
|
]">
|
||||||
|
<el-date-picker
|
||||||
|
v-model="form.endTime"
|
||||||
|
type="datetime"
|
||||||
|
placeholder="请选择实际结束时间"
|
||||||
|
value-format="timestamp"></el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item
|
||||||
|
label="实际保养人员"
|
||||||
|
prop="maintainWorker"
|
||||||
|
:rules="[
|
||||||
|
{
|
||||||
|
required: true,
|
||||||
|
message: '请选择实际保养人员',
|
||||||
|
trigger: 'blur',
|
||||||
|
},
|
||||||
|
]">
|
||||||
|
<el-select
|
||||||
|
v-model="form.maintainWorker"
|
||||||
|
:placeholder="`请选择实际保养人员`"
|
||||||
|
multiple
|
||||||
|
clearable
|
||||||
|
filterable>
|
||||||
|
<el-option
|
||||||
|
v-for="opt in maintainerOptions"
|
||||||
|
:key="opt.value"
|
||||||
|
:label="opt.label"
|
||||||
|
:value="opt.value" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item label="备注" prop="remark">
|
||||||
|
<el-input v-model="form.remark" :placeholder="`请输入备注`" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-form>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<SmallTitle>保养内容</SmallTitle>
|
||||||
|
|
||||||
|
<div style="margin-top: 12px; position: relative">
|
||||||
|
<SearchBar
|
||||||
|
:formConfigs="searchBarFormConfig"
|
||||||
|
ref="attr-search-bar"
|
||||||
|
@headBtnClick="handleSearchBarBtnClick" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div style="margin-top: 12px; position: relative">
|
||||||
|
<div style="position: absolute; top: -40px; right: 0">
|
||||||
|
<el-button @click="handleAddAttr" type="text">
|
||||||
|
<i class="el-icon-plus"></i>
|
||||||
|
添加属性
|
||||||
|
</el-button>
|
||||||
|
</div>
|
||||||
|
<base-table
|
||||||
|
v-loading="attrListLoading"
|
||||||
|
:table-props="attrTableProps"
|
||||||
|
:page="attrQuery?.params.pageNo || 1"
|
||||||
|
:limit="attrQuery?.params.pageSize || 10"
|
||||||
|
:table-data="attrList"
|
||||||
|
@emitFun="handleEmitFun">
|
||||||
|
<method-btn
|
||||||
|
slot="handleBtn"
|
||||||
|
label="操作"
|
||||||
|
:method-list="tableBtn"
|
||||||
|
@clickBtn="handleTableBtnClick" />
|
||||||
|
</base-table>
|
||||||
|
|
||||||
|
<!-- 分页组件 -->
|
||||||
|
<pagination
|
||||||
|
v-show="attrTotal > 0"
|
||||||
|
:total="attrTotal"
|
||||||
|
:page.sync="attrQuery.params.pageNo"
|
||||||
|
:limit.sync="attrQuery.params.pageSize"
|
||||||
|
@pagination="getAttrList" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="drawer-body__footer">
|
||||||
|
<el-button style="" @click="handleCancel">取消</el-button>
|
||||||
|
<el-button type="primary" @click="handleConfirm">保存</el-button>
|
||||||
|
<!-- sections的第二项必须是 属性列表 -->
|
||||||
|
<!-- <el-button
|
||||||
|
v-if="sections[1].allowAdd"
|
||||||
|
type="primary"
|
||||||
|
@click="handleAddAttr">
|
||||||
|
添加属性
|
||||||
|
</el-button> -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- 属性对话框 -->
|
||||||
|
<base-dialog
|
||||||
|
:dialogTitle="attrTitle"
|
||||||
|
:dialogVisible="attrFormVisible"
|
||||||
|
width="35%"
|
||||||
|
:append-to-body="true"
|
||||||
|
custom-class="baseDialog"
|
||||||
|
@close="closeAttrForm"
|
||||||
|
@cancel="closeAttrForm"
|
||||||
|
@confirm="submitAttrForm">
|
||||||
|
<DialogForm
|
||||||
|
v-if="attrFormVisible"
|
||||||
|
ref="attrForm"
|
||||||
|
v-model="attrForm"
|
||||||
|
:rows="attrRows" />
|
||||||
|
</base-dialog>
|
||||||
|
</el-drawer>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import DialogForm from '../../../components/DialogForm/index.vue';
|
||||||
|
|
||||||
|
const SmallTitle = {
|
||||||
|
name: 'SmallTitle',
|
||||||
|
props: ['size'],
|
||||||
|
components: {},
|
||||||
|
data() {
|
||||||
|
return {};
|
||||||
|
},
|
||||||
|
methods: {},
|
||||||
|
render: function (h) {
|
||||||
|
return h(
|
||||||
|
'span',
|
||||||
|
{
|
||||||
|
class: 'small-title',
|
||||||
|
style: {
|
||||||
|
fontSize: '18px',
|
||||||
|
lineHeight:
|
||||||
|
this.size == 'lg' ? '24px' : this.size == 'sm' ? '18px' : '20px',
|
||||||
|
fontWeight: 500,
|
||||||
|
fontFamily: '微软雅黑, Microsoft YaHei, Arial, Helvetica, sans-serif',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
this.$slots.default
|
||||||
|
);
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: { SmallTitle, DialogForm },
|
||||||
|
props: ['dataId'], // dataId 作为一个通用的存放id的字段
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
visible: false,
|
||||||
|
btnLoading: false,
|
||||||
|
form: {},
|
||||||
|
formLoading: false,
|
||||||
|
lineList: [],
|
||||||
|
maintainerList: [],
|
||||||
|
departmentList: [],
|
||||||
|
attrTableProps: [
|
||||||
|
{
|
||||||
|
prop: 'equipmentName',
|
||||||
|
label: '设备名称',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'program',
|
||||||
|
label: '保养项目',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'maintenanceDes',
|
||||||
|
label: '保养描述',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
attrList: [],
|
||||||
|
attrTotal: 0,
|
||||||
|
attrTitle: '',
|
||||||
|
attrForm: {
|
||||||
|
id: null,
|
||||||
|
logId: null,
|
||||||
|
program: null,
|
||||||
|
maintenanceDes: null,
|
||||||
|
remark: null,
|
||||||
|
},
|
||||||
|
attrFormVisible: false,
|
||||||
|
attrRows: [
|
||||||
|
[
|
||||||
|
{
|
||||||
|
select: true,
|
||||||
|
label: '设备名称',
|
||||||
|
prop: 'equipmentId',
|
||||||
|
url: '/base/core-equipment/page?pageNo=1&pageSize=100&special=true',
|
||||||
|
// method: 'post',
|
||||||
|
// queryParams: {
|
||||||
|
// pageNo: 1,
|
||||||
|
// pageSize: 100,
|
||||||
|
// special: true,
|
||||||
|
// },
|
||||||
|
rules: [
|
||||||
|
{ required: true, message: '设备不能为空', trigger: 'blur' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
input: true,
|
||||||
|
label: '保养项目',
|
||||||
|
prop: 'program',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
input: true,
|
||||||
|
label: '保养描述',
|
||||||
|
prop: 'maintenanceDes',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
input: true,
|
||||||
|
label: '备注',
|
||||||
|
prop: 'remark',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
],
|
||||||
|
attrQuery: {
|
||||||
|
params: {
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
equipmentName: null,
|
||||||
|
},
|
||||||
|
}, // 属性列表的请求
|
||||||
|
searchBarFormConfig: [
|
||||||
|
{
|
||||||
|
type: 'input',
|
||||||
|
label: '设备',
|
||||||
|
placeholder: '请输入设备名称',
|
||||||
|
param: 'equipmentName',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'button',
|
||||||
|
btnName: '查询',
|
||||||
|
name: 'search',
|
||||||
|
color: 'primary',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
attrFormSubmitting: false,
|
||||||
|
attrListLoading: false,
|
||||||
|
// syncFileListFlag: null,
|
||||||
|
tableBtn: [
|
||||||
|
{
|
||||||
|
type: 'edit',
|
||||||
|
btnName: '编辑',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'delete',
|
||||||
|
btnName: '删除',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
row: null,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
departmentOptions() {
|
||||||
|
return (this.departmentList || []).map((item) => ({
|
||||||
|
id: item.id,
|
||||||
|
label: item.name,
|
||||||
|
value: item.id,
|
||||||
|
}));
|
||||||
|
},
|
||||||
|
lineOptions() {
|
||||||
|
return (this.lineList || []).map((item) => ({
|
||||||
|
id: item.id,
|
||||||
|
label: item.name,
|
||||||
|
value: item.id,
|
||||||
|
}));
|
||||||
|
},
|
||||||
|
maintainerOptions() {
|
||||||
|
return (this.maintainerList || []).map((item) => ({
|
||||||
|
id: item.id,
|
||||||
|
label: item.name,
|
||||||
|
value: item.name,
|
||||||
|
}));
|
||||||
|
},
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.getList('maintainer');
|
||||||
|
this.getList('department');
|
||||||
|
this.getList('line');
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
handleSearchBarBtnClick(btn) {
|
||||||
|
switch (btn.btnName) {
|
||||||
|
case 'search':
|
||||||
|
this.attrQuery.params.equipmentName = btn.equipmentName;
|
||||||
|
this.getAttrList();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
handleTableBtnClick({ type, data }) {
|
||||||
|
switch (type) {
|
||||||
|
case 'edit':
|
||||||
|
this.handleEditAttr(data.id);
|
||||||
|
break;
|
||||||
|
case 'delete':
|
||||||
|
this.handleDeleteAttr(data.id);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
async handleConfirm() {
|
||||||
|
this.btnLoading = true;
|
||||||
|
this.$nextTick(async () => {
|
||||||
|
const { code, data } = await this.$axios({
|
||||||
|
url: '/base/equipment-maintain-log/update',
|
||||||
|
method: 'put',
|
||||||
|
data: {
|
||||||
|
...this.form,
|
||||||
|
maintainWorker: this.form.maintainWorker.join(','),
|
||||||
|
planMaintainWorker: this.form.planMaintainWorker?.join(','),
|
||||||
|
},
|
||||||
|
});
|
||||||
|
if (code == 0) {
|
||||||
|
this.$modal.msgSuccess('更新成功');
|
||||||
|
}
|
||||||
|
this.btnLoading = false;
|
||||||
|
this.$emit('refreshDataList');
|
||||||
|
this.handleCancel();
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
handleEmitFun(val) {
|
||||||
|
console.log('handleEmitFun', val);
|
||||||
|
},
|
||||||
|
|
||||||
|
init(row) {
|
||||||
|
this.visible = true;
|
||||||
|
this.row = row;
|
||||||
|
this.getInfo(row);
|
||||||
|
this.getAttrList(row);
|
||||||
|
},
|
||||||
|
|
||||||
|
async getInfo(row) {
|
||||||
|
this.formLoading = true;
|
||||||
|
const res = await this.$axios(
|
||||||
|
'/base/equipment-maintain-log/get?id=' + row.id
|
||||||
|
);
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.form = res.data;
|
||||||
|
this.form.maintainWorker = res.data.maintainWorker.split(',');
|
||||||
|
this.form.planMaintainWorker = res.data.planMaintainWorker?.split(',');
|
||||||
|
this.formLoading = false;
|
||||||
|
}
|
||||||
|
this.formLoading = false;
|
||||||
|
},
|
||||||
|
|
||||||
|
async getAttrList(row, condition = {}) {
|
||||||
|
if (!row) row = this.row;
|
||||||
|
this.attrListLoading = true;
|
||||||
|
const res = await this.$axios({
|
||||||
|
url: '/base/equipment-maintain-log-det/page',
|
||||||
|
method: 'get',
|
||||||
|
params: {
|
||||||
|
...this.attrQuery.params,
|
||||||
|
logId: row.id,
|
||||||
|
...condition,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.attrList = res.data.list;
|
||||||
|
this.attrTotal = res.data.total;
|
||||||
|
}
|
||||||
|
this.attrListLoading = false;
|
||||||
|
},
|
||||||
|
|
||||||
|
async getList(source = 'department') {
|
||||||
|
const urls = [
|
||||||
|
'/base/core-production-line/listAll',
|
||||||
|
'/base/core-department/listAll',
|
||||||
|
'/base/core-worker/listAll',
|
||||||
|
];
|
||||||
|
let res;
|
||||||
|
switch (source) {
|
||||||
|
case 'department':
|
||||||
|
res = await this.$axios(urls[1]);
|
||||||
|
this.departmentList = res.data || [];
|
||||||
|
break;
|
||||||
|
case 'maintainer':
|
||||||
|
res = await this.$axios(urls[2]);
|
||||||
|
this.maintainerList = res.data || [];
|
||||||
|
break;
|
||||||
|
case 'line':
|
||||||
|
res = await this.$axios(urls[0]);
|
||||||
|
this.lineList = res.data || [];
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
this.formLoading = false;
|
||||||
|
},
|
||||||
|
|
||||||
|
// 保存表单
|
||||||
|
handleSave() {
|
||||||
|
this.$refs.form.validate(async (valid) => {
|
||||||
|
if (valid) {
|
||||||
|
await this.$axios({
|
||||||
|
url: '/urlupdate', // this.sections[0][isEdit ? 'urlUpdate' : 'urlCreate'],
|
||||||
|
method: 'post', // isEdit ? 'put' : 'post',
|
||||||
|
data: this.form,
|
||||||
|
});
|
||||||
|
this.$modal.msgSuccess(`${isEdit ? '更新' : '创建'}成功`);
|
||||||
|
this.visible = false;
|
||||||
|
this.$emit('refreshDataList');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
handleCancel() {
|
||||||
|
this.visible = false;
|
||||||
|
},
|
||||||
|
|
||||||
|
resetAttrform() {
|
||||||
|
this.attrForm = {
|
||||||
|
id: null,
|
||||||
|
logId: this.row.id,
|
||||||
|
maintenanceDes: '',
|
||||||
|
program: null,
|
||||||
|
remark: null,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
|
// 新增属性
|
||||||
|
handleAddAttr() {
|
||||||
|
if (!this.row.id) return this.$message.error('请先选中保养记录');
|
||||||
|
this.resetAttrform();
|
||||||
|
this.attrTitle = '添加设备属性';
|
||||||
|
this.attrFormVisible = true;
|
||||||
|
},
|
||||||
|
|
||||||
|
// 编辑属性
|
||||||
|
async handleEditAttr(attrId) {
|
||||||
|
const res = await this.$axios({
|
||||||
|
url: '/base/equipment-maintain-log-det/get',
|
||||||
|
method: 'get',
|
||||||
|
params: { id: attrId },
|
||||||
|
});
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.attrForm = res.data;
|
||||||
|
this.attrTitle = '编辑设备属性';
|
||||||
|
this.attrFormVisible = true;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// 删除属性
|
||||||
|
handleDeleteAttr(attrId) {
|
||||||
|
this.$confirm('确定删除该保养内容?', '提示', {
|
||||||
|
confirmButtonText: '确定',
|
||||||
|
cancelButtonText: '取消',
|
||||||
|
type: 'warning',
|
||||||
|
})
|
||||||
|
.then(async () => {
|
||||||
|
const res = await this.$axios({
|
||||||
|
url: '/base/equipment-maintain-log-det/delete?id=' + attrId,
|
||||||
|
method: 'delete',
|
||||||
|
});
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.$message({
|
||||||
|
message: '删除成功',
|
||||||
|
type: 'success',
|
||||||
|
duration: 1500,
|
||||||
|
onClose: () => {
|
||||||
|
this.getAttrList();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(() => {});
|
||||||
|
},
|
||||||
|
|
||||||
|
// 提交属性表
|
||||||
|
submitAttrForm() {
|
||||||
|
this.$refs['attrForm'].validate(async (valid) => {
|
||||||
|
if (!valid) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
const isEdit = this.attrForm.id != null;
|
||||||
|
this.attrFormSubmitting = true;
|
||||||
|
const res = await this.$axios({
|
||||||
|
url: isEdit
|
||||||
|
? '/base/equipment-maintain-log-det/update'
|
||||||
|
: '/base/equipment-maintain-log-det/create',
|
||||||
|
method: isEdit ? 'put' : 'post',
|
||||||
|
data: this.attrForm,
|
||||||
|
});
|
||||||
|
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.closeAttrForm();
|
||||||
|
this.$message({
|
||||||
|
message: `${isEdit ? '更新' : '创建'}成功`,
|
||||||
|
type: 'success',
|
||||||
|
duration: 1500,
|
||||||
|
onClose: () => {
|
||||||
|
this.getAttrList();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
this.attrFormSubmitting = false;
|
||||||
|
} catch (err) {
|
||||||
|
this.$message({
|
||||||
|
message: err,
|
||||||
|
type: 'error',
|
||||||
|
duration: 1500,
|
||||||
|
});
|
||||||
|
this.attrFormSubmitting = false;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
closeAttrForm() {
|
||||||
|
this.attrFormVisible = false;
|
||||||
|
},
|
||||||
|
|
||||||
|
handleClick(raw) {
|
||||||
|
if (raw.type === 'delete') {
|
||||||
|
this.$confirm(
|
||||||
|
`确定对${
|
||||||
|
raw.data.name
|
||||||
|
? '[名称=' + raw.data.name + ']'
|
||||||
|
: '[序号=' + raw.data._pageIndex + ']'
|
||||||
|
}进行删除操作?`,
|
||||||
|
'提示',
|
||||||
|
{
|
||||||
|
confirmButtonText: '确定',
|
||||||
|
cancelButtonText: '取消',
|
||||||
|
type: 'warning',
|
||||||
|
}
|
||||||
|
)
|
||||||
|
.then(() => {
|
||||||
|
deleteProductAttr(raw.data.id).then(({ data }) => {
|
||||||
|
this.$message({
|
||||||
|
message: '操作成功',
|
||||||
|
type: 'success',
|
||||||
|
duration: 1500,
|
||||||
|
onClose: () => {
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
});
|
||||||
|
})
|
||||||
|
.catch(() => {});
|
||||||
|
} else {
|
||||||
|
this.addNew(raw.data.id);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.drawer >>> .el-drawer {
|
||||||
|
border-radius: 8px 0 0 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer >>> .el-date-editor,
|
||||||
|
.drawer >>> .el-select {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer >>> .el-drawer__header {
|
||||||
|
margin: 0;
|
||||||
|
padding: 32px 32px 24px;
|
||||||
|
border-bottom: 1px solid #dcdfe6;
|
||||||
|
margin-bottom: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.small-title::before {
|
||||||
|
content: '';
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: top;
|
||||||
|
width: 4px;
|
||||||
|
height: 22px;
|
||||||
|
border-radius: 1px;
|
||||||
|
margin-right: 8px;
|
||||||
|
background-color: #0b58ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer-body {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer-body__content {
|
||||||
|
flex: 1;
|
||||||
|
/* background: #eee; */
|
||||||
|
padding: 20px 30px;
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer-body__footer {
|
||||||
|
display: flex;
|
||||||
|
justify-content: flex-end;
|
||||||
|
padding: 18px;
|
||||||
|
}
|
||||||
|
</style>
|
307
src/views/specialEquipment/maintain/WaitingListTable.vue
Normal file
307
src/views/specialEquipment/maintain/WaitingListTable.vue
Normal file
@ -0,0 +1,307 @@
|
|||||||
|
<!--
|
||||||
|
filename: WaitingListTable.vue
|
||||||
|
author: liubin
|
||||||
|
date: 2024-02-05 16:12:55
|
||||||
|
description:
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<el-table
|
||||||
|
:data="tableDataWithIndex"
|
||||||
|
:border="true"
|
||||||
|
@selection-change="handleSelectionChange"
|
||||||
|
style="width: 100%"
|
||||||
|
:header-cell-style="{
|
||||||
|
background: '#f2f4f9',
|
||||||
|
color: '#606266',
|
||||||
|
}"
|
||||||
|
class="waiting-list-table">
|
||||||
|
<el-table-column
|
||||||
|
type="selection"
|
||||||
|
:width="50"
|
||||||
|
:selectable="checkSelectable" />
|
||||||
|
<el-table-column prop="_pageIndex" width="80" align="center">
|
||||||
|
<template slot="header">
|
||||||
|
<el-popover placement="bottom-start" width="300" trigger="click">
|
||||||
|
<div class="setting-box" style="max-height: 400px; overflow-y: auto">
|
||||||
|
<el-checkbox
|
||||||
|
v-for="(item, index) in tablePropsLabelList"
|
||||||
|
:key="'cb' + index"
|
||||||
|
v-model="selectedBox[index]"
|
||||||
|
:label="item.label" />
|
||||||
|
</div>
|
||||||
|
<i slot="reference" class="el-icon-s-tools" />
|
||||||
|
</el-popover>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
v-if="selectedBox[0]"
|
||||||
|
width="128"
|
||||||
|
label="设备保养单号"
|
||||||
|
prop="maintainOrderNumber"></el-table-column>
|
||||||
|
<el-table-column v-if="selectedBox[1]" width="128" label="保养计划名称" prop="planName">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
{{ scope.row.planName || '---' }}
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column v-if="selectedBox[2]" label="部门" prop="departmentName">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
{{ scope.row.departmentName || '---' }}
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column v-if="selectedBox[3]" label="产线名" prop="lineName">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
{{ scope.row.lineName || '---' }}
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
v-if="selectedBox[4]"
|
||||||
|
width="150"
|
||||||
|
label="计划开始时间"
|
||||||
|
prop="planStartTime">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
{{ scope.row.planStartTime | timeFilter }}
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
v-if="selectedBox[5]"
|
||||||
|
width="150"
|
||||||
|
label="计划结束时间"
|
||||||
|
prop="planEndTime">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
{{ scope.row.planEndTime | timeFilter }}
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
v-if="selectedBox[6]"
|
||||||
|
width="150"
|
||||||
|
label="实际开始时间"
|
||||||
|
prop="startTime">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
{{ scope.row.startTime | timeFilter }}
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
v-if="selectedBox[7]"
|
||||||
|
width="150"
|
||||||
|
label="实际结束时间"
|
||||||
|
prop="endTime">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
{{ scope.row.endTime | timeFilter }}
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
v-if="selectedBox[8]"
|
||||||
|
width="150"
|
||||||
|
label="确认截止时间"
|
||||||
|
prop="confirmDueTime">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
{{ scope.row.confirmDueTime | timeFilter }}
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
v-if="selectedBox[9]"
|
||||||
|
width="150"
|
||||||
|
label="保养计划类型"
|
||||||
|
prop="relatePlan">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
{{ scope.row.relatePlan | relatePlanFilter }}
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<!-- <el-table-column v-if="selectedBox[10]" width="60" label="详情">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<el-button type="text" @click="handelDetail(scope.row)">详情</el-button>
|
||||||
|
</template>
|
||||||
|
</el-table-column> -->
|
||||||
|
<!-- btns -->
|
||||||
|
<el-table-column width="188" label="操作">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<el-tooltip content="确认" placement="top">
|
||||||
|
<el-button
|
||||||
|
type="text"
|
||||||
|
style="margin: 5px 0; padding: 0"
|
||||||
|
:disabled="!checkSelectable(scope.row)"
|
||||||
|
@click="$emit('confirm', scope.row)">
|
||||||
|
确认
|
||||||
|
</el-button>
|
||||||
|
</el-tooltip>
|
||||||
|
<!-- line -->
|
||||||
|
<span style="margin: 0 4px; font-size: 18px; color: #e5e7eb">|</span>
|
||||||
|
<el-tooltip content="查看详情" placement="top">
|
||||||
|
<el-button
|
||||||
|
type="text"
|
||||||
|
style="margin: 5px 0; padding: 0"
|
||||||
|
@click="$emit('detail', scope.row)">
|
||||||
|
<i class="iconfont icon-detail primary-color" />
|
||||||
|
</el-button>
|
||||||
|
</el-tooltip>
|
||||||
|
<!-- line -->
|
||||||
|
<span style="margin: 0 4px; font-size: 18px; color: #e5e7eb">|</span>
|
||||||
|
<el-tooltip content="编辑" placement="top">
|
||||||
|
<el-button
|
||||||
|
type="text"
|
||||||
|
style="margin: 5px 0; padding: 0"
|
||||||
|
@click="$emit('edit', scope.row)">
|
||||||
|
<i class="iconfont icon-edit primary-color" />
|
||||||
|
</el-button>
|
||||||
|
</el-tooltip>
|
||||||
|
<!-- line -->
|
||||||
|
<span style="margin: 0 4px; font-size: 18px; color: #e5e7eb">|</span>
|
||||||
|
<el-tooltip content="删除" placement="top">
|
||||||
|
<el-button
|
||||||
|
type="text"
|
||||||
|
style="margin: 5px 0; padding: 0"
|
||||||
|
@click="$emit('delete', scope.row)">
|
||||||
|
<i class="iconfont icon-delete delete-color" />
|
||||||
|
</el-button>
|
||||||
|
</el-tooltip>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import moment from 'moment';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'WaitingListTable',
|
||||||
|
components: {},
|
||||||
|
props: ['tableData', 'page', 'limit'],
|
||||||
|
filters: {
|
||||||
|
timeFilter: (val) =>
|
||||||
|
val ? moment(val).format('yyyy-MM-DD HH:mm:ss') : '---',
|
||||||
|
relatePlanFilter: (val) =>
|
||||||
|
val != null ? ['-', '计划型', '非计划型'][val] : '-',
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
tablePropsLabelList: [
|
||||||
|
{
|
||||||
|
label: '设备保养单号',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '保养计划名称',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '部门',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '产线名',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '计划开始时间',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '计划结束时间',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '实际开始时间',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '实际结束时间',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '确认截止时间',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '保养计划类型',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '详情',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
selectedBox: [
|
||||||
|
true,
|
||||||
|
true,
|
||||||
|
true,
|
||||||
|
true,
|
||||||
|
true,
|
||||||
|
true,
|
||||||
|
true,
|
||||||
|
true,
|
||||||
|
true,
|
||||||
|
true,
|
||||||
|
true,
|
||||||
|
],
|
||||||
|
selectedPlan: [],
|
||||||
|
};
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
tableDataWithIndex() {
|
||||||
|
return this.tableData.map((item, index) => ({
|
||||||
|
...item,
|
||||||
|
_pageIndex: (this.page - 1) * this.limit + index + 1,
|
||||||
|
}));
|
||||||
|
},
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
checkSelectable(row, index) {
|
||||||
|
return (
|
||||||
|
row.relatePlan == 2 ||
|
||||||
|
(row.relatePlan == 1 &&
|
||||||
|
(!row.confirmDueTime || +row.confirmDueTime >= new Date().getTime()))
|
||||||
|
);
|
||||||
|
},
|
||||||
|
handleSelectionChange(val) {
|
||||||
|
this.selectedPlan = val;
|
||||||
|
},
|
||||||
|
handleDelete(row) {},
|
||||||
|
handleDetail(row) {},
|
||||||
|
handleEdit(row) {},
|
||||||
|
handleConfirm(row) {},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
@import './iconfont/iconfont.css';
|
||||||
|
.delete-color {
|
||||||
|
color: #ff5454;
|
||||||
|
}
|
||||||
|
.primary-color {
|
||||||
|
color: #0b58ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.baseTable .show-col-btn {
|
||||||
|
margin-right: 5px;
|
||||||
|
line-height: inherit;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.baseTable .el-icon-refresh {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<style>
|
||||||
|
.waiting-list-table .el-table__body tr.current-row > td.el-table__cell {
|
||||||
|
background-color: #eaf1fc;
|
||||||
|
}
|
||||||
|
.waiting-list-table.el-table .el-table__cell {
|
||||||
|
padding: 0;
|
||||||
|
height: 35px;
|
||||||
|
}
|
||||||
|
.waiting-list-table .addButton {
|
||||||
|
width: 100%;
|
||||||
|
height: 35px;
|
||||||
|
border-top: none;
|
||||||
|
color: #0b58ff;
|
||||||
|
border-color: #ebeef5;
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
.waiting-list-table .addButton:hover {
|
||||||
|
color: #0b58ff;
|
||||||
|
border-color: #ebeef5;
|
||||||
|
background-color: #fff;
|
||||||
|
}
|
||||||
|
.waiting-list-table .addButton:focus {
|
||||||
|
border-color: #ebeef5;
|
||||||
|
background-color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.el-tooltip__popper.is-dark {
|
||||||
|
background: rgba(0, 0, 0, 0.6) !important;
|
||||||
|
}
|
||||||
|
.el-tooltip__popper .popper__arrow,
|
||||||
|
.el-tooltip__popper .popper__arrow::after {
|
||||||
|
border-top-color: rgba(0, 0, 0, 0.4) !important;
|
||||||
|
}
|
||||||
|
</style>
|
@ -0,0 +1,734 @@
|
|||||||
|
<!--
|
||||||
|
filename: WaitingListUnplanned--edit.vue
|
||||||
|
author: liubin
|
||||||
|
date: 2023-08-22 14:38:56
|
||||||
|
description:
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<el-drawer
|
||||||
|
:visible="visible"
|
||||||
|
:show-close="false"
|
||||||
|
:wrapper-closable="false"
|
||||||
|
class="drawer"
|
||||||
|
custom-class="mes-drawer"
|
||||||
|
size="60%"
|
||||||
|
@closed="$emit('destroy')">
|
||||||
|
<SmallTitle slot="title">编辑</SmallTitle>
|
||||||
|
|
||||||
|
<div class="drawer-body flex">
|
||||||
|
<div class="drawer-body__content">
|
||||||
|
<div class="form-part" style="margin-bottom: 32px">
|
||||||
|
<!-- <el-skeleton v-if="!showForm" animated /> -->
|
||||||
|
<el-form
|
||||||
|
class="equipment-info-form"
|
||||||
|
ref="form"
|
||||||
|
:model="form"
|
||||||
|
label-width="200px"
|
||||||
|
label-position="top"
|
||||||
|
v-loading="formLoading">
|
||||||
|
<el-row :gutter="20">
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item
|
||||||
|
label="保养计划单号"
|
||||||
|
prop="maintainOrderNumber"
|
||||||
|
:rules="[
|
||||||
|
{
|
||||||
|
required: true,
|
||||||
|
message: '请输入保养计划单号',
|
||||||
|
trigger: 'blur',
|
||||||
|
},
|
||||||
|
]">
|
||||||
|
<el-input
|
||||||
|
v-model="form.maintainOrderNumber"
|
||||||
|
:placeholder="`请输入保养计划单号`" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="保养计划名称" prop="name">
|
||||||
|
<el-input value="---" disabled />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item
|
||||||
|
label="部门"
|
||||||
|
prop="departmentId"
|
||||||
|
:rules="[
|
||||||
|
{ required: true, message: '请选择部门', trigger: 'blur' },
|
||||||
|
]">
|
||||||
|
<el-select
|
||||||
|
v-model="form.departmentId"
|
||||||
|
:placeholder="`请选择部门`"
|
||||||
|
clearable
|
||||||
|
filterable>
|
||||||
|
<el-option
|
||||||
|
v-for="opt in departmentOptions"
|
||||||
|
:key="opt.value"
|
||||||
|
:label="opt.label"
|
||||||
|
:value="opt.value" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item
|
||||||
|
label="产线"
|
||||||
|
prop="lineId"
|
||||||
|
:rules="[
|
||||||
|
{ required: true, message: '请选择产线', trigger: 'blur' },
|
||||||
|
]">
|
||||||
|
<el-select
|
||||||
|
v-model="form.lineId"
|
||||||
|
:placeholder="`请选择产线`"
|
||||||
|
clearable
|
||||||
|
filterable>
|
||||||
|
<el-option
|
||||||
|
v-for="opt in lineOptions"
|
||||||
|
:key="opt.value"
|
||||||
|
:label="opt.label"
|
||||||
|
:value="opt.value" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="计划保养人员" prop="maintainer">
|
||||||
|
<el-input value="---" disabled />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="计划开始时间" prop="planStartTime">
|
||||||
|
<el-input value="---" disabled />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="计划结束时间" prop="planEndTime">
|
||||||
|
<el-input value="---" disabled />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item
|
||||||
|
label="实际开始时间"
|
||||||
|
prop="startTime"
|
||||||
|
:rules="[
|
||||||
|
{
|
||||||
|
required: true,
|
||||||
|
message: '请选择实际开始时间',
|
||||||
|
trigger: 'blur',
|
||||||
|
},
|
||||||
|
]">
|
||||||
|
<el-date-picker
|
||||||
|
v-model="form.startTime"
|
||||||
|
type="datetime"
|
||||||
|
placeholder="请选择实际开始时间"
|
||||||
|
value-format="timestamp"></el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item
|
||||||
|
label="实际结束时间"
|
||||||
|
prop="endTime"
|
||||||
|
:rules="[
|
||||||
|
{
|
||||||
|
required: true,
|
||||||
|
message: '请选择实际结束时间',
|
||||||
|
trigger: 'blur',
|
||||||
|
},
|
||||||
|
]">
|
||||||
|
<el-date-picker
|
||||||
|
v-model="form.endTime"
|
||||||
|
type="datetime"
|
||||||
|
placeholder="请选择实际结束时间"
|
||||||
|
value-format="timestamp"></el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item
|
||||||
|
label="实际保养人员"
|
||||||
|
prop="maintainWorker"
|
||||||
|
:rules="[
|
||||||
|
{
|
||||||
|
required: true,
|
||||||
|
message: '请选择实际保养人员',
|
||||||
|
trigger: 'blur',
|
||||||
|
},
|
||||||
|
]">
|
||||||
|
<el-select
|
||||||
|
v-model="form.maintainWorker"
|
||||||
|
:placeholder="`请选择实际保养人员`"
|
||||||
|
multiple
|
||||||
|
clearable
|
||||||
|
filterable>
|
||||||
|
<el-option
|
||||||
|
v-for="opt in maintainerOptions"
|
||||||
|
:key="opt.value"
|
||||||
|
:label="opt.label"
|
||||||
|
:value="opt.value" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item label="备注" prop="remark">
|
||||||
|
<el-input v-model="form.remark" :placeholder="`请输入备注`" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-form>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<SmallTitle>保养内容</SmallTitle>
|
||||||
|
|
||||||
|
<div style="margin-top: 12px; position: relative">
|
||||||
|
<SearchBar
|
||||||
|
:formConfigs="searchBarFormConfig"
|
||||||
|
ref="attr-search-bar"
|
||||||
|
@headBtnClick="handleSearchBarBtnClick" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div style="margin-top: 12px; position: relative">
|
||||||
|
<div style="position: absolute; top: -40px; right: 0">
|
||||||
|
<el-button @click="handleAddAttr" type="text">
|
||||||
|
<i class="el-icon-plus"></i>
|
||||||
|
添加属性
|
||||||
|
</el-button>
|
||||||
|
</div>
|
||||||
|
<base-table
|
||||||
|
v-loading="attrListLoading"
|
||||||
|
:table-props="attrTableProps"
|
||||||
|
:page="attrQuery?.params.pageNo || 1"
|
||||||
|
:limit="attrQuery?.params.pageSize || 10"
|
||||||
|
:table-data="attrList"
|
||||||
|
@emitFun="handleEmitFun">
|
||||||
|
<method-btn
|
||||||
|
slot="handleBtn"
|
||||||
|
label="操作"
|
||||||
|
:method-list="tableBtn"
|
||||||
|
@clickBtn="handleTableBtnClick" />
|
||||||
|
</base-table>
|
||||||
|
|
||||||
|
<!-- 分页组件 -->
|
||||||
|
<pagination
|
||||||
|
v-show="attrTotal > 0"
|
||||||
|
:total="attrTotal"
|
||||||
|
:page.sync="attrQuery.params.pageNo"
|
||||||
|
:limit.sync="attrQuery.params.pageSize"
|
||||||
|
@pagination="getAttrList" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="drawer-body__footer">
|
||||||
|
<el-button style="" @click="handleCancel">取消</el-button>
|
||||||
|
<el-button type="primary" @click="handleConfirm">保存</el-button>
|
||||||
|
<!-- sections的第二项必须是 属性列表 -->
|
||||||
|
<!-- <el-button
|
||||||
|
v-if="sections[1].allowAdd"
|
||||||
|
type="primary"
|
||||||
|
@click="handleAddAttr">
|
||||||
|
添加属性
|
||||||
|
</el-button> -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- 属性对话框 -->
|
||||||
|
<base-dialog
|
||||||
|
:dialogTitle="attrTitle"
|
||||||
|
:dialogVisible="attrFormVisible"
|
||||||
|
width="35%"
|
||||||
|
:append-to-body="true"
|
||||||
|
custom-class="baseDialog"
|
||||||
|
@close="closeAttrForm"
|
||||||
|
@cancel="closeAttrForm"
|
||||||
|
@confirm="submitAttrForm">
|
||||||
|
<DialogForm
|
||||||
|
v-if="attrFormVisible"
|
||||||
|
ref="attrForm"
|
||||||
|
v-model="attrForm"
|
||||||
|
:rows="attrRows" />
|
||||||
|
</base-dialog>
|
||||||
|
</el-drawer>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import DialogForm from '../../../components/DialogForm/index.vue';
|
||||||
|
|
||||||
|
const SmallTitle = {
|
||||||
|
name: 'SmallTitle',
|
||||||
|
props: ['size'],
|
||||||
|
components: {},
|
||||||
|
data() {
|
||||||
|
return {};
|
||||||
|
},
|
||||||
|
methods: {},
|
||||||
|
render: function (h) {
|
||||||
|
return h(
|
||||||
|
'span',
|
||||||
|
{
|
||||||
|
class: 'small-title',
|
||||||
|
style: {
|
||||||
|
fontSize: '18px',
|
||||||
|
lineHeight:
|
||||||
|
this.size == 'lg' ? '24px' : this.size == 'sm' ? '18px' : '20px',
|
||||||
|
fontWeight: 500,
|
||||||
|
fontFamily: '微软雅黑, Microsoft YaHei, Arial, Helvetica, sans-serif',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
this.$slots.default
|
||||||
|
);
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: { SmallTitle, DialogForm },
|
||||||
|
props: ['dataId'], // dataId 作为一个通用的存放id的字段
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
visible: false,
|
||||||
|
btnLoading: false,
|
||||||
|
form: {},
|
||||||
|
formLoading: false,
|
||||||
|
lineList: [],
|
||||||
|
maintainerList: [],
|
||||||
|
departmentList: [],
|
||||||
|
attrTableProps: [
|
||||||
|
{
|
||||||
|
prop: 'equipmentName',
|
||||||
|
label: '设备名称',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'program',
|
||||||
|
label: '保养项目',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'maintenanceDes',
|
||||||
|
label: '保养描述',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
attrList: [],
|
||||||
|
attrTotal: 0,
|
||||||
|
attrTitle: '',
|
||||||
|
attrForm: {
|
||||||
|
id: null,
|
||||||
|
logId: null,
|
||||||
|
program: null,
|
||||||
|
maintenanceDes: null,
|
||||||
|
remark: null,
|
||||||
|
},
|
||||||
|
attrFormVisible: false,
|
||||||
|
attrRows: [
|
||||||
|
[
|
||||||
|
{
|
||||||
|
select: true,
|
||||||
|
label: '设备名称',
|
||||||
|
prop: 'equipmentId',
|
||||||
|
url: '/base/core-equipment/page?pageNo=1&pageSize=100&special=true',
|
||||||
|
// method: 'post',
|
||||||
|
// queryParams: {
|
||||||
|
// pageNo: 1,
|
||||||
|
// pageSize: 100,
|
||||||
|
// special: true,
|
||||||
|
// },
|
||||||
|
rules: [
|
||||||
|
{ required: true, message: '设备不能为空', trigger: 'blur' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
input: true,
|
||||||
|
label: '保养项目',
|
||||||
|
prop: 'program',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
input: true,
|
||||||
|
label: '保养描述',
|
||||||
|
prop: 'maintenanceDes',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
input: true,
|
||||||
|
label: '备注',
|
||||||
|
prop: 'remark',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
],
|
||||||
|
attrQuery: {
|
||||||
|
params: {
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
equipmentName: null,
|
||||||
|
},
|
||||||
|
}, // 属性列表的请求
|
||||||
|
searchBarFormConfig: [
|
||||||
|
{
|
||||||
|
type: 'input',
|
||||||
|
label: '设备',
|
||||||
|
placeholder: '请输入设备名称',
|
||||||
|
param: 'equipmentName',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'button',
|
||||||
|
btnName: '查询',
|
||||||
|
name: 'search',
|
||||||
|
color: 'primary',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
attrFormSubmitting: false,
|
||||||
|
attrListLoading: false,
|
||||||
|
// syncFileListFlag: null,
|
||||||
|
tableBtn: [],
|
||||||
|
row: null,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
departmentOptions() {
|
||||||
|
return (this.departmentList || []).map((item) => ({
|
||||||
|
id: item.id,
|
||||||
|
label: item.name,
|
||||||
|
value: item.id,
|
||||||
|
}));
|
||||||
|
},
|
||||||
|
lineOptions() {
|
||||||
|
return (this.lineList || []).map((item) => ({
|
||||||
|
id: item.id,
|
||||||
|
label: item.name,
|
||||||
|
value: item.id,
|
||||||
|
}));
|
||||||
|
},
|
||||||
|
maintainerOptions() {
|
||||||
|
return (this.maintainerList || []).map((item) => ({
|
||||||
|
id: item.id,
|
||||||
|
label: item.name,
|
||||||
|
value: item.name,
|
||||||
|
}));
|
||||||
|
},
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.getList('maintainer');
|
||||||
|
this.getList('department');
|
||||||
|
this.getList('line');
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
handleSearchBarBtnClick(btn) {
|
||||||
|
console.log('btn', btn);
|
||||||
|
switch (btn.btnName) {
|
||||||
|
case 'search':
|
||||||
|
this.attrQuery.params.equipmentName = btn.equipmentName;
|
||||||
|
this.getAttrList();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
handleTableBtnClick({ type, data }) {
|
||||||
|
switch (type) {
|
||||||
|
case 'edit':
|
||||||
|
this.handleEditAttr(data.id);
|
||||||
|
break;
|
||||||
|
case 'delete':
|
||||||
|
this.handleDeleteAttr(data.id);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
async handleConfirm() {
|
||||||
|
this.btnLoading = true;
|
||||||
|
this.$nextTick(async () => {
|
||||||
|
const { code, data } = await this.$axios({
|
||||||
|
url: '/base/equipment-maintain-log/update',
|
||||||
|
method: 'put',
|
||||||
|
data: {
|
||||||
|
...this.form,
|
||||||
|
maintainWorker: this.form.maintainWorker.join(',')
|
||||||
|
},
|
||||||
|
});
|
||||||
|
if (code == 0) {
|
||||||
|
this.$modal.msgSuccess('更新成功');
|
||||||
|
}
|
||||||
|
this.btnLoading = false;
|
||||||
|
this.$emit('refreshDataList');
|
||||||
|
this.handleCancel();
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
handleEmitFun(val) {
|
||||||
|
console.log('handleEmitFun', val);
|
||||||
|
},
|
||||||
|
|
||||||
|
init(row) {
|
||||||
|
this.visible = true;
|
||||||
|
this.row = row;
|
||||||
|
this.getInfo(row);
|
||||||
|
this.getAttrList(row);
|
||||||
|
},
|
||||||
|
|
||||||
|
async getInfo(row) {
|
||||||
|
this.formLoading = true;
|
||||||
|
const res = await this.$axios(
|
||||||
|
'/base/equipment-maintain-log/get?id=' + row.id
|
||||||
|
);
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.form = res.data;
|
||||||
|
this.form.maintainWorker = res.data.maintainWorker.split(',');
|
||||||
|
this.formLoading = false;
|
||||||
|
}
|
||||||
|
this.formLoading = false;
|
||||||
|
},
|
||||||
|
|
||||||
|
async getAttrList(row, condition = {}) {
|
||||||
|
if (!row) row = this.row;
|
||||||
|
this.attrListLoading = true;
|
||||||
|
const res = await this.$axios({
|
||||||
|
url: '/base/equipment-maintain-log-det/page',
|
||||||
|
method: 'get',
|
||||||
|
params: {
|
||||||
|
...this.attrQuery.params,
|
||||||
|
logId: row.id,
|
||||||
|
...condition,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.attrList = res.data.list;
|
||||||
|
this.attrTotal = res.data.total;
|
||||||
|
}
|
||||||
|
this.attrListLoading = false;
|
||||||
|
},
|
||||||
|
|
||||||
|
async getList(source = 'department') {
|
||||||
|
const urls = [
|
||||||
|
'/base/core-production-line/listAll',
|
||||||
|
'/base/core-department/listAll',
|
||||||
|
'/base/core-worker/listAll',
|
||||||
|
];
|
||||||
|
let res;
|
||||||
|
switch (source) {
|
||||||
|
case 'department':
|
||||||
|
res = await this.$axios(urls[1]);
|
||||||
|
this.departmentList = res.data || [];
|
||||||
|
break;
|
||||||
|
case 'maintainer':
|
||||||
|
res = await this.$axios(urls[2]);
|
||||||
|
this.maintainerList = res.data || [];
|
||||||
|
break;
|
||||||
|
case 'line':
|
||||||
|
res = await this.$axios(urls[0]);
|
||||||
|
this.lineList = res.data || [];
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
this.formLoading = false;
|
||||||
|
},
|
||||||
|
|
||||||
|
// 保存表单
|
||||||
|
handleSave() {
|
||||||
|
this.$refs.form.validate(async (valid) => {
|
||||||
|
if (valid) {
|
||||||
|
await this.$axios({
|
||||||
|
url: '/urlupdate', // this.sections[0][isEdit ? 'urlUpdate' : 'urlCreate'],
|
||||||
|
method: 'post', // isEdit ? 'put' : 'post',
|
||||||
|
data: this.form,
|
||||||
|
});
|
||||||
|
this.$modal.msgSuccess(`${isEdit ? '更新' : '创建'}成功`);
|
||||||
|
this.visible = false;
|
||||||
|
this.$emit('refreshDataList');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
handleCancel() {
|
||||||
|
this.visible = false;
|
||||||
|
},
|
||||||
|
|
||||||
|
resetAttrform() {
|
||||||
|
this.attrForm = {
|
||||||
|
id: null,
|
||||||
|
logId: this.row.id,
|
||||||
|
maintenanceDes: '',
|
||||||
|
program: null,
|
||||||
|
remark: null,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
|
// 新增属性
|
||||||
|
handleAddAttr() {
|
||||||
|
if (!this.row.id) return this.$message.error('请先选中保养记录');
|
||||||
|
this.resetAttrform();
|
||||||
|
this.attrTitle = '添加设备属性';
|
||||||
|
this.attrFormVisible = true;
|
||||||
|
},
|
||||||
|
|
||||||
|
// 编辑属性
|
||||||
|
async handleEditAttr(attrId) {
|
||||||
|
const res = await this.$axios({
|
||||||
|
url: '/base/equipment-maintain-log-det/get',
|
||||||
|
method: 'get',
|
||||||
|
params: { id: attrId },
|
||||||
|
});
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.attrForm = res.data;
|
||||||
|
this.attrTitle = '编辑设备属性';
|
||||||
|
this.attrFormVisible = true;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// 删除属性
|
||||||
|
handleDeleteAttr(attrId) {
|
||||||
|
this.$confirm('确定删除该属性?', '提示', {
|
||||||
|
confirmButtonText: '确定',
|
||||||
|
cancelButtonText: '取消',
|
||||||
|
type: 'warning',
|
||||||
|
})
|
||||||
|
.then(async () => {
|
||||||
|
const res = await this.$axios({
|
||||||
|
url: 'url delete', // this.sections[1].urlDelete,
|
||||||
|
method: 'delete',
|
||||||
|
params: { id: attrId },
|
||||||
|
});
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.$message({
|
||||||
|
message: '删除成功',
|
||||||
|
type: 'success',
|
||||||
|
duration: 1500,
|
||||||
|
onClose: () => {
|
||||||
|
this.getAttrList();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(() => {});
|
||||||
|
},
|
||||||
|
|
||||||
|
// 提交属性表
|
||||||
|
submitAttrForm() {
|
||||||
|
this.$refs['attrForm'].validate(async (valid) => {
|
||||||
|
if (!valid) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
const isEdit = this.attrForm.id != null;
|
||||||
|
this.attrFormSubmitting = true;
|
||||||
|
const res = await this.$axios({
|
||||||
|
url: isEdit
|
||||||
|
? '/base/equipment-maintain-log-det/update'
|
||||||
|
: '/base/equipment-maintain-log-det/create',
|
||||||
|
method: isEdit ? 'put' : 'post',
|
||||||
|
data: this.attrForm,
|
||||||
|
});
|
||||||
|
|
||||||
|
if (res.code == 0) {
|
||||||
|
this.closeAttrForm();
|
||||||
|
this.$message({
|
||||||
|
message: `${isEdit ? '更新' : '创建'}成功`,
|
||||||
|
type: 'success',
|
||||||
|
duration: 1500,
|
||||||
|
onClose: () => {
|
||||||
|
this.getAttrList();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
this.attrFormSubmitting = false;
|
||||||
|
} catch (err) {
|
||||||
|
this.$message({
|
||||||
|
message: err,
|
||||||
|
type: 'error',
|
||||||
|
duration: 1500,
|
||||||
|
});
|
||||||
|
this.attrFormSubmitting = false;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
closeAttrForm() {
|
||||||
|
this.attrFormVisible = false;
|
||||||
|
},
|
||||||
|
|
||||||
|
handleClick(raw) {
|
||||||
|
if (raw.type === 'delete') {
|
||||||
|
this.$confirm(
|
||||||
|
`确定对${
|
||||||
|
raw.data.name
|
||||||
|
? '[名称=' + raw.data.name + ']'
|
||||||
|
: '[序号=' + raw.data._pageIndex + ']'
|
||||||
|
}进行删除操作?`,
|
||||||
|
'提示',
|
||||||
|
{
|
||||||
|
confirmButtonText: '确定',
|
||||||
|
cancelButtonText: '取消',
|
||||||
|
type: 'warning',
|
||||||
|
}
|
||||||
|
)
|
||||||
|
.then(() => {
|
||||||
|
deleteProductAttr(raw.data.id).then(({ data }) => {
|
||||||
|
this.$message({
|
||||||
|
message: '操作成功',
|
||||||
|
type: 'success',
|
||||||
|
duration: 1500,
|
||||||
|
onClose: () => {
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
});
|
||||||
|
})
|
||||||
|
.catch(() => {});
|
||||||
|
} else {
|
||||||
|
this.addNew(raw.data.id);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.drawer >>> .el-drawer {
|
||||||
|
border-radius: 8px 0 0 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer >>> .el-date-editor,
|
||||||
|
.drawer >>> .el-select {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer >>> .el-drawer__header {
|
||||||
|
margin: 0;
|
||||||
|
padding: 32px 32px 24px;
|
||||||
|
border-bottom: 1px solid #dcdfe6;
|
||||||
|
margin-bottom: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.small-title::before {
|
||||||
|
content: '';
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: top;
|
||||||
|
width: 4px;
|
||||||
|
height: 22px;
|
||||||
|
border-radius: 1px;
|
||||||
|
margin-right: 8px;
|
||||||
|
background-color: #0b58ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer-body {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer-body__content {
|
||||||
|
flex: 1;
|
||||||
|
/* background: #eee; */
|
||||||
|
padding: 20px 30px;
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer-body__footer {
|
||||||
|
display: flex;
|
||||||
|
justify-content: flex-end;
|
||||||
|
padding: 18px;
|
||||||
|
}
|
||||||
|
</style>
|
539
src/views/specialEquipment/maintain/iconfont/demo.css
Normal file
539
src/views/specialEquipment/maintain/iconfont/demo.css
Normal file
@ -0,0 +1,539 @@
|
|||||||
|
/* Logo 字体 */
|
||||||
|
@font-face {
|
||||||
|
font-family: "iconfont logo";
|
||||||
|
src: url('https://at.alicdn.com/t/font_985780_km7mi63cihi.eot?t=1545807318834');
|
||||||
|
src: url('https://at.alicdn.com/t/font_985780_km7mi63cihi.eot?t=1545807318834#iefix') format('embedded-opentype'),
|
||||||
|
url('https://at.alicdn.com/t/font_985780_km7mi63cihi.woff?t=1545807318834') format('woff'),
|
||||||
|
url('https://at.alicdn.com/t/font_985780_km7mi63cihi.ttf?t=1545807318834') format('truetype'),
|
||||||
|
url('https://at.alicdn.com/t/font_985780_km7mi63cihi.svg?t=1545807318834#iconfont') format('svg');
|
||||||
|
}
|
||||||
|
|
||||||
|
.logo {
|
||||||
|
font-family: "iconfont logo";
|
||||||
|
font-size: 160px;
|
||||||
|
font-style: normal;
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* tabs */
|
||||||
|
.nav-tabs {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-tabs .nav-more {
|
||||||
|
position: absolute;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
height: 42px;
|
||||||
|
line-height: 42px;
|
||||||
|
color: #666;
|
||||||
|
}
|
||||||
|
|
||||||
|
#tabs {
|
||||||
|
border-bottom: 1px solid #eee;
|
||||||
|
}
|
||||||
|
|
||||||
|
#tabs li {
|
||||||
|
cursor: pointer;
|
||||||
|
width: 100px;
|
||||||
|
height: 40px;
|
||||||
|
line-height: 40px;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 16px;
|
||||||
|
border-bottom: 2px solid transparent;
|
||||||
|
position: relative;
|
||||||
|
z-index: 1;
|
||||||
|
margin-bottom: -1px;
|
||||||
|
color: #666;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#tabs .active {
|
||||||
|
border-bottom-color: #f00;
|
||||||
|
color: #222;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tab-container .content {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 页面布局 */
|
||||||
|
.main {
|
||||||
|
padding: 30px 100px;
|
||||||
|
width: 960px;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main .logo {
|
||||||
|
color: #333;
|
||||||
|
text-align: left;
|
||||||
|
margin-bottom: 30px;
|
||||||
|
line-height: 1;
|
||||||
|
height: 110px;
|
||||||
|
margin-top: -50px;
|
||||||
|
overflow: hidden;
|
||||||
|
*zoom: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main .logo a {
|
||||||
|
font-size: 160px;
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
.helps {
|
||||||
|
margin-top: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.helps pre {
|
||||||
|
padding: 20px;
|
||||||
|
margin: 10px 0;
|
||||||
|
border: solid 1px #e7e1cd;
|
||||||
|
background-color: #fffdef;
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon_lists {
|
||||||
|
width: 100% !important;
|
||||||
|
overflow: hidden;
|
||||||
|
*zoom: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon_lists li {
|
||||||
|
width: 100px;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
margin-right: 20px;
|
||||||
|
text-align: center;
|
||||||
|
list-style: none !important;
|
||||||
|
cursor: default;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon_lists li .code-name {
|
||||||
|
line-height: 1.2;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon_lists .icon {
|
||||||
|
display: block;
|
||||||
|
height: 100px;
|
||||||
|
line-height: 100px;
|
||||||
|
font-size: 42px;
|
||||||
|
margin: 10px auto;
|
||||||
|
color: #333;
|
||||||
|
-webkit-transition: font-size 0.25s linear, width 0.25s linear;
|
||||||
|
-moz-transition: font-size 0.25s linear, width 0.25s linear;
|
||||||
|
transition: font-size 0.25s linear, width 0.25s linear;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon_lists .icon:hover {
|
||||||
|
font-size: 100px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon_lists .svg-icon {
|
||||||
|
/* 通过设置 font-size 来改变图标大小 */
|
||||||
|
width: 1em;
|
||||||
|
/* 图标和文字相邻时,垂直对齐 */
|
||||||
|
vertical-align: -0.15em;
|
||||||
|
/* 通过设置 color 来改变 SVG 的颜色/fill */
|
||||||
|
fill: currentColor;
|
||||||
|
/* path 和 stroke 溢出 viewBox 部分在 IE 下会显示
|
||||||
|
normalize.css 中也包含这行 */
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon_lists li .name,
|
||||||
|
.icon_lists li .code-name {
|
||||||
|
color: #666;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* markdown 样式 */
|
||||||
|
.markdown {
|
||||||
|
color: #666;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 1.8;
|
||||||
|
}
|
||||||
|
|
||||||
|
.highlight {
|
||||||
|
line-height: 1.5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown img {
|
||||||
|
vertical-align: middle;
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown h1 {
|
||||||
|
color: #404040;
|
||||||
|
font-weight: 500;
|
||||||
|
line-height: 40px;
|
||||||
|
margin-bottom: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown h2,
|
||||||
|
.markdown h3,
|
||||||
|
.markdown h4,
|
||||||
|
.markdown h5,
|
||||||
|
.markdown h6 {
|
||||||
|
color: #404040;
|
||||||
|
margin: 1.6em 0 0.6em 0;
|
||||||
|
font-weight: 500;
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown h1 {
|
||||||
|
font-size: 28px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown h2 {
|
||||||
|
font-size: 22px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown h3 {
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown h4 {
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown h5 {
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown h6 {
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown hr {
|
||||||
|
height: 1px;
|
||||||
|
border: 0;
|
||||||
|
background: #e9e9e9;
|
||||||
|
margin: 16px 0;
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown p {
|
||||||
|
margin: 1em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown>p,
|
||||||
|
.markdown>blockquote,
|
||||||
|
.markdown>.highlight,
|
||||||
|
.markdown>ol,
|
||||||
|
.markdown>ul {
|
||||||
|
width: 80%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown ul>li {
|
||||||
|
list-style: circle;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown>ul li,
|
||||||
|
.markdown blockquote ul>li {
|
||||||
|
margin-left: 20px;
|
||||||
|
padding-left: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown>ul li p,
|
||||||
|
.markdown>ol li p {
|
||||||
|
margin: 0.6em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown ol>li {
|
||||||
|
list-style: decimal;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown>ol li,
|
||||||
|
.markdown blockquote ol>li {
|
||||||
|
margin-left: 20px;
|
||||||
|
padding-left: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown code {
|
||||||
|
margin: 0 3px;
|
||||||
|
padding: 0 5px;
|
||||||
|
background: #eee;
|
||||||
|
border-radius: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown strong,
|
||||||
|
.markdown b {
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown>table {
|
||||||
|
border-collapse: collapse;
|
||||||
|
border-spacing: 0px;
|
||||||
|
empty-cells: show;
|
||||||
|
border: 1px solid #e9e9e9;
|
||||||
|
width: 95%;
|
||||||
|
margin-bottom: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown>table th {
|
||||||
|
white-space: nowrap;
|
||||||
|
color: #333;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown>table th,
|
||||||
|
.markdown>table td {
|
||||||
|
border: 1px solid #e9e9e9;
|
||||||
|
padding: 8px 16px;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown>table th {
|
||||||
|
background: #F7F7F7;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown blockquote {
|
||||||
|
font-size: 90%;
|
||||||
|
color: #999;
|
||||||
|
border-left: 4px solid #e9e9e9;
|
||||||
|
padding-left: 0.8em;
|
||||||
|
margin: 1em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown blockquote p {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown .anchor {
|
||||||
|
opacity: 0;
|
||||||
|
transition: opacity 0.3s ease;
|
||||||
|
margin-left: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown .waiting {
|
||||||
|
color: #ccc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown h1:hover .anchor,
|
||||||
|
.markdown h2:hover .anchor,
|
||||||
|
.markdown h3:hover .anchor,
|
||||||
|
.markdown h4:hover .anchor,
|
||||||
|
.markdown h5:hover .anchor,
|
||||||
|
.markdown h6:hover .anchor {
|
||||||
|
opacity: 1;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown>br,
|
||||||
|
.markdown>p>br {
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.hljs {
|
||||||
|
display: block;
|
||||||
|
background: white;
|
||||||
|
padding: 0.5em;
|
||||||
|
color: #333333;
|
||||||
|
overflow-x: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hljs-comment,
|
||||||
|
.hljs-meta {
|
||||||
|
color: #969896;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hljs-string,
|
||||||
|
.hljs-variable,
|
||||||
|
.hljs-template-variable,
|
||||||
|
.hljs-strong,
|
||||||
|
.hljs-emphasis,
|
||||||
|
.hljs-quote {
|
||||||
|
color: #df5000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hljs-keyword,
|
||||||
|
.hljs-selector-tag,
|
||||||
|
.hljs-type {
|
||||||
|
color: #a71d5d;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hljs-literal,
|
||||||
|
.hljs-symbol,
|
||||||
|
.hljs-bullet,
|
||||||
|
.hljs-attribute {
|
||||||
|
color: #0086b3;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hljs-section,
|
||||||
|
.hljs-name {
|
||||||
|
color: #63a35c;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hljs-tag {
|
||||||
|
color: #333333;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hljs-title,
|
||||||
|
.hljs-attr,
|
||||||
|
.hljs-selector-id,
|
||||||
|
.hljs-selector-class,
|
||||||
|
.hljs-selector-attr,
|
||||||
|
.hljs-selector-pseudo {
|
||||||
|
color: #795da3;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hljs-addition {
|
||||||
|
color: #55a532;
|
||||||
|
background-color: #eaffea;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hljs-deletion {
|
||||||
|
color: #bd2c00;
|
||||||
|
background-color: #ffecec;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hljs-link {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 代码高亮 */
|
||||||
|
/* PrismJS 1.15.0
|
||||||
|
https://prismjs.com/download.html#themes=prism&languages=markup+css+clike+javascript */
|
||||||
|
/**
|
||||||
|
* prism.js default theme for JavaScript, CSS and HTML
|
||||||
|
* Based on dabblet (http://dabblet.com)
|
||||||
|
* @author Lea Verou
|
||||||
|
*/
|
||||||
|
code[class*="language-"],
|
||||||
|
pre[class*="language-"] {
|
||||||
|
color: black;
|
||||||
|
background: none;
|
||||||
|
text-shadow: 0 1px white;
|
||||||
|
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
|
||||||
|
text-align: left;
|
||||||
|
white-space: pre;
|
||||||
|
word-spacing: normal;
|
||||||
|
word-break: normal;
|
||||||
|
word-wrap: normal;
|
||||||
|
line-height: 1.5;
|
||||||
|
|
||||||
|
-moz-tab-size: 4;
|
||||||
|
-o-tab-size: 4;
|
||||||
|
tab-size: 4;
|
||||||
|
|
||||||
|
-webkit-hyphens: none;
|
||||||
|
-moz-hyphens: none;
|
||||||
|
-ms-hyphens: none;
|
||||||
|
hyphens: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre[class*="language-"]::-moz-selection,
|
||||||
|
pre[class*="language-"] ::-moz-selection,
|
||||||
|
code[class*="language-"]::-moz-selection,
|
||||||
|
code[class*="language-"] ::-moz-selection {
|
||||||
|
text-shadow: none;
|
||||||
|
background: #b3d4fc;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre[class*="language-"]::selection,
|
||||||
|
pre[class*="language-"] ::selection,
|
||||||
|
code[class*="language-"]::selection,
|
||||||
|
code[class*="language-"] ::selection {
|
||||||
|
text-shadow: none;
|
||||||
|
background: #b3d4fc;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media print {
|
||||||
|
|
||||||
|
code[class*="language-"],
|
||||||
|
pre[class*="language-"] {
|
||||||
|
text-shadow: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Code blocks */
|
||||||
|
pre[class*="language-"] {
|
||||||
|
padding: 1em;
|
||||||
|
margin: .5em 0;
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
:not(pre)>code[class*="language-"],
|
||||||
|
pre[class*="language-"] {
|
||||||
|
background: #f5f2f0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Inline code */
|
||||||
|
:not(pre)>code[class*="language-"] {
|
||||||
|
padding: .1em;
|
||||||
|
border-radius: .3em;
|
||||||
|
white-space: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.comment,
|
||||||
|
.token.prolog,
|
||||||
|
.token.doctype,
|
||||||
|
.token.cdata {
|
||||||
|
color: slategray;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.punctuation {
|
||||||
|
color: #999;
|
||||||
|
}
|
||||||
|
|
||||||
|
.namespace {
|
||||||
|
opacity: .7;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.property,
|
||||||
|
.token.tag,
|
||||||
|
.token.boolean,
|
||||||
|
.token.number,
|
||||||
|
.token.constant,
|
||||||
|
.token.symbol,
|
||||||
|
.token.deleted {
|
||||||
|
color: #905;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.selector,
|
||||||
|
.token.attr-name,
|
||||||
|
.token.string,
|
||||||
|
.token.char,
|
||||||
|
.token.builtin,
|
||||||
|
.token.inserted {
|
||||||
|
color: #690;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.operator,
|
||||||
|
.token.entity,
|
||||||
|
.token.url,
|
||||||
|
.language-css .token.string,
|
||||||
|
.style .token.string {
|
||||||
|
color: #9a6e3a;
|
||||||
|
background: hsla(0, 0%, 100%, .5);
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.atrule,
|
||||||
|
.token.attr-value,
|
||||||
|
.token.keyword {
|
||||||
|
color: #07a;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.function,
|
||||||
|
.token.class-name {
|
||||||
|
color: #DD4A68;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.regex,
|
||||||
|
.token.important,
|
||||||
|
.token.variable {
|
||||||
|
color: #e90;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.important,
|
||||||
|
.token.bold {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.italic {
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.entity {
|
||||||
|
cursor: help;
|
||||||
|
}
|
38
src/views/specialEquipment/maintain/iconfont/iconfont.css
Normal file
38
src/views/specialEquipment/maintain/iconfont/iconfont.css
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
@font-face {
|
||||||
|
font-family: "iconfont"; /* Project id 3821755 */
|
||||||
|
src: url('iconfont.eot?t=1689233106339'); /* IE9 */
|
||||||
|
src: url('iconfont.eot?t=1689233106339#iefix') format('embedded-opentype'), /* IE6-IE8 */
|
||||||
|
url('data:application/x-font-woff2;charset=utf-8;base64,d09GMgABAAAAAARgAAsAAAAACcAAAAQUAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHFQGYACDKAqGSIUsATYCJAMYCw4ABCAFhGcHVBtUCMiuMG7hiaIkox1FaBhxvd1fpwAN4YKo1v7tWTr8hBRkBQgO7yqKUJKPUKzDjkixjn7/q0vlANCkEHCJtsMvx2eQn04h5rHEE8593TK2y1SC5nbvNG5gqgZBNEWTqFUQLGVFNnVu1TjyMm3SafEsC3y0myW12KdEh2x+deP/zzHTJeG3AVBm4lrnAxpQN0US7s3ijuSE6Jbh1UGv08cgQEivMg5z6m49Qj77TVxDEZww6gXicNkviSbkxgswNeGCj+CgMw1yFRpAnUNegSv+8+UfU/igsBpjnRV3rRV9+Su8Fk1Agv6CW4eAeyvAAhronJlI1tcrVnIMHZ0cCcsUTrRTnQ0CP50B4KfgEub9Lw80BougQBwGI8bYJU4LPwUbBw0/HXAw8NORUM90wsT9JeIMFACux9QckHyQ9FDYTobcGi+FLSjwMxDe3L5s+w9THFYeEs8H303FWMnZ1JuBWFgNPh3bd5wOvJmKI9aTqXeD8eJ66HnfnV1dJPE8cy4EgqT+s/SbdSWbp9Pn24NbZ1MnGw7CDbvT6+lL1CXVh++hcH56umDT9vOviL/grQ6srHjE57uLHdQn+dtO9x2v94WN6+eXm0HWlZOzta3tUDp1JWjymsiD8r0ViWGkC+n4GeH5aODSM+9COnilpdfdZsRIvMerLmS0uICTplrOnb99LT3NkJNeajPfpDznblq6bXH8efBjlPIUxhQcX+U0qEdt4bjxy6rMdOkbEn0/3mlvrXZL60ysxdwcn/qKLJ/82pnzGS61z5rBeGmrxf33ZXN/IBWUvb8KSvnttbwwq+YTkweZHue0M0+c0ssZGY/Rs+aVF8+3GaW07CkvLC/KcBvP8c2uGpsdm0THlazwlPE22Kdi9ZK4Hdsmtw9eHVQwPjG0p33Q7tGMJ6TUJ2VK1MMw6ftI6qPPtruCvEPmLZqiHcj1Aw3Rup/sdzj+lt/w3f5TrAHgx++nD7A+8xaD4CL8m60Q+KWYO7CgUY3gTFl+OwUBHKteh00BoWmGDIYm301frAJwKAg+BTEoPCpA41OPNNh2sET0g8NnCkI61M6PKKBzREwANBtGIOS6BEU2D0CT6xvSYP+Apdg/cOT6DyErI68W0RzbqhmYOFixuRNLFqoRi839Zh+A2KqYWJH1CTC7hM04My0j664HDVgXY+xtYhbnBBNGVVzH7geKQrHOqA0sPK2Fc70oPZ2UPSTNQlVUjQEmHLDCzDphEgtKQ9zCPP16DwBRK4UJAyKfyBg7jaeaxzKlyQAg6xkaKO9M2tu1EWXhOEL3IxhKhdWpMqCYDgrTy7vZAAsuTUsLm65IOlWIQBlp47PUS9wAhBgHOFGixYgVJx7+dtqutZuY1eXTvXYncJOkOF1Wicd+CnBACA==') format('woff2'),
|
||||||
|
url('iconfont.woff?t=1689233106339') format('woff'),
|
||||||
|
url('iconfont.ttf?t=1689233106339') format('truetype'),
|
||||||
|
url('iconfont.svg?t=1689233106339#iconfont') format('svg');
|
||||||
|
}
|
||||||
|
|
||||||
|
.iconfont {
|
||||||
|
font-family: "iconfont" !important;
|
||||||
|
font-size: 16px;
|
||||||
|
font-style: normal;
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-downward:before {
|
||||||
|
content: "\e604";
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-upward:before {
|
||||||
|
content: "\e605";
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-detail:before {
|
||||||
|
content: "\e601";
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-edit:before {
|
||||||
|
content: "\e602";
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-delete:before {
|
||||||
|
content: "\e603";
|
||||||
|
}
|
||||||
|
|
BIN
src/views/specialEquipment/maintain/iconfont/iconfont.eot
Normal file
BIN
src/views/specialEquipment/maintain/iconfont/iconfont.eot
Normal file
Binary file not shown.
1
src/views/specialEquipment/maintain/iconfont/iconfont.js
Normal file
1
src/views/specialEquipment/maintain/iconfont/iconfont.js
Normal file
File diff suppressed because one or more lines are too long
44
src/views/specialEquipment/maintain/iconfont/iconfont.json
Normal file
44
src/views/specialEquipment/maintain/iconfont/iconfont.json
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
{
|
||||||
|
"id": "3821755",
|
||||||
|
"name": "component",
|
||||||
|
"font_family": "iconfont",
|
||||||
|
"css_prefix_text": "icon-",
|
||||||
|
"description": "封装的组件中的icon",
|
||||||
|
"glyphs": [
|
||||||
|
{
|
||||||
|
"icon_id": "36426261",
|
||||||
|
"name": "downward",
|
||||||
|
"font_class": "downward",
|
||||||
|
"unicode": "e604",
|
||||||
|
"unicode_decimal": 58884
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"icon_id": "36426301",
|
||||||
|
"name": "upward",
|
||||||
|
"font_class": "upward",
|
||||||
|
"unicode": "e605",
|
||||||
|
"unicode_decimal": 58885
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"icon_id": "33347867",
|
||||||
|
"name": "detail",
|
||||||
|
"font_class": "detail",
|
||||||
|
"unicode": "e601",
|
||||||
|
"unicode_decimal": 58881
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"icon_id": "33347918",
|
||||||
|
"name": "edit",
|
||||||
|
"font_class": "edit",
|
||||||
|
"unicode": "e602",
|
||||||
|
"unicode_decimal": 58882
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"icon_id": "33347930",
|
||||||
|
"name": "delete",
|
||||||
|
"font_class": "delete",
|
||||||
|
"unicode": "e603",
|
||||||
|
"unicode_decimal": 58883
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
29
src/views/specialEquipment/maintain/iconfont/iconfont.svg
Normal file
29
src/views/specialEquipment/maintain/iconfont/iconfont.svg
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
<?xml version="1.0" standalone="no"?>
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<metadata>Created by iconfont</metadata>
|
||||||
|
<defs>
|
||||||
|
<font id="iconfont" horiz-adv-x="1024">
|
||||||
|
<font-face
|
||||||
|
font-family="iconfont"
|
||||||
|
font-weight="400"
|
||||||
|
font-stretch="normal"
|
||||||
|
units-per-em="1024"
|
||||||
|
ascent="896"
|
||||||
|
descent="-128"
|
||||||
|
/>
|
||||||
|
<missing-glyph />
|
||||||
|
|
||||||
|
<glyph glyph-name="downward" unicode="" d="M556.942222 144.099556l363.064889 401.806222c24.860444 21.617778 24.860444 56.263111 0 77.880889a68.437333 68.437333 0 0 1-44.942222 16.156444c-16.896 0-33.052444-5.859556-44.885333-16.156444L512 260.949333l-318.236444 362.951111a68.437333 68.437333 0 0 1-44.942223 16.099556c-16.896 0-33.109333-5.802667-44.942222-16.156444-24.746667-21.617778-24.746667-56.206222 0-77.824l363.121778-401.749334c5.973333-5.290667 13.141333-9.443556 21.048889-12.231111 23.722667-8.305778 51.029333-3.527111 68.892444 12.060445z" horiz-adv-x="1024" />
|
||||||
|
|
||||||
|
<glyph glyph-name="upward" unicode="" d="M556.942222 623.900444l363.064889-401.806222c24.860444-21.617778 24.860444-56.263111 0-77.880889a68.437333 68.437333 0 0 0-44.942222-16.156444c-16.896 0-33.052444 5.859556-44.885333 16.156444L512 507.050667l-318.236444-362.951111a68.437333 68.437333 0 0 0-44.942223-16.099556c-16.896 0-33.109333 5.802667-44.942222 16.156444-24.746667 21.617778-24.746667 56.206222 0 77.824L467.057778 623.729778c5.973333 5.290667 13.141333 9.443556 21.048889 12.231111 23.722667 8.305778 51.029333 3.527111 68.892444-12.060445z" horiz-adv-x="1024" />
|
||||||
|
|
||||||
|
<glyph glyph-name="detail" unicode="" d="M902.428444 705.251556H332.401778a7.964444 7.964444 0 0 1-7.793778-8.021334v-56.206222a7.964444 7.964444 0 0 1 7.793778-8.078222h570.026666A7.964444 7.964444 0 0 1 910.222222 641.024v56.206222a7.964444 7.964444 0 0 1-7.793778 8.021334z m0-285.127112H332.401778a7.964444 7.964444 0 0 1-7.793778-7.964444v-56.32a7.964444 7.964444 0 0 1 7.793778-7.964444h570.026666a7.964444 7.964444 0 0 1 7.793778 7.964444v56.32a7.964444 7.964444 0 0 1-7.793778 7.964444z m0-285.070222H332.401778a7.964444 7.964444 0 0 1-7.793778-8.078222v-56.206222a7.964444 7.964444 0 0 1 7.793778-8.021334h570.026666a7.964444 7.964444 0 0 1 7.793778 8.021334v56.206222a7.964444 7.964444 0 0 1-7.793778 8.078222zM113.777778 669.127111c0-20.081778 10.410667-38.684444 27.306666-48.696889a53.361778 53.361778 0 0 1 54.670223 0 56.547556 56.547556 0 0 1 27.306666 48.696889 56.547556 56.547556 0 0 1-27.306666 48.696889 53.361778 53.361778 0 0 1-54.613334 0A56.547556 56.547556 0 0 1 113.777778 669.127111zM113.777778 384c0-20.081778 10.410667-38.684444 27.306666-48.696889a53.361778 53.361778 0 0 1 54.670223 0A56.547556 56.547556 0 0 1 223.061333 384a56.547556 56.547556 0 0 1-27.306666 48.696889 53.361778 53.361778 0 0 1-54.613334 0A56.547556 56.547556 0 0 1 113.777778 384z m0-285.127111c0-20.081778 10.410667-38.684444 27.306666-48.696889a53.361778 53.361778 0 0 1 54.670223 0 56.547556 56.547556 0 0 1 27.306666 48.696889 56.547556 56.547556 0 0 1-27.306666 48.696889 53.361778 53.361778 0 0 1-54.613334 0 56.547556 56.547556 0 0 1-27.363555-48.696889z" horiz-adv-x="1024" />
|
||||||
|
|
||||||
|
<glyph glyph-name="edit" unicode="" d="M873.016889 395.264a32.824889 32.824889 0 0 0 65.649778 0v-273.806222a164.124444 164.124444 0 0 0-164.124445-164.124445h-525.084444A164.124444 164.124444 0 0 0 85.333333 121.457778v525.084444A164.124444 164.124444 0 0 0 249.457778 810.666667h312.32a32.824889 32.824889 0 1 0 0-65.649778h-312.32a98.417778 98.417778 0 0 1-98.474667-98.417778v-525.141333c0-54.385778 44.088889-98.474667 98.417778-98.474667h525.141333a98.417778 98.417778 0 0 1 98.474667 98.417778V395.320889z m-14.222222 362.097778a32.824889 32.824889 0 0 0 48.014222-44.771556L548.750222 328.533333a32.824889 32.824889 0 1 0-48.014222 44.771556l358.115556 384.056889z" horiz-adv-x="1024" />
|
||||||
|
|
||||||
|
<glyph glyph-name="delete" unicode="" d="M601.024 146.24a29.632 29.632 0 0 0-29.696 29.696V503.04a29.632 29.632 0 1 0 59.456 0v-326.848a29.76 29.76 0 0 0-29.76-29.888z m-178.24 0a29.632 29.632 0 0 0-29.696 29.696V503.04a29.632 29.632 0 1 0 59.392 0v-326.848a29.76 29.76 0 0 0-29.696-29.888z m475.52 505.216h-148.544v59.456c0 49.152-39.616 89.088-88.512 89.088H363.392c-49.216 0-89.152-39.936-89.152-89.088v-59.456H125.696a29.632 29.632 0 1 1 0-59.392h772.608a29.632 29.632 0 1 1 0 59.392z m-564.608 59.456c0 16.256 13.44 29.696 29.696 29.696h297.856c16.32 0 29.056-13.12 29.056-29.696v-59.456H333.696v59.456zM720-32h-416a89.152 89.152 0 0 0-89.088 89.088V503.232a29.632 29.632 0 1 0 59.456 0v-446.08c0-16.512 13.44-29.76 29.696-29.76h416.064a29.632 29.632 0 0 1 29.696 29.696V502.144a29.632 29.632 0 1 0 59.456 0v-445.056A89.536 89.536 0 0 0 720-32z" horiz-adv-x="1024" />
|
||||||
|
|
||||||
|
</font>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 4.8 KiB |
BIN
src/views/specialEquipment/maintain/iconfont/iconfont.ttf
Normal file
BIN
src/views/specialEquipment/maintain/iconfont/iconfont.ttf
Normal file
Binary file not shown.
BIN
src/views/specialEquipment/maintain/iconfont/iconfont.woff
Normal file
BIN
src/views/specialEquipment/maintain/iconfont/iconfont.woff
Normal file
Binary file not shown.
BIN
src/views/specialEquipment/maintain/iconfont/iconfont.woff2
Normal file
BIN
src/views/specialEquipment/maintain/iconfont/iconfont.woff2
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user