feat: 设备管理-卡片开发

dev_ksck2.0
chenhc 1 year ago
parent 95dc6614c2
commit a27627b5bc

@ -0,0 +1,48 @@
import axios from "@/utils/request";
export function filterDeviceUser(query) {
return axios(
{
url: "/inv/device/user/filter",
method: "get",
params: query
}
)
}
export function insertCompanyUser(query) {
return axios(
{
url: "/inv/info/insertDeviceUser",
method: "post",
data: query
}
);
}
export function deleteDeviceUser(query) {
return axios(
{
url: "/inv/info/deleteDeviceUser",
method: "post",
data: query
}
);
}
export function updateDeviceUser(query) {
return axios(
{
url: "/inv/info/updateDeviceUser",
method: "post",
data: query
}
);
}

@ -170,6 +170,7 @@
<deviceModifyDialog
:rowData="this.rowData"
:editSaveDev="editSaveDev"
:maintainsList = "this.maintainsList"
>
</deviceModifyDialog>
</el-tab-pane>
@ -187,6 +188,10 @@
</el-tab-pane>
<el-tab-pane label="相关人员">
<invDeviceUserEditDialog
:idQuery="filterQuery"
:rowData="this.rowData">
</invDeviceUserEditDialog>
</el-tab-pane>
<el-tab-pane label="维修记录">
</el-tab-pane>
@ -250,6 +255,7 @@ import DeviceModelDetail from "@/views/dev/DeviceModelDetail.vue";
import inspectSetModifyDialog from "@/views/dev/InspectSetModifyDialog.vue";
import checkResultPanel from "@/views/dev/invDeviceEditDialog.vue";
import technical from "@/views/dev/invTechniclDialog.vue";
import invDeviceUserEditDialog from "@/views/dev/invDeviceUserEditDialog.vue";
import {getBasicUnitMaintains, getCorpList} from "@/api/basic/basicUnitMaintain";
export default {
@ -270,6 +276,7 @@ export default {
filterQuery: {
deptCode: this.$store.getters.locDeptCode,
deviceName: null,
devCodeFk: null,
code: null,
ggxh: null,
batchNo: null,
@ -376,6 +383,7 @@ export default {
this.filterQuery = {
deptCode: this.$store.getters.locDeptCode,
deviceName: null,
devCodeFk: null,
code: null,
ggxh: null,
batchNo: null,
@ -560,9 +568,12 @@ export default {
deptDeviceModifyDialog,
inspectSetModifyDialog,
DeviceModelDetail,
deviceModifyDialog
deviceModifyDialog,
invDeviceUserEditDialog
},
created() {
this.filterQuery = this.rowData
this.filterQuery.devCodeFk = this.rowData.deviceCode
this.getDeptList();
this.getBasicUnitMaintainsList();
},

@ -95,14 +95,31 @@
<el-row>
<el-col :span="10">
<el-form-item label="生产日期:">
<el-input v-model="formData.productionDate" placeholder="请输入生产日期" style="width: 90%"
clearable></el-input>
<!-- <el-input v-model="formData.productionDate" placeholder="请输入生产日期" style="width: 90%"-->
<!-- clearable>-->
<el-date-picker
style="width: 90%"
v-model="formData.productionDate"
type="date"
placeholder="请输入生产日期"f
format="yyyy 年 MM 月 dd 日"
value-format="yyyy-MM-dd">
</el-date-picker>
<!-- </el-input>-->
</el-form-item>
</el-col>
<el-col :span="10">
<el-form-item label="失效日期:">
<el-input v-model="formData.expireDate" placeholder="请输入失效日期" style="width: 90%"
clearable></el-input>
<!-- <el-input v-model="formData.expireDate" placeholder="请输入失效日期" style="width: 90%"-->
<!-- clearable></el-input>-->
<el-date-picker
style="width: 90%"
v-model="formData.expireDate"
type="date"
placeholder="请输入失效日期"f
format="yyyy 年 MM 月 dd 日"
value-format="yyyy-MM-dd">
</el-date-picker>
</el-form-item>
</el-col>
</el-row>
@ -129,8 +146,29 @@
</el-form-item>
</el-col>
<el-col :span="10">
<el-form-item label="供应商:">
<el-input v-model="formData.supName" placeholder="请输入供应商" style="width: 90%" clearable></el-input>
<el-form-item label="供应商:" prop="supId" style="width: 92%">
<!-- <el-input v-model="formData.supName" placeholder="请输入供应商" style="width: 90%" clearable></el-input>-->
<el-select
v-model="formData.supId"
filterable
remote
clearable="true"
reserve-keyword
placeholder="请选择供应商"
:loading="loading"
style="width: 100%;"
@change="supChange"
>
<el-option
v-for="item in maintainsList"
:key="item.id"
:label="item.name"
:value="item.id"
>
<span style="float: left" >{{ item.name }}</span>
</el-option>
</el-select>
</el-form-item>
</el-col>
</el-row>
@ -183,6 +221,10 @@ export default {
editSaveDev: {
type: Function,
required: true
},
maintainsList: {
type: Array,
required: true
}
},
name: "deptDeviceModifyDialog",
@ -209,6 +251,10 @@ export default {
};
},
methods: {
supChange(val) {
this.formData.supName = this.maintainsList.find(item => item.id == val).name
this.formData.supId = val
},
deptChange() {
this.formData.invCode = null;
this.formData.manager = null;
@ -263,6 +309,7 @@ export default {
this.rowData.measname = this.formData.measname;
this.rowData.zczbhhzbapzbh = this.formData.zczbhhzbapzbh;
this.rowData.supName = this.formData.supName;
this.rowData.supId = this.formData.supId;
this.rowData.remark = this.formData.remark;
this.editSaveDev();
}
@ -289,6 +336,7 @@ export default {
},
created() {
console.log(this.rowData);
console.log(this.maintainsList.length);
this.formData = JSON.parse(JSON.stringify(this.rowData));
console.log(this.formData);
},

@ -3,14 +3,16 @@
<el-form :model="inputQuery" :rules="rules" ref="inputQuery" label-width="100px">
<div style=" float: right;
text-align: right;
margin-bottom: 8px;">
margin-bottom: 8px;"
>
<el-button type="primary" size="mini" icon="search" @click="addCert"
style="text-align:right"
>添加资质证书
</el-button>
</div>
<el-table v-loading="certLoading" :data="certList" style=" width: 100%;margin-top: 20px" border
highlight-current-row>
highlight-current-row
>
<el-table-column type="index" label="序号" width="50"></el-table-column>
<el-table-column label="证书名称" prop="name"></el-table-column>
<el-table-column label="证书编号" prop="code"></el-table-column>
@ -52,7 +54,8 @@
</el-table-column>
</el-table>
<el-image-viewer v-if="imgViewerVisible" style="z-index:9999" :on-close="closeImgViewer"
:url-list="imgList"/>
:url-list="imgList"
/>
<pagination
v-show="certTotal>0"
:total="certTotal"
@ -63,14 +66,14 @@
<el-dialog
title="添加资质证书"
:title="formMap[formName]"
:visible.sync="addCertVisible"
:close-on-click-modal="false"
:close-on-press-escape="false"
width="70%"
v-if="addCertVisible"
append-to-body
@close='closeLocalDialog'
@close="closeLocalDialog"
>
<deviceAddCert
:closeDialog="closeLocalDialog"
@ -86,22 +89,22 @@
</template>
<script>
import {modifyCompany, addCompany, bindCorp, previewImage} from "@/api/purchase/supCompany";
import store from "@/store";
import {regionDataPlus, CodeToText} from "element-china-area-data";
import {deleteDeviceCert, updateDeviceCert} from "@/api/dev/deviceCert";
import {filterDeviceCert} from "@/api/dev/deviceCert";
import corpMaintainSelect from "@/views/basic/corpMaintain/corpMaintainSelect"
import deviceAddCert from "@/views/inventory/cert/depCertAddDialog.vue";
import draggable from "vuedraggable";
import {getUUID, isBlank} from "@/utils/strUtil";
import supCertSetSelectDialog from "@/views/purchase/cert/supCertSetSelectDialog";
import {getBasicUnitMaintains, getCorpList} from "@/api/basic/basicUnitMaintain";
import ElImageViewer from "element-ui/packages/image/src/image-viewer"
import { modifyCompany, addCompany, bindCorp, previewImage } from '@/api/purchase/supCompany'
import store from '@/store'
import { regionDataPlus, CodeToText } from 'element-china-area-data'
import { deleteDeviceCert, updateDeviceCert } from '@/api/dev/deviceCert'
import { filterDeviceCert } from '@/api/dev/deviceCert'
import corpMaintainSelect from '@/views/basic/corpMaintain/corpMaintainSelect'
import deviceAddCert from '@/views/inventory/cert/depCertAddDialog.vue'
import draggable from 'vuedraggable'
import { getUUID, isBlank } from '@/utils/strUtil'
import supCertSetSelectDialog from '@/views/purchase/cert/supCertSetSelectDialog'
import { getBasicUnitMaintains, getCorpList } from '@/api/basic/basicUnitMaintain'
import ElImageViewer from 'element-ui/packages/image/src/image-viewer'
export default {
name: "invDeviceEdit",
name: 'invDeviceEdit',
props: {
// closeDialog: {
// type: Function,
@ -117,23 +120,28 @@ export default {
// }
idQuery: {
type: Object,
required: true,
required: true
},
rowData: {
type: Object,
required: true,
},
required: true
}
},
watch: {
rowData: function (newVal, oldVal) {
rowData: function(newVal, oldVal) {
this.searchData(newVal);
this.searchData(newVal)
}
}
,
data() {
return {
formName: null,
formMap: {
"add": "添加资质证书",
"edit": "编辑资质证书"
},
BASE_URL: process.env.VUE_APP_BASE_API,
headers: {},
classesDisplay: false,
@ -147,94 +155,94 @@ export default {
companyName: null,
contacts: null,
mobile: null,
detailAddr: null,
detailAddr: null
},
rules: {
companyName: [
{
required: true,
message: "请输入企业名称",
trigger: "blur"
message: '请输入企业名称',
trigger: 'blur'
}
],
creditNum: [
{
required: true,
message: "请输入统一社会信用代码",
trigger: "blur"
message: '请输入统一社会信用代码',
trigger: 'blur'
}
],
classes: [
{
required: true,
message: "请选择企业类别",
trigger: "change"
message: '请选择企业类别',
trigger: 'change'
}
],
area: [
{
required: true,
message: "请选择所属地区",
trigger: "change"
message: '请选择所属地区',
trigger: 'change'
}
],
detailAddr: [
{
required: true,
message: "请输入详细地址",
trigger: "change"
message: '请输入详细地址',
trigger: 'change'
}
],
contacts: [
{
required: true,
message: "请输入联系人",
trigger: "change"
message: '请输入联系人',
trigger: 'change'
}
],
mobile: [
{
required: true,
message: "请输入联系电话",
trigger: "change"
message: '请输入联系电话',
trigger: 'change'
}
],
email: [
{
required: true,
message: "请输入邮箱",
trigger: "change"
message: '请输入邮箱',
trigger: 'change'
}
],
updateCause: [
{
required: true,
message: "请输入变更原因",
trigger: "change"
message: '请输入变更原因',
trigger: 'change'
}
],
]
},
uploadUrl: "",
fileUrl: "",
certFileUrl: "",
uploadUrl: '',
fileUrl: '',
certFileUrl: '',
url: 'http://127.0.0.1:9996/udiwms/image/register/file/getImage?type=image1&name=t11111.jpg',
certQuery: {
devCodeFk: "",
devCodeFk: '',
page: 1,
limit: 20,
type: 1
},
expire: {
0: "有效",
1: "失效"
0: '有效',
1: '失效'
},
certList: [],
certTotal: 0,
certLoading: false,
addCertVisible: false,
salesmanQuery: {
name: "",
name: '',
page: 1,
limit: 20
},
@ -247,9 +255,9 @@ export default {
},
selectLocalVisible: false,
productQuery: {
ylqxzcrbarmc: "",
cpmctymc: "",
ggxh: "",
ylqxzcrbarmc: '',
cpmctymc: '',
ggxh: '',
page: 1,
limit: 20
},
@ -260,170 +268,170 @@ export default {
uuid: null,
companyApplyUpdateVisible: false,
companyEditDisabled: true,
companyEditButtonStr: "编辑",
addType: "1", //12
companyEditButtonStr: '编辑',
addType: '1', //12
checkFlag: {
0: "草稿",
1: "已通过",
2: "已拒绝",
3: "变更未审核",
6: "未审核",
0: '草稿',
1: '已通过',
2: '已拒绝',
3: '变更未审核',
6: '未审核'
},
editTye: 1,
selectCorpVisible: false,
selectCertVisible: false,
certType: 1,
customerId: null,
customerId: null
};
},
created() {
// console.log("this.rowData:")
// console.log(this.rowData)
// if (this.rowData.editType == 1) {
// this.getDeviceCertList();
// }
// this.getBasicUnitMaintainsList();
this.headers = {
ADMINID: store.getters.adminId,
ADMINTOKEN: store.getters.token,
};
},
components: {
draggable, deviceAddCert, corpMaintainSelect, supCertSetSelectDialog, ElImageViewer
}
}
,
methods: {
searchData(query) {
console.log("完成!")
console.log(query)
this.idQuery = {...query}
// console.log('')
// console.log(query)
this.idQuery = { ...query }
this.getDeviceCertList();
this.getDeviceCertList()
},
//
showImgViewer(row) {
this.certFileUrl = this.BASE_URL + "/udiwms/image/register/file/getImage?type=image2&name=";
this.imgList = [];
previewImage({imageUrl: row.filePath, certFileUrl: this.certFileUrl}).then(response => {
this.certFileUrl = this.BASE_URL + '/udiwms/image/register/file/getImage?type=image2&name='
this.imgList = []
previewImage({ imageUrl: row.filePath, certFileUrl: this.certFileUrl }).then(response => {
if (response.code === 20000) {
this.imgList = response.data;
this.imgList = response.data
}
});
this.imgViewerVisible = true;
})
this.imgViewerVisible = true
const m = (e) => {
e.preventDefault()
};
document.body.style.overflow = 'hidden';
document.addEventListener("touchmove", m, false); //
}
document.body.style.overflow = 'hidden'
document.addEventListener('touchmove', m, false) //
},
closeImgViewer() {
this.imgViewerVisible = false;
this.imgViewerVisible = false
const m = (e) => {
e.preventDefault()
};
document.body.style.overflow = 'auto';
document.removeEventListener("touchmove", m, true);
}
document.body.style.overflow = 'auto'
document.removeEventListener('touchmove', m, true)
},
selectBasicCorp() {
this.selectCorpVisible = true;
this.selectCorpVisible = true
},
cancelDialog() {
this.closeDialog();
this.closeDialog()
},
//
closeLocalDialog() {
this.addCertVisible = false;
this.selectCertVisible = false;
this.addCertVisible = false
this.selectCertVisible = false
// this.getCompanyCertList();
this.getDeviceCertList();
this.getDeviceCertList()
}
,
//
addCert(row) {
console.log("this.inputQuery.devCodeFk",this.inputQuery.devCodeFk)
if (isBlank(this.inputQuery.devCodeFk)) {
return this.$message.error("请先选择设备");
return this.$message.error('请先选择设备')
}
console.log(this.inputQuery.devCodeFk)
if (this.$isNotBlank(row) && this.$isNotBlank(row.id)) {
this.formName = 2
this.inputQuery.formData = row;
this.editTye = 2;
this.formName = "edit"
this.inputQuery.formData = row
this.editTye = 2
} else {
this.formName = 1;
this.inputQuery.formData = {};
this.inputQuery.formData.addType = 1;
this.editTye = 1;
this.formName = "add"
this.inputQuery.formData = {}
this.inputQuery.formData.addType = 1
this.editTye = 1
}
this.addCertVisible = true;
this.addCertVisible = true
}
,
//
certHandleCurrentChange(val) {
this.certQuery.page = val.page;
this.certQuery.page = val.page
// this.getCompanyCertList();
this.getDeviceCertList();
this.getDeviceCertList()
},
getDeviceCertList() {
this.certLoading = true;
this.certLoading = true
// let certRuery = {}
// this.certQuery.customerId = this.inputEdit.customerId;
console.log("获取idQuery")
console.log(this.idQuery)
this.certQuery.devCodeFk = this.idQuery.code;
this.certQuery.type=1;
this.inputQuery={...this.idQuery};
this.inputQuery.devCodeFk=this.idQuery.code;
console.log(this.inputQuery);
console.log("获取this.certQuery:")
console.log(this.certQuery)
// console.log('idQuery')
// console.log(this.idQuery)
this.certQuery.devCodeFk = this.idQuery.devCodeFk
this.certQuery.type = 1
this.inputQuery = { ...this.idQuery }
this.inputQuery.devCodeFk = this.idQuery.devCodeFk
// console.log(this.inputQuery)
// console.log('this.certQuery:')
// console.log(this.certQuery)
filterDeviceCert(this.certQuery)
.then((response) => {
this.certLoading = false;
this.certList = response.data.list || [];
this.certTotal = response.data.total;
this.certLoading = false
this.certList = response.data.list || []
this.certTotal = response.data.total
})
.catch(() => {
this.certLoading = false;
this.certList = [];
});
this.certLoading = false
this.certList = []
})
},
deleteDeviceCert(row) {
this.$confirm("是否删除?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
this.$confirm('是否删除?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
this.certLoading = true;
this.certLoading = true
let tquery = {
id: row.id,
filePath: row.filePath,
};
filePath: row.filePath
}
deleteDeviceCert(tquery)
.then((response) => {
this.certLoading = false;
this.certLoading = false
if (response.code === 20000) {
this.getDeviceCertList();
this.getDeviceCertList()
this.$message({
type: "success",
message: "删除成功!",
});
type: 'success',
message: '删除成功!'
})
} else {
this.$message.error(response.message);
this.$message.error(response.message)
}
})
.catch(() => {
this.certLoading = false;
});
this.certLoading = false
})
}).catch(() => {
});
},
})
}
}
,
created() {
// console.log(" idQuery",this.idQuery)
// if (this.rowData.editType == 1) {
this.getDeviceCertList()
// }
// this.getBasicUnitMaintainsList();
this.headers = {
ADMINID: store.getters.adminId,
ADMINTOKEN: store.getters.token
}
},
components: {
draggable, deviceAddCert, corpMaintainSelect, supCertSetSelectDialog, ElImageViewer
}
// filters: {
// statusFilterType(status) {
// const statusMap = {
@ -437,7 +445,7 @@ export default {
// ,
// },
}
;
</script>
<style scoped>
.itemTag {

@ -0,0 +1,456 @@
<template>
<div>
<el-form :model="inputQuery" :rules="rules" ref="inputQuery" label-width="100px">
<div style=" float: right;
text-align: right;
margin-bottom: 8px;"
>
<el-button type="primary" size="mini" icon="search" @click="addCert"
style="text-align:right"
>添加相关人员
</el-button>
</div>
<el-table v-loading="certLoading" :data="certList" style=" width: 100%;margin-top: 20px" border
highlight-current-row
>
<el-table-column type="index" label="序号" width="50"></el-table-column>
<el-table-column label="人员类别" prop="userType">
<template slot-scope="scope">
<span>{{ dict.type.device_user_type[scope.row.userType].label }}</span>
</template>
</el-table-column>
<el-table-column label="人员名称" prop="userName"></el-table-column>
<el-table-column label="联系电话" prop="contact1"></el-table-column>
<el-table-column label="其他联系方式" prop="contact2"></el-table-column>
<el-table-column label="备注" prop="remark"></el-table-column>
<el-table-column label="操作" width="140">
<template slot-scope="scope">
<el-button
type="text"
size="small"
@click.native="addCert(scope.row)"
>编辑
</el-button
>
<el-button
type="text"
size="small"
@click.native="deleteDeviceCert(scope.row)"
>删除
</el-button>
</template>
</el-table-column>
</el-table>
<el-image-viewer v-if="imgViewerVisible" style="z-index:9999" :on-close="closeImgViewer"
:url-list="imgList"
/>
<pagination
v-show="certTotal>0"
:total="certTotal"
:page.sync="certQuery.page"
:limit.sync="certQuery.limit"
@pagination="certHandleCurrentChange"
></pagination>
<el-dialog
:title="formMap[formName]"
:visible.sync="addCertVisible"
:close-on-click-modal="false"
:close-on-press-escape="false"
width="70%"
v-if="addCertVisible"
append-to-body
@close="closeLocalDialog"
>
<depUserAddDialog
:closeDialog="closeLocalDialog"
:inputQuery="inputQuery"
:addType="addType"
:editTye="editTye"
:deviceUserType="dict.type.device_user_type"
></depUserAddDialog>
</el-dialog>
</el-form>
</div>
</template>
<script>
import { modifyCompany, addCompany, bindCorp, previewImage } from '@/api/purchase/supCompany'
import store from '@/store'
import { regionDataPlus, CodeToText } from 'element-china-area-data'
import { filterDeviceUser,insertCompanyUser,deleteDeviceUser,updateDeviceUser } from '@/api/dev/deviceUser'
import corpMaintainSelect from '@/views/basic/corpMaintain/corpMaintainSelect'
import depUserAddDialog from '@/views/inventory/user/depUserAddDialog.vue'
import draggable from 'vuedraggable'
import { getUUID, isBlank } from '@/utils/strUtil'
import supCertSetSelectDialog from '@/views/purchase/cert/supCertSetSelectDialog'
import { getBasicUnitMaintains, getCorpList } from '@/api/basic/basicUnitMaintain'
import ElImageViewer from 'element-ui/packages/image/src/image-viewer'
export default {
name: 'invDeviceUserEditDialog',
dicts: ['device_user_type'],
props: {
// closeDialog: {
// type: Function,
// required: true,
// },
// inputEdit: {
// type: Object,
// required: true,
// },
// editType: {
// type: Number,
// required: true,
// }
idQuery: {
type: Object,
required: true
},
rowData: {
type: Object,
required: true
}
},
watch: {
rowData: function(newVal, oldVal) {
this.searchData(newVal)
}
}
,
data() {
return {
formName: null,
formMap: {
"add": "添加相关人员",
"edit": "编辑相关人员"
},
BASE_URL: process.env.VUE_APP_BASE_API,
headers: {},
classesDisplay: false,
selectedOptions: [],
imgViewerVisible: false,
imgList: [],
options: regionDataPlus,
inputQuery: {
// customerId: null,
devCodeFk: null,
companyName: null,
contacts: null,
mobile: null,
detailAddr: null
},
rules: {
companyName: [
{
required: true,
message: '请输入企业名称',
trigger: 'blur'
}
],
creditNum: [
{
required: true,
message: '请输入统一社会信用代码',
trigger: 'blur'
}
],
classes: [
{
required: true,
message: '请选择企业类别',
trigger: 'change'
}
],
area: [
{
required: true,
message: '请选择所属地区',
trigger: 'change'
}
],
detailAddr: [
{
required: true,
message: '请输入详细地址',
trigger: 'change'
}
],
contacts: [
{
required: true,
message: '请输入联系人',
trigger: 'change'
}
],
mobile: [
{
required: true,
message: '请输入联系电话',
trigger: 'change'
}
],
email: [
{
required: true,
message: '请输入邮箱',
trigger: 'change'
}
],
updateCause: [
{
required: true,
message: '请输入变更原因',
trigger: 'change'
}
]
},
uploadUrl: '',
fileUrl: '',
certFileUrl: '',
url: 'http://127.0.0.1:9996/udiwms/image/register/file/getImage?type=image1&name=t11111.jpg',
certQuery: {
devCodeFk: '',
page: 1,
limit: 20,
type: 1
},
expire: {
0: '有效',
1: '失效'
},
certList: [],
certTotal: 0,
certLoading: false,
addCertVisible: false,
salesmanQuery: {
name: '',
page: 1,
limit: 20
},
salesmanList: [],
salesmanTotal: 0,
salesmanLoading: false,
addSalesmanVisible: false,
certTypeMap: {
1: '身份证'
},
selectLocalVisible: false,
productQuery: {
ylqxzcrbarmc: '',
cpmctymc: '',
ggxh: '',
page: 1,
limit: 20
},
maintainsList: [],
productList: [],
productTotal: 0,
productLoading: false,
uuid: null,
companyApplyUpdateVisible: false,
companyEditDisabled: true,
companyEditButtonStr: '编辑',
addType: '1', //12
checkFlag: {
0: '草稿',
1: '已通过',
2: '已拒绝',
3: '变更未审核',
6: '未审核'
},
editTye: 1,
selectCorpVisible: false,
selectCertVisible: false,
certType: 1,
customerId: null
}
}
,
methods: {
searchData(query) {
console.log('完成!')
console.log(query)
this.idQuery = { ...query }
this.getDeviceCertList()
},
//
showImgViewer(row) {
this.certFileUrl = this.BASE_URL + '/udiwms/image/register/file/getImage?type=image2&name='
this.imgList = []
previewImage({ imageUrl: row.filePath, certFileUrl: this.certFileUrl }).then(response => {
if (response.code === 20000) {
this.imgList = response.data
}
})
this.imgViewerVisible = true
const m = (e) => {
e.preventDefault()
}
document.body.style.overflow = 'hidden'
document.addEventListener('touchmove', m, false) //
},
closeImgViewer() {
this.imgViewerVisible = false
const m = (e) => {
e.preventDefault()
}
document.body.style.overflow = 'auto'
document.removeEventListener('touchmove', m, true)
},
selectBasicCorp() {
this.selectCorpVisible = true
},
cancelDialog() {
this.closeDialog()
},
//
closeLocalDialog() {
this.addCertVisible = false
this.selectCertVisible = false
// this.getCompanyCertList();
this.getDeviceCertList()
}
,
//
addCert(row) {
// console.log("this.inputQuery.devCodeFk",this.inputQuery.devCodeFk)
if (isBlank(this.inputQuery.devCodeFk)) {
return this.$message.error('请先选择设备')
}
// console.log(this.inputQuery.devCodeFk)
if (this.$isNotBlank(row) && this.$isNotBlank(row.id)) {
this.formName = "edit"
this.inputQuery.formData = row
this.editTye = 2
} else {
this.formName = "add"
this.inputQuery.formData = {}
this.inputQuery.formData.addType = 1
this.editTye = 1
}
this.addCertVisible = true
}
,
//
certHandleCurrentChange(val) {
this.certQuery.page = val.page
// this.getCompanyCertList();
this.getDeviceCertList()
},
getDeviceCertList() {
this.certLoading = true
// let certRuery = {}
// this.certQuery.customerId = this.inputEdit.customerId;
// console.log('idQuery')
// console.log(this.idQuery)
this.certQuery.devCodeFk = this.idQuery.devCodeFk
this.certQuery.type = 1
this.inputQuery = { ...this.idQuery }
this.inputQuery.devCodeFk = this.idQuery.devCodeFk
// console.log(this.inputQuery)
// console.log('this.certQuery:')
// console.log(this.certQuery)
filterDeviceUser(this.certQuery)
.then((response) => {
this.certLoading = false
this.certList = response.data.list || []
this.certTotal = response.data.total
})
.catch(() => {
this.certLoading = false
this.certList = []
})
},
deleteDeviceCert(row) {
this.$confirm('是否删除?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
this.certLoading = true
let tquery = {
id: row.id,
filePath: row.filePath
}
deleteDeviceUser(tquery)
.then((response) => {
this.certLoading = false
if (response.code === 20000) {
this.getDeviceCertList()
this.$message({
type: 'success',
message: '删除成功!'
})
} else {
this.$message.error(response.message)
}
})
.catch(() => {
this.certLoading = false
})
}).catch(() => {
})
}
}
,
created() {
// console.log(" idQuery",this.idQuery)
// if (this.rowData.editType == 1) {
this.getDeviceCertList()
// }
// this.getBasicUnitMaintainsList();
this.headers = {
ADMINID: store.getters.adminId,
ADMINTOKEN: store.getters.token
}
},
components: {
draggable, depUserAddDialog, corpMaintainSelect, supCertSetSelectDialog, ElImageViewer
}
}
</script>
<style scoped>
.itemTag {
float: left;
text-align: left;
margin-top: 10px;
width: 120px;
}
.text {
width: 100%;
font-size: 13px;
font-family: "Microsoft YaHei";
}
.el-card {
margin-right: 20px;
margin-top: 15px;
/*transition: all .5s;*/
}
.el-row {
display: flex;
flex-wrap: wrap;
}
.el-col {
border-radius: 4px;
flex-wrap: wrap;
}
</style>

@ -62,7 +62,7 @@
<el-dialog
title="添加资质证书"
:title="formMap[formName]"
:visible.sync="addCertVisible"
:close-on-click-modal="false"
:close-on-press-escape="false"
@ -133,6 +133,11 @@ export default {
,
data() {
return {
formName: null,
formMap: {
"add": "添加技术资料",
"edit": "编辑技术资料"
},
BASE_URL: process.env.VUE_APP_BASE_API,
headers: {},
classesDisplay: false,
@ -276,21 +281,6 @@ export default {
customerId: null,
};
},
created() {
// console.log("this.rowData:")
// console.log(this.rowData)
// // if (this.rowData.editType == 1) {
// // this.getDeviceCertList();
// // }
// this.getBasicUnitMaintainsList();
this.headers = {
ADMINID: store.getters.adminId,
ADMINTOKEN: store.getters.token,
};
},
components: {
draggable, deviceAddCert, corpMaintainSelect, supCertSetSelectDialog, ElImageViewer
}
,
methods: {
@ -347,11 +337,11 @@ export default {
}
console.log(this.inputQuery.devCodeFk)
if (this.$isNotBlank(row) && this.$isNotBlank(row.id)) {
this.formName = 2
this.formName = "edit"
this.inputQuery.formData = row;
this.editTye = 2;
} else {
this.formName = 1;
this.formName = "add"
this.inputQuery.formData = {};
this.inputQuery.formData.addType = 2;
this.editTye = 1;
@ -383,10 +373,10 @@ export default {
// this.certQuery.customerId = this.inputEdit.customerId;
console.log("获取idQuery")
console.log(this.idQuery)
this.certQuery.devCodeFk = this.idQuery.code;
this.certQuery.devCodeFk = this.idQuery.devCodeFk;
this.certQuery.type = 2;
this.inputQuery={...this.idQuery};
this.inputQuery.devCodeFk=this.idQuery.code;
this.inputQuery.devCodeFk=this.idQuery.devCodeFk;
console.log(this.inputQuery);
console.log("获取this.certQuery:")
console.log(this.certQuery)
@ -433,6 +423,21 @@ export default {
});
},
},
created() {
// console.log("this.rowData:")
// console.log(this.rowData)
// // if (this.rowData.editType == 1) {
this.getDeviceCertList();
// // }
// this.getBasicUnitMaintainsList();
this.headers = {
ADMINID: store.getters.adminId,
ADMINTOKEN: store.getters.token,
};
},
components: {
draggable, deviceAddCert, corpMaintainSelect, supCertSetSelectDialog, ElImageViewer
}
}
;

@ -51,6 +51,7 @@ let item = {
measname: null,
ggxh: null,
supName: null,
supId: null,
manufactory: null,
editFlag: true,
}
@ -263,8 +264,8 @@ export default {
},
//设备编辑保存
editSaveDev() {
// this.curDevRow = row;
editSaveDev(row) {
this.curDevRow = row;
this.deviceInfoFlag = false;
},

@ -174,6 +174,7 @@ export default {
code: "",
isCleck:false,
formData: {
devCodeFk: null,
type: 0,
vailDate: null,
expireDate: null,
@ -250,19 +251,19 @@ export default {
},
onSubmit() {
this.formData.devCodeFk = this.inputQuery.code;
if (this.formData.devCodeFk == null) {
this.formData.devCodeFk = store.getters.code;
}
this.formData.devCodeFk = this.inputQuery.devCodeFk;
// if (this.formData.devCodeFk == null) {
// this.formData.devCodeFk = store.getters.devCodeFk;
// }
// this.formData.type = this.addType;
console.log("this.addType的值判断是技术还是资质");
console.log(this.addType);
//12
if (this.addType == 1) {
this.formData.devCodeFk = this.inputQuery.code;
this.formData.devCodeFk = this.inputQuery.devCodeFk;
this.formData.type = 1;
} else if (this.addType == 2) {
this.formData.devCodeFk = this.inputQuery.code;
this.formData.devCodeFk = this.inputQuery.devCodeFk;
this.formData.type = 2;
}
// if (this.formData.auditStatus != 1)
@ -373,12 +374,12 @@ export default {
this.formData = {}
} else {
this.formData = this.inputQuery.formData;
console.log(this.inputQuery.formData);
// console.log(this.inputQuery.formData);
}
console.log("证书")
console.log(this.inputQuery)
console.log("证书1")
console.log(this.formData)
// console.log("")
// console.log(this.inputQuery)
// console.log("1")
// console.log(this.formData)
if (this.formData.filePath != null) {
this.choiceFile = "更换文件";
this.isCleck=true;

@ -0,0 +1,336 @@
<template>
<div>
<el-form :model="formData" :rules="formRules" ref="dataForm">
<el-card style="margin-top: -30px">
<el-button-group style="display: flex">
<el-button type="primary" @click.native="submitUpload()" style="margin: 0 60px 10px auto; height: 35px"
:loading="loading">提交
</el-button>
</el-button-group>
<el-row>
<el-col :span="3">
<div class="ao-text">
<span>人员类别</span>
</div>
</el-col>
<el-col :span="8">
<el-form-item prop="userType">
<el-select v-model="formData.userType" style="width: 100%" placeholder="请选择人员类别"
clearable="true" @change="thirdSysChange">
<el-option
v-for="item in deviceUserType"
:key="item.value"
:label="item.label"
:value="item.value">
<span style="float: left;font-size: 13px">{{ item.label }}</span>
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="3">
<div class="ao-text">
<span>人员名称</span>
</div>
</el-col>
<el-col :span="8">
<el-form-item prop="userName">
<el-input v-model="formData.userName" auto-complete="off" :disabled="editTye == 2"></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="3">
<div class="ao-text">
<span>联系电话</span>
</div>
</el-col>
<el-col :span="8">
<el-form-item prop="contact1">
<el-input v-model="formData.contact1" auto-complete="off" ></el-input>
</el-form-item>
</el-col>
<el-col :span="3">
<div class="ao-text">
<span>其他联系方式</span>
</div>
</el-col>
<el-col :span="8">
<el-form-item prop="contact2">
<el-input v-model="formData.contact2" auto-complete="off" ></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="3">
<div class="ao-text">
<span>备注</span>
</div>
</el-col>
<el-col :span="8">
<el-form-item prop="remark">
<el-input v-model="formData.remark" auto-complete="off" type="textarea" autosize></el-input>
</el-form-item>
</el-col>
</el-row>
</el-card>
</el-form>
</div>
</template>
<script>
import draggable from "vuedraggable";
import store from "../../../store";
import { filterDeviceUser,insertCompanyUser,deleteDeviceUser,updateDeviceUser } from '@/api/dev/deviceUser'
import ElImageViewer from "element-ui/packages/image/src/image-viewer"
export default {
name: "depUserAddDialog",
props: {
closeDialog: {
type: Function,
required: true,
},
deviceUserType: {
type: Array,
required: true,
},
inputQuery: {
type: Object,
required: true,
},
editTye: {
type: Object,//1:2
required: true,
},
addType: {
type: Object,
required: true,
},
},
data() {
/* 手机号 */
var isMobileNumber = (rule, value, callback) => {
if (!value) {
return new Error('请输入电话号码')
} else {
const reg = /^1[3|4|5|7|8][0-9]\d{8}$/
const isPhone = reg.test(value)
value = Number(value) //
if (typeof value === 'number' && !isNaN(value)) {
//
value = value.toString() //
if (value.length < 0 || value.length > 12 || !isPhone) {
//11
callback(new Error('手机号码格式如:138xxxx8754'))
} else {
callback()
}
} else {
callback(new Error('请输入电话号码'))
}
}
}
return {
BASE_URL: process.env.VUE_APP_BASE_API,
code: "",
isCleck:false,
formData: {
devCodeFk: null,
type: 0,
contact1: null,
contact2: null,
remark: null,
userType: null,
userName: null,
auditStatus: 6
},
formRules: {
contact1: [
{ required: true, message: '请输入手机号码', trigger: 'blur' },
{ validator: isMobileNumber, trigger: 'blur' }
],
userName: [
{required: true, message: "请输入人员名称", trigger: "blur"}
],
userType: [
{required: true, message: "请选择人员类别", trigger: "blur"}
],
},
loading: false,
uploadUrl: "",
fileList: [],
headers: {},
choiceFile: "选取文件",
};
},
components: {
draggable,
ElImageViewer
},
methods: {
submitUpload() {
this.$refs["dataForm"].validate(valid => {
if (!valid) {
this.$message.error("请核对表单内容是否合法");
return
} else {
this.onSubmit()
}
})
},
onConfirmSubmit(val) {
this.formData.repeatUpload = val;
if (this.$isNotBlank(this.formData.filePath)) {
if (this.$refs.upload.uploadFiles.length > 0) {
this.$refs.upload.submit();
this.onSubmit();
} else {
this.onSubmit();
}
} else {
if (this.$refs.upload.uploadFiles.length > 0) {
this.$refs.upload.submit();
} else {
this.$message.warning(`请选择文件`);
}
}
},
onSubmit() {
this.formData.devCodeFk = this.inputQuery.devCodeFk;
if (this.editTye == 1) {
insertCompanyUser(this.formData).then(response => {
this.loading = false;
if (response.code === 20000) {
this.$message.success("添加成功");
this.closeDialog(true);
} else {
this.$message.error(response.message);
}
});
} else {
updateDeviceUser(this.formData).then(response => {
this.loading = false;
if (response.code === 20000) {
this.$message.success("添加成功");
this.closeDialog(true);
} else {
this.$message.error(response.message);
}
});
}
},
uploadHandleRemove(file, fileList) {
this.formData.filePath="";
for (var i=0;i<fileList.length;i++){
this.formData.filePath+=fileList[i].response.data.name+",";
}
},
uploadHandlePreview(file) {
},
uploadHandleExceed(files, fileList) {
},
uploadOnchange(file, fileList) {
let fileName = file.name;
let uid = file.uid
let pos = fileName.lastIndexOf(".");
let lastName = fileName.substring(pos, fileName.length);
if (lastName.toLowerCase() !== ".jpg" && lastName.toLowerCase() !== ".png" && lastName.toLowerCase() !== ".doc") {
this.$message.error("上传文件只能是 jpg,png格式");
for (let i = 0; i < fileList.length; i++) {//list
if (fileList[i].uid === uid) {
fileList.splice(i, 1)
}
}
return;
}
//
const isLt = file.size / 1024 / 1024 / 3 <= 1;
if (!isLt) {
this.$message.error("上传文件大小不能超过 3MB");
for (let i = 0; i < fileList.length; i++) {
if (fileList[i].uid === uid) {
fileList.splice(i, 1)
}
}
}
return isLt;
},
uploadHandleSuccess(response, file, fileList) {
if (response.code === 20000) {
if(this.formData.filePath==null || this.isCleck==true){
this.formData.filePath=response.data.name+",";
this.isCleck=false;
}else{
this.formData.filePath+=response.data.name+",";
}
} else {
this.$message.error("文件上传失败:" + response.message);
}
},
uploadHandleError() {
},
toViewCompanyCert() {
this.certFileUrl = this.BASE_URL + "/udiwms/image/register/file/getImage?type=image2&name=";
window.open(this.certFileUrl + this.formData.filePath);
},
},
filters: {},
mounted() {
document.body.ondrop = function (event) {
event.preventDefault();
event.stopPropagation();
};
},
created() {
this.uploadUrl = this.BASE_URL + "/udiwms/upload/register/file";
this.headers = {
ADMINID: store.getters.adminId,
ADMINTOKEN: store.getters.token,
};
if (this.inputQuery.formData == null) {
this.formData = {}
} else if (this.inputQuery.formData != null && this.inputQuery.formData.addType == 1) {
this.formData = {}
} else {
this.formData = this.inputQuery.formData;
}
if (this.formData.filePath != null) {
this.choiceFile = "更换文件";
this.isCleck=true;
} else {
this.choiceFile = "选取文件";
}
},
};
</script>
<style scoped>
.ao-text {
width: 100%;
font-size: 13px;
font-family: "Microsoft YaHei";
float: right;
text-align: right;
margin-top: 10px;
}
</style>
Loading…
Cancel
Save