|
@@ -46,9 +46,9 @@
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="saga-ipnput-view">
|
|
<div class="saga-ipnput-view">
|
|
- <template v-for="item in labelList" v-if="obj.infosKey != 'DPSpecificationID'">
|
|
|
|
|
|
+ <template v-for="(item,index) in labelList" v-if="obj.infosKey != 'DPSpecificationID' ">
|
|
<data-fill
|
|
<data-fill
|
|
- v-if="item.key"
|
|
|
|
|
|
+ v-if="isShow(item,index)"
|
|
:isCreated="create"
|
|
:isCreated="create"
|
|
:renderData="item"
|
|
:renderData="item"
|
|
@change="changefillData"
|
|
@change="changefillData"
|
|
@@ -58,7 +58,7 @@
|
|
<div v-for="item in labelList">
|
|
<div v-for="item in labelList">
|
|
<!-- 一级标签 -->
|
|
<!-- 一级标签 -->
|
|
<h3 style="line-height:32px; color: green;">{{item.FirstTag}}</h3>
|
|
<h3 style="line-height:32px; color: green;">{{item.FirstTag}}</h3>
|
|
- <div v-for="child in item.details">
|
|
|
|
|
|
+ <div v-if="child.SecondTag != '设备厂家' || create" v-for="child in item.details">
|
|
<!-- 二级标签 -->
|
|
<!-- 二级标签 -->
|
|
<h4 style="line-height:32px;padding-left:20px;color: #409EFF;">{{child.SecondTag}}</h4>
|
|
<h4 style="line-height:32px;padding-left:20px;color: #409EFF;">{{child.SecondTag}}</h4>
|
|
<div v-for="detail in child.details">
|
|
<div v-for="detail in child.details">
|
|
@@ -130,17 +130,34 @@ export default {
|
|
isCreateProduct: true,
|
|
isCreateProduct: true,
|
|
productName: "",
|
|
productName: "",
|
|
productId: "",
|
|
productId: "",
|
|
- productOptions: []
|
|
|
|
|
|
+ productOptions: [],
|
|
|
|
+ fm: {
|
|
|
|
+ Infos: {}
|
|
|
|
+ }
|
|
}
|
|
}
|
|
},
|
|
},
|
|
created() { },
|
|
created() { },
|
|
mounted() { },
|
|
mounted() { },
|
|
methods: {
|
|
methods: {
|
|
|
|
+ isShow(item, index) {
|
|
|
|
+ let falg = false
|
|
|
|
+ console.log(item, index)
|
|
|
|
+ if (!item.key || index == 0) {
|
|
|
|
+ falg = false
|
|
|
|
+ } else {
|
|
|
|
+ falg = true
|
|
|
|
+ }
|
|
|
|
+ if (this.create) {
|
|
|
|
+ falg = true
|
|
|
|
+ }
|
|
|
|
+ return falg
|
|
|
|
+ },
|
|
//修改开关
|
|
//修改开关
|
|
changeSwitch() {
|
|
changeSwitch() {
|
|
if (!this.isCreateProduct) {
|
|
if (!this.isCreateProduct) {
|
|
let param = {
|
|
let param = {
|
|
- brandId: this.fmData.Infos.DPBrandID
|
|
|
|
|
|
+ brandId: this.fm.Infos.DPBrandID,
|
|
|
|
+ familyCode: this.fm.Family
|
|
}
|
|
}
|
|
getProductList(param, res => {
|
|
getProductList(param, res => {
|
|
this.productOptions = res.content
|
|
this.productOptions = res.content
|
|
@@ -149,11 +166,13 @@ export default {
|
|
},
|
|
},
|
|
//获取创建信息
|
|
//获取创建信息
|
|
getCreateData() {
|
|
getCreateData() {
|
|
|
|
+ this.fm = tools.deepCopyObj(this.fmData)
|
|
|
|
+ console.log(this.gm, this.fmData, "fmData")
|
|
this.obj = getJson(this.infosKey.split(".")[1])
|
|
this.obj = getJson(this.infosKey.split(".")[1])
|
|
if (this.obj.infosKey != "DPSpecificationID") {
|
|
if (this.obj.infosKey != "DPSpecificationID") {
|
|
this.labelList = this.obj.options.map(item => {
|
|
this.labelList = this.obj.options.map(item => {
|
|
let keyArr = item.key.split("."), data = ""
|
|
let keyArr = item.key.split("."), data = ""
|
|
- item.value = this.fmData.Infos[item.optLabel] || ""
|
|
|
|
|
|
+ item.value = this.fm.Infos[item.optLabel] || ""
|
|
return item
|
|
return item
|
|
})
|
|
})
|
|
} else {
|
|
} else {
|
|
@@ -163,7 +182,7 @@ export default {
|
|
item.details.map(child => {
|
|
item.details.map(child => {
|
|
if (child.details && child.details.length) {
|
|
if (child.details && child.details.length) {
|
|
child.details.map(details => {
|
|
child.details.map(details => {
|
|
- details.value = this.fmData.Infos[details.optLabel] || ""
|
|
|
|
|
|
+ details.value = this.fm.Infos[details.optLabel] || ""
|
|
return details
|
|
return details
|
|
})
|
|
})
|
|
}
|
|
}
|
|
@@ -177,6 +196,7 @@ export default {
|
|
//创建请求
|
|
//创建请求
|
|
createOwn() {
|
|
createOwn() {
|
|
let venderIdArr = ["DPManufacturerID", "DPSupplierID", "DPInsurerID", "DPMaintainerID", "DPBrandID"]
|
|
let venderIdArr = ["DPManufacturerID", "DPSupplierID", "DPInsurerID", "DPMaintainerID", "DPBrandID"]
|
|
|
|
+ console.log(this.fm)
|
|
if (venderIdArr.indexOf(this.obj.infosKey) > -1) {
|
|
if (venderIdArr.indexOf(this.obj.infosKey) > -1) {
|
|
let param = {}
|
|
let param = {}
|
|
param.name = this.getMess('vender.name')
|
|
param.name = this.getMess('vender.name')
|
|
@@ -186,13 +206,13 @@ export default {
|
|
//当其id为品牌id
|
|
//当其id为品牌id
|
|
if (this.obj.infosKey == "DPBrandID") {
|
|
if (this.obj.infosKey == "DPBrandID") {
|
|
param.name = this.getMess('content.name')
|
|
param.name = this.getMess('content.name')
|
|
- param.venderId = this.fmData.Infos.DPManufacturerID
|
|
|
|
|
|
+ param.venderId = this.fm.Infos.DPManufacturerID
|
|
}
|
|
}
|
|
//新建
|
|
//新建
|
|
this.obj.createFunc(param, res => {
|
|
this.obj.createFunc(param, res => {
|
|
- this.fmData.Infos[this.obj.infosKey] = res.id
|
|
|
|
|
|
+ this.fm.Infos[this.obj.infosKey] = res.id
|
|
param = {}
|
|
param = {}
|
|
- param.venderId = this.fmData.Infos[this.obj.infosKey]
|
|
|
|
|
|
+ param.venderId = this.fm.Infos[this.obj.infosKey]
|
|
param.projectId = this.$route.query.projId
|
|
param.projectId = this.$route.query.projId
|
|
//如果存在联系人请求
|
|
//如果存在联系人请求
|
|
if (!!this.obj.update) {
|
|
if (!!this.obj.update) {
|
|
@@ -207,30 +227,30 @@ export default {
|
|
//发起请求
|
|
//发起请求
|
|
this.obj.update(param, res => {
|
|
this.obj.update(param, res => {
|
|
for (let k in this.labelList) {
|
|
for (let k in this.labelList) {
|
|
- this.changeFmData(this.labelList[k].optLabel, this.fmData.Infos)
|
|
|
|
|
|
+ this.changeFmData(this.labelList[k].optLabel, this.fm.Infos)
|
|
}
|
|
}
|
|
- this.updateFm(this.fmData)
|
|
|
|
|
|
+ this.updateFm(this.fm)
|
|
})
|
|
})
|
|
} else {
|
|
} else {
|
|
for (let k in this.labelList) {
|
|
for (let k in this.labelList) {
|
|
- this.changeFmData(this.labelList[k].optLabel, this.fmData.Infos)
|
|
|
|
|
|
+ this.changeFmData(this.labelList[k].optLabel, this.fm.Infos)
|
|
}
|
|
}
|
|
if (this.obj.infosKey == "DPBrandID") {
|
|
if (this.obj.infosKey == "DPBrandID") {
|
|
- this.fmData.Infos.Brand = this.getMess('content.name')
|
|
|
|
- this.fmData.Infos.DPSpecificationID = null
|
|
|
|
|
|
+ this.fm.Infos.Brand = this.getMess('content.name')
|
|
|
|
+ this.fm.Infos.DPSpecificationID = null
|
|
}
|
|
}
|
|
//如果修改的是生产厂家,品牌型号清空
|
|
//如果修改的是生产厂家,品牌型号清空
|
|
if (this.obj.infosKey == "DPManufacturerID") {
|
|
if (this.obj.infosKey == "DPManufacturerID") {
|
|
- this.fmData.Infos.DPBrandID = null
|
|
|
|
- this.fmData.Infos.DPSpecificationID = null
|
|
|
|
|
|
+ this.fm.Infos.DPBrandID = null
|
|
|
|
+ this.fm.Infos.DPSpecificationID = null
|
|
}
|
|
}
|
|
- this.updateFm(this.fmData)
|
|
|
|
|
|
+ this.updateFm(this.fm)
|
|
}
|
|
}
|
|
})
|
|
})
|
|
}
|
|
}
|
|
- let brandId = this.fmData.Infos.DPBrandID
|
|
|
|
|
|
+ let brandId = this.fm.Infos.DPBrandID
|
|
if (this.obj.infosKey == "DPSpecificationID") {
|
|
if (this.obj.infosKey == "DPSpecificationID") {
|
|
- let param = tools.deepCopyObj(this.fmData)
|
|
|
|
|
|
+ let param = tools.deepCopyObj(this.fm)
|
|
param.Infos = {}
|
|
param.Infos = {}
|
|
//取infos中的数据
|
|
//取infos中的数据
|
|
this.labelList.map(item => {
|
|
this.labelList.map(item => {
|
|
@@ -269,7 +289,7 @@ export default {
|
|
let produceParam = {
|
|
let produceParam = {
|
|
brandId: brandId,
|
|
brandId: brandId,
|
|
name: this.productName,
|
|
name: this.productName,
|
|
- eqFamily: this.fmData.Family
|
|
|
|
|
|
+ eqFamily: this.fm.Family
|
|
}
|
|
}
|
|
this.obj.createProduct(produceParam, res => {
|
|
this.obj.createProduct(produceParam, res => {
|
|
let speParam = {
|
|
let speParam = {
|
|
@@ -291,7 +311,7 @@ export default {
|
|
},
|
|
},
|
|
createSpecification(param) {
|
|
createSpecification(param) {
|
|
this.obj.createFunc(param, res => {
|
|
this.obj.createFunc(param, res => {
|
|
- let updateParam = tools.deepCopyObj(this.fmData)
|
|
|
|
|
|
+ let updateParam = tools.deepCopyObj(this.fm)
|
|
updateParam.Infos = {}
|
|
updateParam.Infos = {}
|
|
updateParam.Infos.DPSpecificationID = res.id
|
|
updateParam.Infos.DPSpecificationID = res.id
|
|
this.labelList.map(item => {
|
|
this.labelList.map(item => {
|
|
@@ -329,24 +349,25 @@ export default {
|
|
})
|
|
})
|
|
},
|
|
},
|
|
getData() {
|
|
getData() {
|
|
|
|
+ this.fm = tools.copyArr(this.fmData)
|
|
|
|
+ console.log(this.fmData, this.fm)
|
|
this.isCreateShow = false
|
|
this.isCreateShow = false
|
|
this.obj = {}
|
|
this.obj = {}
|
|
this.obj = getJson(this.infosKey.split(".")[1])
|
|
this.obj = getJson(this.infosKey.split(".")[1])
|
|
- console.log(this.obj)
|
|
|
|
let venders = ["DPSupplierID", "DPInsurerID", "DPManufacturerID"]
|
|
let venders = ["DPSupplierID", "DPInsurerID", "DPManufacturerID"]
|
|
if (!!this.obj) {
|
|
if (!!this.obj) {
|
|
let param = {
|
|
let param = {
|
|
- venderId: this.fmData.Infos[this.obj.infosKey],
|
|
|
|
|
|
+ venderId: this.fm.Infos[this.obj.infosKey],
|
|
projectId: this.$route.query.projId
|
|
projectId: this.$route.query.projId
|
|
}
|
|
}
|
|
if (this.obj.infosKey == "DPBrandID") {
|
|
if (this.obj.infosKey == "DPBrandID") {
|
|
param = {
|
|
param = {
|
|
- brandId: this.fmData.Infos[this.obj.infosKey]
|
|
|
|
|
|
+ brandId: this.fm.Infos[this.obj.infosKey]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if (this.obj.infosKey == "DPSpecificationID") {
|
|
if (this.obj.infosKey == "DPSpecificationID") {
|
|
param = {
|
|
param = {
|
|
- specificationId: this.fmData.Infos[this.obj.infosKey]
|
|
|
|
|
|
+ specificationId: this.fm.Infos[this.obj.infosKey]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
this.obj.getList(param, res => {
|
|
this.obj.getList(param, res => {
|
|
@@ -379,7 +400,7 @@ export default {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
details.value = data
|
|
details.value = data
|
|
- details.oldValue = this.fmData.Infos[details.optLabel]
|
|
|
|
|
|
+ details.oldValue = this.fm.Infos[details.optLabel]
|
|
return details
|
|
return details
|
|
})
|
|
})
|
|
}
|
|
}
|
|
@@ -402,7 +423,7 @@ export default {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
item.value = data || ""
|
|
item.value = data || ""
|
|
- item.oldValue = this.fmData.Infos[item.optLabel] || ""
|
|
|
|
|
|
+ item.oldValue = this.fm.Infos[item.optLabel] || ""
|
|
return item
|
|
return item
|
|
})
|
|
})
|
|
}
|
|
}
|
|
@@ -424,7 +445,7 @@ export default {
|
|
updateSpecification() {
|
|
updateSpecification() {
|
|
console.log("修改型号", this.obj)
|
|
console.log("修改型号", this.obj)
|
|
let param = {
|
|
let param = {
|
|
- specificationId: this.fmData.Infos.DPSpecificationID,
|
|
|
|
|
|
+ specificationId: this.fm.Infos.DPSpecificationID,
|
|
name: "",
|
|
name: "",
|
|
infos: {}
|
|
infos: {}
|
|
}
|
|
}
|
|
@@ -466,13 +487,13 @@ export default {
|
|
//修改
|
|
//修改
|
|
updateVender() {
|
|
updateVender() {
|
|
let param = {}
|
|
let param = {}
|
|
- param.venderId = this.fmData.Infos[this.obj.infosKey]
|
|
|
|
|
|
+ param.venderId = this.fm.Infos[this.obj.infosKey]
|
|
param.projectId = this.$route.query.projId
|
|
param.projectId = this.$route.query.projId
|
|
param.name = this.getMess('vender.name')
|
|
param.name = this.getMess('vender.name')
|
|
param.website = this.getMess('vender.website')
|
|
param.website = this.getMess('vender.website')
|
|
if (this.obj.infosKey == "DPBrandID") {
|
|
if (this.obj.infosKey == "DPBrandID") {
|
|
param = {
|
|
param = {
|
|
- brandId: this.fmData.Infos[this.obj.infosKey],
|
|
|
|
|
|
+ brandId: this.fm.Infos[this.obj.infosKey],
|
|
name: this.getMess('content.name')
|
|
name: this.getMess('content.name')
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -484,7 +505,7 @@ export default {
|
|
//修改厂商联系人信息
|
|
//修改厂商联系人信息
|
|
updatePhone() {
|
|
updatePhone() {
|
|
let param = {}
|
|
let param = {}
|
|
- param.venderId = this.fmData.Infos[this.obj.infosKey]
|
|
|
|
|
|
+ param.venderId = this.fm.Infos[this.obj.infosKey]
|
|
param.projectId = this.$route.query.projId
|
|
param.projectId = this.$route.query.projId
|
|
if (this.obj.name == "生产商") {
|
|
if (this.obj.name == "生产商") {
|
|
param.name = this.getMess('vender.name')
|
|
param.name = this.getMess('vender.name')
|
|
@@ -496,18 +517,19 @@ export default {
|
|
}
|
|
}
|
|
this.obj.update(param, res => {
|
|
this.obj.update(param, res => {
|
|
for (let k in this.labelList) {
|
|
for (let k in this.labelList) {
|
|
- this.changeFmData(this.labelList[k].optLabel, this.fmData.Infos)
|
|
|
|
|
|
+ this.changeFmData(this.labelList[k].optLabel, this.fm.Infos)
|
|
}
|
|
}
|
|
// this.dialog.visible = false
|
|
// this.dialog.visible = false
|
|
- this.updateFm(this.fmData)
|
|
|
|
|
|
+ this.updateFm(this.fm)
|
|
})
|
|
})
|
|
},
|
|
},
|
|
//修改资产
|
|
//修改资产
|
|
updateFm(param) {
|
|
updateFm(param) {
|
|
|
|
+ let list = tools.copyArr(param)
|
|
upDateTableMain({
|
|
upDateTableMain({
|
|
ProjId: this.$route.query.projId,
|
|
ProjId: this.$route.query.projId,
|
|
UserId: this.$route.query.userId
|
|
UserId: this.$route.query.userId
|
|
- }, [param]).then(res => {
|
|
|
|
|
|
+ }, [list]).then(res => {
|
|
if (res.data.Result == "success") {
|
|
if (res.data.Result == "success") {
|
|
this.$emit("change")
|
|
this.$emit("change")
|
|
console.log("venderChange")
|
|
console.log("venderChange")
|