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

hy

parent ad6aaa35
...@@ -27,5 +27,21 @@ let regionWebList= function regionWebList(param) { ...@@ -27,5 +27,21 @@ let regionWebList= function regionWebList(param) {
method: 'get', 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} export default {aptitudeCode,personCert,searchDic,regionWebList,uipGroupData,uipSerach}
\ No newline at end of file \ No newline at end of file
...@@ -416,7 +416,7 @@ select { ...@@ -416,7 +416,7 @@ select {
} }
.toolbar-right-download { .toolbar-right-download {
padding: 8px 21px; padding: 6px 18px;
margin: 0px; margin: 0px;
cursor: pointer; cursor: pointer;
font-weight: 400; font-weight: 400;
...@@ -425,6 +425,8 @@ select { ...@@ -425,6 +425,8 @@ select {
border-radius: 5px 5px 5px 5px; border-radius: 5px 5px 5px 5px;
border: 1px solid #D9D9D9; border: 1px solid #D9D9D9;
text-align: center; text-align: center;
font-size:14px;
font-weight: 400;
} }
.toolbar-right-download .el-icon-arrow-down{ .toolbar-right-download .el-icon-arrow-down{
margin-left: 8px; margin-left: 8px;
...@@ -692,3 +694,24 @@ select { ...@@ -692,3 +694,24 @@ select {
.select-list .el-radio__input { .select-list .el-radio__input {
display: none; 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 @@ ...@@ -13,8 +13,8 @@
</div> </div>
</div> </div>
</div> </div>
<!-- 企业专项债 --> <!-- 查业主单位 -->
<!-- <debtProject v-if="personnelHerf=='debtProject'" /> --> <Owner v-if="personnelHerf=='Owner'" />
<!-- 查企业 --> <!-- 查企业 -->
<SearchEnterprise v-if="personnelHerf=='SearchEnterprise'" /> <SearchEnterprise v-if="personnelHerf=='SearchEnterprise'" />
...@@ -25,28 +25,29 @@ ...@@ -25,28 +25,29 @@
</template> </template>
<script> <script>
import SearchEnterprise from "./components/SearchEnterprise/index.vue"; import SearchEnterprise from "./components/SearchEnterprise/index.vue";
import Owner from "./components/Owner/index.vue";
import "@/assets/styles/public.css"; import "@/assets/styles/public.css";
export default { export default {
name: 'enterpriseData', name: 'enterpriseData',
components: { SearchEnterprise }, components: { SearchEnterprise,Owner },
data() { data() {
return { return {
// tablist // tablist
personnelList: [{ personnelList: [{
key: '1', key: 'Owner',
status: false, status: true,
value: '查业主单位', value: '查业主单位',
}, },
{ {
key: 'SearchEnterprise', key: 'SearchEnterprise',
status: true, status: false,
value: '查建筑企业', value: '查建筑企业',
}, },
], ],
personnelHerf:'SearchEnterprise' personnelHerf:'Owner'
} }
}, },
created() {}, 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