[需求变更] 资料网员新增/编辑页面合同编号输入框变成下拉选择

This commit is contained in:
zhaoxiao
2021-10-27 15:05:41 +08:00
parent 4fc06160f2
commit 8801eb6388
3 changed files with 70 additions and 50 deletions
@@ -61,8 +61,11 @@ export default {
* 通过企业id获取合同号
*/
initRevenueContractList() {
const param = {
companyId: this.company.id
let param = {}
if (this.company && this.company.id){
param.companyId = this.company.id
} else {
param.companyId = null
}
getAllRevenueContract(param).then(res => {
if (res.success) {