Commit c2f96d5c authored by 远方不远's avatar 远方不远

hy

parent ad6aaa35
......@@ -27,5 +27,21 @@ let regionWebList= function regionWebList(param) {
method: 'get',
})
}
// 查甲方选项
let uipGroupData= function uipGroupData(param) {
return request({
url: '/enterprise/uipGroupData',
method: 'post',
})
}
// 查甲方列表
let uipSerach= function uipSerach(param) {
return request({
url: '/enterprise/uipSerach',
method: 'post',
data: param
})
}
export default {aptitudeCode,personCert,searchDic,regionWebList}
\ No newline at end of file
export default {aptitudeCode,personCert,searchDic,regionWebList,uipGroupData,uipSerach}
\ No newline at end of file
......@@ -416,7 +416,7 @@ select {
}
.toolbar-right-download {
padding: 8px 21px;
padding: 6px 18px;
margin: 0px;
cursor: pointer;
font-weight: 400;
......@@ -425,6 +425,8 @@ select {
border-radius: 5px 5px 5px 5px;
border: 1px solid #D9D9D9;
text-align: center;
font-size:14px;
font-weight: 400;
}
.toolbar-right-download .el-icon-arrow-down{
margin-left: 8px;
......@@ -692,3 +694,24 @@ select {
.select-list .el-radio__input {
display: none;
}
.checkbox{
display: flex;
align-items: center;
}
.checkbox .checkbox-titel{
font-size: 14px;
font-weight: 400;
color: rgba(35, 35, 35, 0.8);
margin-right:24px;
}
.checkbox .checkbox-content{
display: flex;
align-items: center;
}
.checkbox .el-checkbox__label{
padding-left: 8px;
color: #232323;
}
.checkbox .checkbox-content .checkbox-content-qx{
margin-right: 30px;
}
\ No newline at end of file
......@@ -13,8 +13,8 @@
</div>
</div>
</div>
<!-- 企业专项债 -->
<!-- <debtProject v-if="personnelHerf=='debtProject'" /> -->
<!-- 查业主单位 -->
<Owner v-if="personnelHerf=='Owner'" />
<!-- 查企业 -->
<SearchEnterprise v-if="personnelHerf=='SearchEnterprise'" />
......@@ -25,28 +25,29 @@
</template>
<script>
import SearchEnterprise from "./components/SearchEnterprise/index.vue";
import Owner from "./components/Owner/index.vue";
import "@/assets/styles/public.css";
export default {
name: 'enterpriseData',
components: { SearchEnterprise },
components: { SearchEnterprise,Owner },
data() {
return {
// tablist
personnelList: [{
key: '1',
status: false,
key: 'Owner',
status: true,
value: '查业主单位',
},
{
key: 'SearchEnterprise',
status: true,
status: false,
value: '查建筑企业',
},
],
personnelHerf:'SearchEnterprise'
personnelHerf:'Owner'
}
},
created() {},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment