| | |
| | | :visible.sync="editvisible" |
| | | @submit="EditSumbit" |
| | | ></FormTemplateDialog> |
| | | <el-button plain size="small" type="primary">批量导入申请</el-button> |
| | | <el-button plain size="small" type="primary">历史数据导入</el-button> |
| | | <el-button plain size="small" type="primary" @click="importDataShow('batchImportApply')">批量导入申请</el-button> |
| | | <el-button plain size="small" type="primary" @click="importDataShow('historyImport')">历史数据导入</el-button> |
| | | <el-button plain size="small" type="primary">批量申请编码</el-button> |
| | | <el-button plain size="small" type="primary">批量发布</el-button> |
| | | <el-button plain size="small" type="primary">查看流程历史</el-button> |
| | |
| | | @current-change="handleCurrentChange"> |
| | | </el-pagination> |
| | | </div> |
| | | <historyImport :visible.sync="importVisible" v-if="importVisible" :codeClassifyOid="codeClassifyOid" :type="importType"></historyImport> |
| | | </basic-container> |
| | | </template> |
| | | <script> |
| | |
| | | import integrationTransfer from '@/views/integration/integrationTransfer' |
| | | import SetPersonnel from '@/components/template/SetPersonnel' |
| | | import ResembleQueryDialog from "@/components/FormTemplate/ResembleQueryDialog.vue"; |
| | | import historyImport from '../BatchImport/index.vue' |
| | | export default { |
| | | components: { |
| | | integrationTransfer, |
| | | SetPersonnel, |
| | | ResembleQueryDialog |
| | | ResembleQueryDialog, |
| | | historyImport |
| | | }, |
| | | name: "Crud.vue", |
| | | props: { |
| | |
| | | tableHeadData: [], |
| | | items: {}, |
| | | seniorQueryColumns: [], |
| | | selectRow: [] |
| | | selectRow: [], |
| | | historyVisible: false, |
| | | importType: undefined, //导入类型, |
| | | importVisible: false |
| | | } |
| | | }, |
| | | computed: {}, |
| | |
| | | this.doLayout() |
| | | }, |
| | | watch: { |
| | | tableHeadDataFateher:{ |
| | | handler(newval,oldval){ |
| | | this.options=newval.tableDefineVO.seniorQueryColumns |
| | | } |
| | | }, |
| | | codeClassifyOid: { |
| | | handler(newval, oldval) { |
| | | this.codeClassifyOid = newval; |
| | |
| | | }, |
| | | //高级查询按钮 |
| | | findHandler(){ |
| | | this.findvisible=true |
| | | this.findvisible=true; |
| | | console.log(this.options) |
| | | }, |
| | | // 高级查询 |
| | | echoContion(val) { |
| | |
| | | EditSumbit(val){ |
| | | console.log(val) |
| | | this.editvisible=false |
| | | }, |
| | | importDataShow(type) { |
| | | this.importType = type |
| | | this.importVisible = true |
| | | } |
| | | } |
| | | } |