工程合并
This commit is contained in:
parent
67ec45b7ea
commit
6c36d1646b
|
|
@ -0,0 +1,15 @@
|
|||
<template>
|
||||
<div class="app-container">工程合并</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {}
|
||||
},
|
||||
created() {},
|
||||
methods: {}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped></style>
|
||||
|
|
@ -392,24 +392,24 @@ export default {
|
|||
this.projectInfoList()
|
||||
}
|
||||
},
|
||||
// watch: {
|
||||
// 'maForm.teamId'(newVal) {
|
||||
// console.log("kkkkkkkkkkkkkkkkkkkk",newVal)
|
||||
// if (newVal && this.maForm.proId) {
|
||||
// this.getAgreementId()
|
||||
// } else {
|
||||
// this.equipmentTypeList = []
|
||||
// }
|
||||
// },
|
||||
// 'maForm.proId'(newVal) {
|
||||
// console.log("ppppppppppppppppppppppp",newVal)
|
||||
// if (newVal && this.maForm.teamId) {
|
||||
// this.getAgreementId()
|
||||
// } else {
|
||||
// this.equipmentTypeList = []
|
||||
// }
|
||||
// }
|
||||
// },
|
||||
watch: {
|
||||
'maForm.teamId'(newVal) {
|
||||
console.log('🚀 ~ maForm.teamId:', newVal)
|
||||
if (newVal && this.maForm.proId) {
|
||||
this.getAgreementId()
|
||||
} else {
|
||||
this.equipmentTypeList = []
|
||||
}
|
||||
},
|
||||
'maForm.proId'(newVal) {
|
||||
console.log('🚀 ~ maForm.proId:', newVal)
|
||||
if (newVal && this.maForm.teamId) {
|
||||
this.getAgreementId()
|
||||
} else {
|
||||
this.equipmentTypeList = []
|
||||
}
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
// 获取协议id
|
||||
async getAgreementId() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue