信用=>信息
This commit is contained in:
		| @@ -12,7 +12,7 @@ import CompanyDetail from "./companyDetail"; | |||||||
| export default { | export default { | ||||||
|   name: "AppCreditReport", |   name: "AppCreditReport", | ||||||
|   components: {CompanyDetail, PersonDetail, Home}, |   components: {CompanyDetail, PersonDetail, Home}, | ||||||
|   label: "信用报告", |   label: "信息报告", | ||||||
|   props: { |   props: { | ||||||
|     instance: Function, |     instance: Function, | ||||||
|     dict: Object, |     dict: Object, | ||||||
|   | |||||||
| @@ -1,9 +1,9 @@ | |||||||
| <template> | <template> | ||||||
|   <section class="companyDetail"> |   <section class="companyDetail"> | ||||||
|     <ai-detail> |     <ai-detail> | ||||||
|       <ai-title slot="title" title="企业信用报告" isShowBottomBorder> |       <ai-title slot="title" title="企业信息报告" isShowBottomBorder> | ||||||
|         <template #rightBtn> |         <template #rightBtn> | ||||||
|           <el-button @click="$router.push({})">返回信用报告</el-button> |           <el-button @click="$router.push({})">返回信息报告</el-button> | ||||||
|         </template> |         </template> | ||||||
|       </ai-title> |       </ai-title> | ||||||
|       <template #content> |       <template #content> | ||||||
|   | |||||||
| @@ -1,7 +1,7 @@ | |||||||
| <template> | <template> | ||||||
|   <section class="home"> |   <section class="home"> | ||||||
|     <ai-detail> |     <ai-detail> | ||||||
|       <ai-title slot="title" title="信用报告查询工具" isShowBottomBorder/> |       <ai-title slot="title" title="信息报告查询工具" isShowBottomBorder/> | ||||||
|       <template #content> |       <template #content> | ||||||
|         <el-input v-model="search.param" :placeholder="placeholder" @change="page.current=1,handleSearch()" clearable> |         <el-input v-model="search.param" :placeholder="placeholder" @change="page.current=1,handleSearch()" clearable> | ||||||
|           <el-select slot="prepend" v-model="search.type" :clearable="false" @change="search.param=''"> |           <el-select slot="prepend" v-model="search.type" :clearable="false" @change="search.param=''"> | ||||||
|   | |||||||
| @@ -1,9 +1,9 @@ | |||||||
| <template> | <template> | ||||||
|   <section class="personDetail"> |   <section class="personDetail"> | ||||||
|     <ai-detail> |     <ai-detail> | ||||||
|       <ai-title slot="title" title="个人信用报告" isShowBottomBorder> |       <ai-title slot="title" title="个人信息报告" isShowBottomBorder> | ||||||
|         <template #rightBtn> |         <template #rightBtn> | ||||||
|           <el-button @click="$router.push({})">返回信用报告</el-button> |           <el-button @click="$router.push({})">返回信息报告</el-button> | ||||||
|         </template> |         </template> | ||||||
|       </ai-title> |       </ai-title> | ||||||
|       <template #content> |       <template #content> | ||||||
|   | |||||||
| @@ -11,7 +11,7 @@ import Add from "./add"; | |||||||
| export default { | export default { | ||||||
|   name: "AppCreditReportApply", |   name: "AppCreditReportApply", | ||||||
|   components: {Add, List}, |   components: {Add, List}, | ||||||
|   label: "信用报告申请", |   label: "信息报告申请", | ||||||
|   props: { |   props: { | ||||||
|     instance: Function, |     instance: Function, | ||||||
|     dict: Object, |     dict: Object, | ||||||
|   | |||||||
| @@ -26,7 +26,7 @@ | |||||||
|               </ai-card> |               </ai-card> | ||||||
|             </el-form> |             </el-form> | ||||||
|           </el-tab-pane> |           </el-tab-pane> | ||||||
|           <el-tab-pane label="信用报告" lazy> |           <el-tab-pane label="信息报告" lazy> | ||||||
|             <component :is="creditReport" v-bind="cpParams"/> |             <component :is="creditReport" v-bind="cpParams"/> | ||||||
|           </el-tab-pane> |           </el-tab-pane> | ||||||
|         </el-tabs> |         </el-tabs> | ||||||
|   | |||||||
| @@ -1,7 +1,7 @@ | |||||||
| <template> | <template> | ||||||
|   <section class="list"> |   <section class="list"> | ||||||
|     <ai-list> |     <ai-list> | ||||||
|       <ai-title slot="title" title="信用报告申请" isShowBottomBorder/> |       <ai-title slot="title" title="信息报告申请" isShowBottomBorder/> | ||||||
|       <template #content> |       <template #content> | ||||||
|         <ai-search-bar> |         <ai-search-bar> | ||||||
|           <template #right> |           <template #right> | ||||||
|   | |||||||
| @@ -120,7 +120,7 @@ export default { | |||||||
|             const link = document.createElement('a') |             const link = document.createElement('a') | ||||||
|             link.style.display = 'none' |             link.style.display = 'none' | ||||||
|             link.href = res.data |             link.href = res.data | ||||||
|             link.setAttribute('download', this.info.name + '信用报告.pdf') |             link.setAttribute('download', this.info.name + '信息报告.pdf') | ||||||
|             document.body.appendChild(link) |             document.body.appendChild(link) | ||||||
|             link.click() |             link.click() | ||||||
|             document.body.removeChild(link) |             document.body.removeChild(link) | ||||||
|   | |||||||
| @@ -125,7 +125,7 @@ export default { | |||||||
|             const link = document.createElement('a') |             const link = document.createElement('a') | ||||||
|             link.style.display = 'none' |             link.style.display = 'none' | ||||||
|             link.href = res.data |             link.href = res.data | ||||||
|             link.setAttribute('download', this.info.name + '信用报告.pdf') |             link.setAttribute('download', this.info.name + '信息报告.pdf') | ||||||
|             document.body.appendChild(link) |             document.body.appendChild(link) | ||||||
|             link.click() |             link.click() | ||||||
|             document.body.removeChild(link) |             document.body.removeChild(link) | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user