导入 导出
This commit is contained in:
@@ -1,36 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div class="AppPropertyAdministration">
|
|
||||||
<AppPropertyAdministration
|
|
||||||
slot="content"
|
|
||||||
:instance="instance"
|
|
||||||
:dict="dict"
|
|
||||||
:permissions="permissions">
|
|
||||||
</AppPropertyAdministration>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import AppPropertyAdministration from './components/AppPropertyAdministration.vue'
|
|
||||||
export default {
|
|
||||||
name: "AppPropertyAdministration",
|
|
||||||
label: "产权管理",
|
|
||||||
components: {
|
|
||||||
AppPropertyAdministration,
|
|
||||||
},
|
|
||||||
props: {
|
|
||||||
instance: Function,
|
|
||||||
dict: Object,
|
|
||||||
permissions: Function
|
|
||||||
},
|
|
||||||
data() {
|
|
||||||
return {}
|
|
||||||
},
|
|
||||||
methods: {},
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
|
||||||
.AppPropertyAdministration {
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
<template>
|
|
||||||
<ai-list class="loansAudit">
|
|
||||||
<template slot="title">
|
|
||||||
<ai-title title="产权管理" isShowBottomBorder :isShowBottomBorder="true" :isShowArea="true" v-model="areaId"></ai-title>
|
|
||||||
</template>
|
|
||||||
<template slot="content">
|
|
||||||
</template>
|
|
||||||
|
|
||||||
</ai-list>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
export default {
|
|
||||||
name: "loansAudit",
|
|
||||||
props: {
|
|
||||||
instance: Function,
|
|
||||||
dict: Object
|
|
||||||
},
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
}
|
|
||||||
},
|
|
||||||
methods: {}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
|
||||||
.loansAudit {}
|
|
||||||
</style>
|
|
||||||
@@ -8,7 +8,7 @@
|
|||||||
<ai-card title="基本信息">
|
<ai-card title="基本信息">
|
||||||
<template #right v-if="params.id">
|
<template #right v-if="params.id">
|
||||||
<span style="color:#2266FF;margin-left: 16px;cursor: pointer;font-size: 12px;" v-if="isEdit==true" @click="isEdit=false">取消</span>
|
<span style="color:#2266FF;margin-left: 16px;cursor: pointer;font-size: 12px;" v-if="isEdit==true" @click="isEdit=false">取消</span>
|
||||||
<span style="color:#2266FF;margin-left: 16px;cursor: pointer;font-size: 12px;" v-if="isEdit==true" @click="comfirm()">保存</span>
|
<span style="color:#2266FF;margin-left: 16px;cursor: pointer;font-size: 12px;" v-if="isEdit==true" @click="confirm()">保存</span>
|
||||||
</template>
|
</template>
|
||||||
<template #content>
|
<template #content>
|
||||||
<div class="add-form">
|
<div class="add-form">
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
<ai-card title="基本信息">
|
<ai-card title="基本信息">
|
||||||
<template #right v-if="params.id">
|
<template #right v-if="params.id">
|
||||||
<span style="color:#2266FF;margin-left: 16px;cursor: pointer;font-size: 12px;" v-if="isEdit==true" @click="isEdit=false">取消</span>
|
<span style="color:#2266FF;margin-left: 16px;cursor: pointer;font-size: 12px;" v-if="isEdit==true" @click="isEdit=false">取消</span>
|
||||||
<span style="color:#2266FF;margin-left: 16px;cursor: pointer;font-size: 12px;" v-if="isEdit==true" @click="comfirm()">保存</span>
|
<span style="color:#2266FF;margin-left: 16px;cursor: pointer;font-size: 12px;" v-if="isEdit==true" @click="confirm()">保存</span>
|
||||||
</template>
|
</template>
|
||||||
<template #content>
|
<template #content>
|
||||||
<el-form ref="forms" :model="forms" :rules="formRules" size="small" label-width="150px">
|
<el-form ref="forms" :model="forms" :rules="formRules" size="small" label-width="150px">
|
||||||
|
|||||||
@@ -10,8 +10,13 @@
|
|||||||
<template #right>
|
<template #right>
|
||||||
<el-input size="small" placeholder="许可文书号/许可对象" v-model="search.name" clearable @clear="page.current = 1, searchObj.name = '',getTableData()"
|
<el-input size="small" placeholder="许可文书号/许可对象" v-model="search.name" clearable @clear="page.current = 1, searchObj.name = '',getTableData()"
|
||||||
suffix-icon="iconfont iconSearch" v-throttle="() => {(page.current = 1), getTableData();}"/>
|
suffix-icon="iconfont iconSearch" v-throttle="() => {(page.current = 1), getTableData();}"/>
|
||||||
<el-button size="small">导入</el-button>
|
<ai-import :instance="instance" :dict="dict" importUrl="" url="appcreditadministrativesanction/downloadTemplate" type="appjob" name="失信被执行人信息" @success="getTableData(), $message.success('导入成功!')">
|
||||||
<el-button size="small">导出</el-button>
|
<el-button size="small">导入</el-button>
|
||||||
|
</ai-import>
|
||||||
|
<!-- <ai-download :instance="instance" url="/app/appconvenientaddressbook/export" :params="search" fileName="失信被执行人信息"
|
||||||
|
:disabled="tableData.length == 0"> -->
|
||||||
|
<el-button size="small">导出</el-button>
|
||||||
|
<!-- </ai-download> -->
|
||||||
</template>
|
</template>
|
||||||
</ai-search-bar>
|
</ai-search-bar>
|
||||||
<ai-table :tableData="tableData" :total="page.total" :current.sync="page.current" :size.sync="page.size"
|
<ai-table :tableData="tableData" :total="page.total" :current.sync="page.current" :size.sync="page.size"
|
||||||
|
|||||||
@@ -71,7 +71,6 @@
|
|||||||
</template>
|
</template>
|
||||||
<template #content>
|
<template #content>
|
||||||
<ai-wrapper>
|
<ai-wrapper>
|
||||||
<!-- dict.getLabel('fpRiskType', info.riskType) -->
|
|
||||||
<ai-info-item label="纳税人名称" :value="data.taxpayer"></ai-info-item>
|
<ai-info-item label="纳税人名称" :value="data.taxpayer"></ai-info-item>
|
||||||
<ai-info-item label="纳税人识别号" :value="data.taxpayerNumber"></ai-info-item>
|
<ai-info-item label="纳税人识别号" :value="data.taxpayerNumber"></ai-info-item>
|
||||||
<ai-info-item label="纳税年份" :value="data.taxYear"></ai-info-item>
|
<ai-info-item label="纳税年份" :value="data.taxYear"></ai-info-item>
|
||||||
|
|||||||
@@ -10,8 +10,13 @@
|
|||||||
<template #right>
|
<template #right>
|
||||||
<el-input size="small" placeholder="许可文书号/许可对象" v-model="search.name" clearable suffix-icon="iconfont iconSearch"
|
<el-input size="small" placeholder="许可文书号/许可对象" v-model="search.name" clearable suffix-icon="iconfont iconSearch"
|
||||||
@clear="page.current = 1, searchObj.name = '',getTableData()" v-throttle="() => {(page.current = 1), getTableData();}"/>
|
@clear="page.current = 1, searchObj.name = '',getTableData()" v-throttle="() => {(page.current = 1), getTableData();}"/>
|
||||||
<el-button size="small">导入</el-button>
|
<ai-import :instance="instance" :dict="dict" importUrl="" url="appcreditadministrativesanction/downloadTemplate" type="appjob" name="纳税信息" @success="getTableData(), $message.success('导入成功!')">
|
||||||
<el-button size="small">导出</el-button>
|
<el-button size="small">导入</el-button>
|
||||||
|
</ai-import>
|
||||||
|
<!-- <ai-download :instance="instance" url="/app/appconvenientaddressbook/export" :params="search" fileName="纳税信息"
|
||||||
|
:disabled="tableData.length == 0"> -->
|
||||||
|
<el-button size="small">导出</el-button>
|
||||||
|
<!-- </ai-download> -->
|
||||||
</template>
|
</template>
|
||||||
</ai-search-bar>
|
</ai-search-bar>
|
||||||
<ai-table :tableData="tableData" :total="page.total" :current.sync="page.current" :size.sync="page.size"
|
<ai-table :tableData="tableData" :total="page.total" :current.sync="page.current" :size.sync="page.size"
|
||||||
|
|||||||
Reference in New Issue
Block a user