[update] - 支出合同、收入合同-新增页面-增加从iop系统同步合同数据的功能1

This commit is contained in:
fengchenchen
2022-04-06 11:56:42 +08:00
parent 8def8862c4
commit 01cdf55d13
7 changed files with 756 additions and 18 deletions
+8 -1
View File
@@ -56,6 +56,13 @@ export default {
return (
option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0
)
},
// 通过其他的信息 赋值,如 姓名、部门、员工号
setValueByOtherInfo(otherInfo) {
let ele = this.userList.find(tt => tt.realname === otherInfo.realname && tt.orgCodeTxt === otherInfo.orgCodeTxt)
if( ele) {
this.$emit('change', ele.id)
}
}
},
model: {
@@ -67,4 +74,4 @@ export default {
<style scoped>
</style>
</style>
+4 -1
View File
@@ -11,6 +11,9 @@
<img :src="imgForIcon" class="page-header-icon">
<span class="page-header-title">{{ levelTwoTitle }}</span>
</template>
<template>
<slot name="default"></slot>
</template>
</div>
</template>
@@ -74,4 +77,4 @@ export default {
color: #666666;
}
}
</style>
</style>