监管端相关方人员新增查询条件-企业

pet_li_6.6
liujun 2024-04-26 14:45:14 +08:00
parent 906c10d1f2
commit 3fadbc6c67
2 changed files with 52 additions and 4 deletions

View File

@ -31,6 +31,18 @@
</el-button> </el-button>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="6">
<el-form-item label="归属企业">
<el-select v-model="BELONG_TO_CORP" filterable placeholder="请选择" style="width: 100%" >
<el-option
v-for="item in companyList"
:key="item.BELONG_TO_CORP"
:label="item.BELONG_TO_CORP_NAME"
:value="item.BELONG_TO_CORP"/>
</el-select>
</el-form-item>
</el-col>
</el-row> </el-row>
</el-form> </el-form>
<el-table <el-table
@ -126,7 +138,9 @@ export default {
studyStatusList: [], studyStatusList: [],
checkStatusList: [], checkStatusList: [],
STUDY_STATUS: '', STUDY_STATUS: '',
CHECK_STATUS: '' CHECK_STATUS: '',
BELONG_TO_CORP: '',
companyList: []
} }
}, },
created() { created() {
@ -159,6 +173,7 @@ export default {
this.STATUS = '' this.STATUS = ''
this.CHECK_STATUS = '' this.CHECK_STATUS = ''
this.STUDY_STATUS = '' this.STUDY_STATUS = ''
this.BELONG_TO_CORP = ''
this.getQuery() this.getQuery()
}, },
getList() { getList() {
@ -168,7 +183,8 @@ export default {
{ {
KEYWORDS: this.KEYWORDS, KEYWORDS: this.KEYWORDS,
CHECK_STATUS: this.CHECK_STATUS, CHECK_STATUS: this.CHECK_STATUS,
STUDY_STATUS: this.STUDY_STATUS STUDY_STATUS: this.STUDY_STATUS,
BELONG_TO_CORP: this.BELONG_TO_CORP
} }
).then((data) => { ).then((data) => {
this.listLoading = false this.listLoading = false
@ -270,6 +286,13 @@ export default {
}).catch((e) => { }).catch((e) => {
this.listLoading = false this.listLoading = false
}) })
requestFN(
'/xgf/user/getAllCorpInfo', {}
).then((data) => {
this.companyList = data.list
}).catch((e) => {
this.loading = false
})
} }
} }
} }

View File

@ -31,6 +31,17 @@
</el-button> </el-button>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="6">
<el-form-item label="归属企业">
<el-select v-model="BELONG_TO_CORP" filterable placeholder="请选择" style="width: 100%" >
<el-option
v-for="item in companyList"
:key="item.BELONG_TO_CORP"
:label="item.BELONG_TO_CORP_NAME"
:value="item.BELONG_TO_CORP"/>
</el-select>
</el-form-item>
</el-col>
</el-row> </el-row>
</el-form> </el-form>
<el-table <el-table
@ -126,7 +137,9 @@ export default {
studyStatusList: [], studyStatusList: [],
checkStatusList: [], checkStatusList: [],
STUDY_STATUS: '', STUDY_STATUS: '',
CHECK_STATUS: '' CHECK_STATUS: '',
BELONG_TO_CORP: '',
companyList: []
} }
}, },
created() { created() {
@ -157,6 +170,9 @@ export default {
goKeyReset() { goKeyReset() {
this.KEYWORDS = '' this.KEYWORDS = ''
this.STATUS = '' this.STATUS = ''
this.CHECK_STATUS = ''
this.BELONG_TO_CORP = ''
this.STUDY_STATUS = ''
this.getQuery() this.getQuery()
}, },
getList() { getList() {
@ -167,7 +183,8 @@ export default {
KEYWORDS: this.KEYWORDS, KEYWORDS: this.KEYWORDS,
Step: '1', Step: '1',
CHECK_STATUS: this.CHECK_STATUS, CHECK_STATUS: this.CHECK_STATUS,
STUDY_STATUS: this.STUDY_STATUS STUDY_STATUS: this.STUDY_STATUS,
BELONG_TO_CORP: this.BELONG_TO_CORP
} }
).then((data) => { ).then((data) => {
this.listLoading = false this.listLoading = false
@ -269,6 +286,14 @@ export default {
}).catch((e) => { }).catch((e) => {
this.listLoading = false this.listLoading = false
}) })
requestFN(
'/xgf/user/getAllCorpInfo', {}
).then((data) => {
this.companyList = data.list
}).catch((e) => {
this.loading = false
})
} }
} }
} }