|
|
|
@ -1,11 +1,11 @@
|
|
|
|
|
<template>
|
|
|
|
|
<div class="enterpriseService">
|
|
|
|
|
<div class="enterpriseService loveflow">
|
|
|
|
|
<div class="flexSpaceBetween">
|
|
|
|
|
<div class="tableOperator"></div>
|
|
|
|
|
<div class="searchWrap">
|
|
|
|
|
<el-form :inline="true" :model="queryParam" class="demo-form-inline">
|
|
|
|
|
<el-form-item label="企业名称">
|
|
|
|
|
<el-input v-model="queryParam.name" placeholder="请输入"></el-input>
|
|
|
|
|
<el-input v-model="queryParam.companyName" placeholder="请输入"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item>
|
|
|
|
|
<el-button type="primary" @click="searchQuery">查询</el-button>
|
|
|
|
@ -44,13 +44,13 @@
|
|
|
|
|
</div>
|
|
|
|
|
<div class="opt">
|
|
|
|
|
<div
|
|
|
|
|
class=""
|
|
|
|
|
class="optBtn mr14"
|
|
|
|
|
v-if="item.auditState == '1'"
|
|
|
|
|
@click="examine(item)"
|
|
|
|
|
>
|
|
|
|
|
审查
|
|
|
|
|
</div>
|
|
|
|
|
<div class="" @click="checkDetail(item)">详情</div>
|
|
|
|
|
<div class="optBtn" @click="checkDetail(item)">详情</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</el-col>
|
|
|
|
@ -68,14 +68,16 @@
|
|
|
|
|
</gMainTable>
|
|
|
|
|
</div>
|
|
|
|
|
<detailDialog ref="detailDialog"></detailDialog>
|
|
|
|
|
<examineDialog ref="examineDialog"></examineDialog>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
<script>
|
|
|
|
|
import { tableListMixins } from "@/loveflow/mixins/tableListMixins";
|
|
|
|
|
import detailDialog from "./components/detailDialog.vue";
|
|
|
|
|
import examineDialog from "./components/examineDialog.vue";
|
|
|
|
|
export default {
|
|
|
|
|
mixins: [tableListMixins],
|
|
|
|
|
components: { detailDialog },
|
|
|
|
|
components: { examineDialog, detailDialog },
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
ipagination: {
|
|
|
|
@ -100,7 +102,9 @@ export default {
|
|
|
|
|
this.searchQuery();
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
examine(obj) {},
|
|
|
|
|
examine(obj) {
|
|
|
|
|
this.$refs.examineDialog.openDialog(obj);
|
|
|
|
|
},
|
|
|
|
|
checkDetail(obj) {
|
|
|
|
|
this.$refs.detailDialog.openDialog(obj);
|
|
|
|
|
},
|
|
|
|
@ -108,7 +112,6 @@ export default {
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
<style lang="less" scoped>
|
|
|
|
|
@import url("../index.less");
|
|
|
|
|
.enterpriseService {
|
|
|
|
|
height: 100%;
|
|
|
|
|
overflow: hidden;
|
|
|
|
@ -161,6 +164,7 @@ export default {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
color: #30c4ff;
|
|
|
|
|
.optBtn {
|
|
|
|
|
&:hover {
|
|
|
|
|
color: #409eff;
|
|
|
|
|
cursor: pointer;
|
|
|
|
@ -169,6 +173,7 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
<style lang="less">
|
|
|
|
|
.enterpriseService {
|
|
|
|
|