整合
This commit is contained in:
@@ -27,7 +27,9 @@
|
|||||||
<el-form-item label="企业主体" v-if="detail.enterpriseId">
|
<el-form-item label="企业主体" v-if="detail.enterpriseId">
|
||||||
<el-row type="flex">
|
<el-row type="flex">
|
||||||
{{ detail.enterpriseName }}
|
{{ detail.enterpriseName }}
|
||||||
<el-link type="primary" @click="isShow=true">企业详情</el-link>
|
<ai-dialog-btn text="企业详情" :dialog-title="detail.enterpriseName||'企业详情'">
|
||||||
|
<enterprise-dialog v-if="detail.enterpriseId" :enterprise-id="detail.enterpriseId" :instance="instance" :dict="dict"/>
|
||||||
|
</ai-dialog-btn>
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="所在地区">{{ detail.areaName }}</el-form-item>
|
<el-form-item label="所在地区">{{ detail.areaName }}</el-form-item>
|
||||||
@@ -36,7 +38,9 @@
|
|||||||
<el-form-item label="联系人">
|
<el-form-item label="联系人">
|
||||||
<el-row type="flex">
|
<el-row type="flex">
|
||||||
{{ detail.name }}
|
{{ detail.name }}
|
||||||
<person-credit-report :person="detail" :instance="instance" :dict="dict"/>
|
<ai-dialog-btn text="个人详情" :dialog-title="detail.name||'个人详情'">
|
||||||
|
<person-credit-report :personId="detail.idNumber" :instance="instance" :dict="dict"/>
|
||||||
|
</ai-dialog-btn>
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="身份证号">{{ detail.idNumber }}</el-form-item>
|
<el-form-item label="身份证号">{{ detail.idNumber }}</el-form-item>
|
||||||
@@ -93,20 +97,6 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
</ai-dialog>
|
</ai-dialog>
|
||||||
<ai-dialog class="dialog" :title="detail.enterpriseName||'企业详情'" :visible.sync="isShow" width="1200px" customFooter>
|
|
||||||
<enterprise-dialog v-if="detail.enterpriseId" :enterprise-id="detail.enterpriseId" :instance="instance"
|
|
||||||
:dict="dict"/>
|
|
||||||
<template #footer>
|
|
||||||
<el-button @click="isShow=false">关闭</el-button>
|
|
||||||
</template>
|
|
||||||
</ai-dialog>
|
|
||||||
<ai-dialog class="dialog" :title="detail.enterpriseName||'企业详情'" :visible.sync="isShow" width="1200px" customFooter>
|
|
||||||
<enterprise-dialog v-if="detail.enterpriseId" :enterprise-id="detail.enterpriseId" :instance="instance"
|
|
||||||
:dict="dict"/>
|
|
||||||
<template #footer>
|
|
||||||
<el-button @click="isShow=false">关闭</el-button>
|
|
||||||
</template>
|
|
||||||
</ai-dialog>
|
|
||||||
</section>
|
</section>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -114,10 +104,11 @@
|
|||||||
import {mapState} from "vuex";
|
import {mapState} from "vuex";
|
||||||
import EnterpriseDialog from "../../../components/enterpriseDialog";
|
import EnterpriseDialog from "../../../components/enterpriseDialog";
|
||||||
import PersonCreditReport from "../../../components/personCreditReport";
|
import PersonCreditReport from "../../../components/personCreditReport";
|
||||||
|
import AiDialogBtn from "../../../components/AiDialogBtn";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "loanDetail",
|
name: "loanDetail",
|
||||||
components: {PersonCreditReport, EnterpriseDialog},
|
components: {AiDialogBtn, PersonCreditReport, EnterpriseDialog},
|
||||||
props: {
|
props: {
|
||||||
instance: Function,
|
instance: Function,
|
||||||
dict: Object,
|
dict: Object,
|
||||||
@@ -147,7 +138,6 @@ export default {
|
|||||||
loanDate: [{required: true, message: "请选择 放款日期"}],
|
loanDate: [{required: true, message: "请选择 放款日期"}],
|
||||||
auditDescription: [{required: true, message: "请输入 审批意见"}],
|
auditDescription: [{required: true, message: "请输入 审批意见"}],
|
||||||
},
|
},
|
||||||
isShow: false,
|
|
||||||
personCR: false
|
personCR: false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -26,14 +26,18 @@
|
|||||||
<el-form-item label="企业主体" v-if="detail.applyType==1">
|
<el-form-item label="企业主体" v-if="detail.applyType==1">
|
||||||
<el-row type="flex">
|
<el-row type="flex">
|
||||||
{{ detail.enterpriseName }}
|
{{ detail.enterpriseName }}
|
||||||
<el-link type="primary" @click="isShow=true">企业详情</el-link>
|
<ai-dialog-btn text="企业详情" :dialog-title="detail.enterpriseName||'企业详情'">
|
||||||
|
<enterprise-dialog v-if="detail.enterpriseId" :enterprise-id="detail.enterpriseId" :instance="instance" :dict="dict"/>
|
||||||
|
</ai-dialog-btn>
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item v-else/>
|
<el-form-item v-else/>
|
||||||
<el-form-item label="联系人">
|
<el-form-item label="联系人">
|
||||||
<el-row type="flex">
|
<el-row type="flex">
|
||||||
<div v-text="detail.name"/>
|
<div v-text="detail.name"/>
|
||||||
<person-credit-report :person="detail" :instance="instance" :dict="dict"/>
|
<ai-dialog-btn text="个人详情" :dialog-title="detail.name||'个人详情'">
|
||||||
|
<person-credit-report :personId="detail.idNumber" :instance="instance" :dict="dict"/>
|
||||||
|
</ai-dialog-btn>
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="所在地区">{{ detail.areaName }}</el-form-item>
|
<el-form-item label="所在地区">{{ detail.areaName }}</el-form-item>
|
||||||
@@ -45,14 +49,6 @@
|
|||||||
</template>
|
</template>
|
||||||
</ai-card>
|
</ai-card>
|
||||||
</el-form>
|
</el-form>
|
||||||
<ai-dialog class="dialog" :title="detail.enterpriseName||'企业详情'" :visible.sync="isShow" width="1200px"
|
|
||||||
customFooter>
|
|
||||||
<enterprise-dialog v-if="detail.enterpriseId" :enterprise-id="detail.enterpriseId" :instance="instance"
|
|
||||||
:dict="dict"/>
|
|
||||||
<template #footer>
|
|
||||||
<el-button @click="isShow=false">关闭</el-button>
|
|
||||||
</template>
|
|
||||||
</ai-dialog>
|
|
||||||
</template>
|
</template>
|
||||||
</ai-detail>
|
</ai-detail>
|
||||||
</section>
|
</section>
|
||||||
@@ -62,10 +58,11 @@
|
|||||||
import {mapState} from "vuex";
|
import {mapState} from "vuex";
|
||||||
import EnterpriseDialog from "../../../components/enterpriseDialog";
|
import EnterpriseDialog from "../../../components/enterpriseDialog";
|
||||||
import PersonCreditReport from "../../../components/personCreditReport";
|
import PersonCreditReport from "../../../components/personCreditReport";
|
||||||
|
import AiDialogBtn from "../../../components/AiDialogBtn";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "needsDetail",
|
name: "needsDetail",
|
||||||
components: {PersonCreditReport, EnterpriseDialog},
|
components: {AiDialogBtn, PersonCreditReport, EnterpriseDialog},
|
||||||
props: {
|
props: {
|
||||||
instance: Function,
|
instance: Function,
|
||||||
dict: Object,
|
dict: Object,
|
||||||
@@ -81,7 +78,6 @@ export default {
|
|||||||
return {
|
return {
|
||||||
detail: {},
|
detail: {},
|
||||||
info: {},
|
info: {},
|
||||||
isShow: false,
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|||||||
@@ -23,15 +23,17 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="企业主体" v-if="detail.applyType==1">
|
<el-form-item label="企业主体" v-if="detail.applyType==1">
|
||||||
{{ detail.enterpriseName }}
|
{{ detail.enterpriseName }}
|
||||||
<el-link type="primary" @click="showEnterpriseDetail=true">
|
<ai-dialog-btn text="企业详情" :dialog-title="detail.enterpriseName||'企业详情'">
|
||||||
企业详情
|
<enterprise-dialog v-if="detail.enterpriseId" :enterprise-id="detail.enterpriseId" :instance="instance" :dict="dict"/>
|
||||||
</el-link>
|
</ai-dialog-btn>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item v-else/>
|
<el-form-item v-else/>
|
||||||
<el-form-item label="联系人">
|
<el-form-item label="联系人">
|
||||||
<el-row type="flex">
|
<el-row type="flex">
|
||||||
{{ detail.createUserName }}
|
{{ detail.createUserName }}
|
||||||
<person-credit-report :person="detail" :instance="instance" :dict="dict"/>
|
<ai-dialog-btn text="个人详情" :dialog-title="detail.name||'个人详情'">
|
||||||
|
<person-credit-report :personId="detail.idNumber" :instance="instance" :dict="dict"/>
|
||||||
|
</ai-dialog-btn>
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="所在地区">{{ detail.areaName }}</el-form-item>
|
<el-form-item label="所在地区">{{ detail.areaName }}</el-form-item>
|
||||||
@@ -75,14 +77,6 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
</ai-dialog>
|
</ai-dialog>
|
||||||
<ai-dialog class="dialog" :title="detail.enterpriseName||'企业详情'" :visible.sync="showEnterpriseDetail" width="1200px"
|
|
||||||
customFooter>
|
|
||||||
<enterprise-dialog v-if="detail.enterpriseId" :enterprise-id="detail.enterpriseId" :instance="instance"
|
|
||||||
:dict="dict"/>
|
|
||||||
<template #footer>
|
|
||||||
<el-button @click="showEnterpriseDetail=false">关闭</el-button>
|
|
||||||
</template>
|
|
||||||
</ai-dialog>
|
|
||||||
</section>
|
</section>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -90,10 +84,12 @@
|
|||||||
import {mapState} from "vuex";
|
import {mapState} from "vuex";
|
||||||
import EnterpriseDialog from "../../../components/enterpriseDialog";
|
import EnterpriseDialog from "../../../components/enterpriseDialog";
|
||||||
import PersonCreditReport from "../../../components/personCreditReport";
|
import PersonCreditReport from "../../../components/personCreditReport";
|
||||||
|
import AiDialogBtn from "../../../components/AiDialogBtn";
|
||||||
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "grabDetail",
|
name: "grabDetail",
|
||||||
components: {PersonCreditReport, EnterpriseDialog},
|
components: {AiDialogBtn, PersonCreditReport, EnterpriseDialog},
|
||||||
props: {
|
props: {
|
||||||
instance: Function,
|
instance: Function,
|
||||||
dict: Object,
|
dict: Object,
|
||||||
@@ -115,7 +111,6 @@ export default {
|
|||||||
auditLifespan: [{required: true, message: "请选择 使用期限"}],
|
auditLifespan: [{required: true, message: "请选择 使用期限"}],
|
||||||
loanDate: [{required: true, message: "请选择 放款日期"}],
|
loanDate: [{required: true, message: "请选择 放款日期"}],
|
||||||
},
|
},
|
||||||
showEnterpriseDetail: false
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|||||||
34
project/xiushan/components/AiDialogBtn.vue
Normal file
34
project/xiushan/components/AiDialogBtn.vue
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
<template>
|
||||||
|
<section class="AiDialogBtn">
|
||||||
|
<div @click="dialog=true">
|
||||||
|
<slot v-if="$scopedSlots.btn" name="btn"/>
|
||||||
|
<el-button type="text">{{ text }}</el-button>
|
||||||
|
</div>
|
||||||
|
<ai-dialog :visible.sync="dialog" :title="dialogTitle" width="1200px" customFooter>
|
||||||
|
<slot/>
|
||||||
|
<template #footer>
|
||||||
|
<el-button @click="dialog=false">关闭</el-button>
|
||||||
|
</template>
|
||||||
|
</ai-dialog>
|
||||||
|
</section>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: "AiDialogBtn",
|
||||||
|
props: {
|
||||||
|
text: {default: "点击弹窗"},
|
||||||
|
dialogTitle: {default: "展示信息"}
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
dialog: false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.AiDialogBtn {
|
||||||
|
}
|
||||||
|
</style>
|
||||||
Reference in New Issue
Block a user