Commit 6ef70bf8 authored by 刘殿昕's avatar 刘殿昕

Merge branch 'ldx' into dev

parents d50935f0 b3a267a4
...@@ -261,15 +261,15 @@ div { ...@@ -261,15 +261,15 @@ div {
} }
.el-tabs__item { .el-tabs__item {
font-size: 16px; font-size: 14px;
color: #8890a7; color: #8890a7;
line-height: 24px !important; line-height: 14px !important;
font-weight: bold; font-weight: bold;
} }
.el-tabs__nav-scroll .el-tabs__item { .el-tabs__nav-scroll .el-tabs__item {
line-height: 38px !important; line-height: 14px !important;
height: 44px !important; height: 38px !important;
} }
.el-tabs__item:hover { .el-tabs__item:hover {
...@@ -499,7 +499,7 @@ border-radius:8px; ...@@ -499,7 +499,7 @@ border-radius:8px;
margin-left: 35px; margin-left: 35px;
} */ } */
.el-input__inner { .el-input__inner {
border-radius: 8px; border-radius: 6px;
} }
.el-input-group__append, .el-input-group__append,
......
<template> <template>
<div class="block_radius" :style="'border-radius:' + borRadius + 'px'"> <div class="block_radius" :style="'border-radius:' + borRadius + 'px;padding:' + paddingNum + 'px;'">
<div v-if="show_header" class="block_header"> <div v-if="show_header" class="block_header">
<div class="block_header_title">{{ title }}</div> <div class="block_header_title">{{ title }}</div>
<div class="block_header_button_group"> <div class="block_header_button_group">
...@@ -36,6 +36,10 @@ export default { ...@@ -36,6 +36,10 @@ export default {
borRadius: { borRadius: {
type: Number, type: Number,
default: 10, default: 10,
},
paddingNum: {
type: Number,
default: 20,
} }
}, },
components: {}, components: {},
......
...@@ -93,10 +93,10 @@ a { ...@@ -93,10 +93,10 @@ a {
text-align: center; text-align: center;
color: #e6ebfe; color: #e6ebfe;
background-color: #515fe7; background-color: #515fe7;
border-radius: 8px; border-radius: 6px;
display: inline-block; display: inline-block;
font-size: 14px; font-size: 14px;
margin-left: 20px; margin-left: 8px;
cursor: pointer; cursor: pointer;
} }
</style> </style>
...@@ -87,14 +87,14 @@ export default { ...@@ -87,14 +87,14 @@ export default {
height: 208px; height: 208px;
background-color: #ffffff; background-color: #ffffff;
box-shadow: 0px 3px 6px 0px rgba(15, 19, 65, 0.04); box-shadow: 0px 3px 6px 0px rgba(15, 19, 65, 0.04);
border-radius: 12px 12px 8px 8px; border-radius: 8px;
border: solid 1px #e3e4ef; border: solid 1px #e3e4ef;
margin-bottom: 16px; margin-bottom: 24px;
} }
.com_cell_up { .com_cell_up {
height: 88px; height: 88px;
background-color: #f9fafc; background-color: #f9fafc;
border-radius: 12px 12px 0px 0px; border-radius: 8px 8px 0px 0px;
padding: 16px; padding: 16px;
display: flex; display: flex;
position: relative; position: relative;
...@@ -186,7 +186,7 @@ export default { ...@@ -186,7 +186,7 @@ export default {
color: #e15260; color: #e15260;
} }
.com_cell_down { .com_cell_down {
padding: 12px 16px 16px; padding: 12px 16px 0 16px;
} }
.com_detail { .com_detail {
color: #8890a7; color: #8890a7;
......
...@@ -100,7 +100,7 @@ export default { ...@@ -100,7 +100,7 @@ export default {
box-shadow: 0px 3px 6px 0px rgba(15, 19, 65, 0.04); box-shadow: 0px 3px 6px 0px rgba(15, 19, 65, 0.04);
border-radius: 12px 12px 8px 8px; border-radius: 12px 12px 8px 8px;
border: solid 1px #e3e4ef; border: solid 1px #e3e4ef;
margin-bottom: 16px; margin-bottom: 24px;
} }
.com_cell_up { .com_cell_up {
height: 88px; height: 88px;
...@@ -197,7 +197,7 @@ export default { ...@@ -197,7 +197,7 @@ export default {
color: #e15260; color: #e15260;
} }
.com_cell_down { .com_cell_down {
padding: 12px 16px 16px; padding: 12px 16px 0 16px;
} }
.com_detail { .com_detail {
color: #8890a7; color: #8890a7;
......
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
class="classification_line_if" class="classification_line_if"
v-if="item.childDomains && item.childDomains.length != 0" v-if="item.childDomains && item.childDomains.length != 0"
> >
<div class="classification_line_title">{{ item.name }}</div> <div class="classification_line_title">{{ item.name }}<span class="maohao"></span></div>
<!-- <div <!-- <div
:class=" :class="
index == filterLists.length - 1 index == filterLists.length - 1
...@@ -120,7 +120,7 @@ ...@@ -120,7 +120,7 @@
@click="clickOpen(index)" @click="clickOpen(index)"
> >
<span v-if="openList[index] == 'down'">收起</span> <span v-if="openList[index] == 'down'">收起</span>
<span v-if="openList[index] == 'up'">展开</span> <span v-if="openList[index] == 'up'">更多</span>
<i <i
v-if="openList[index] == 'down'" v-if="openList[index] == 'down'"
class="el-icon-caret-top" class="el-icon-caret-top"
...@@ -666,10 +666,11 @@ export default { ...@@ -666,10 +666,11 @@ export default {
} }
.classification_line_title { .classification_line_title {
display: inline-block; display: inline-block;
width: 130px; width: 90px;
padding: 15px 0; padding: 15px 0;
text-align: right; text-align: left;
color: #8890a7; color: #8890a7;
font-size: 12px;
} }
.classification_line_items { .classification_line_items {
width: calc(100% - 130px); width: calc(100% - 130px);
...@@ -678,7 +679,7 @@ export default { ...@@ -678,7 +679,7 @@ export default {
border-bottom: 1px #e9ecf3 solid; border-bottom: 1px #e9ecf3 solid;
} }
.classification_line_hid { .classification_line_hid {
height: 50px; height: 46px;
width: 100%; width: 100%;
overflow: hidden; overflow: hidden;
display: inline-flex; display: inline-flex;
...@@ -697,7 +698,7 @@ export default { ...@@ -697,7 +698,7 @@ export default {
.classification_line_items_li { .classification_line_items_li {
display: inline-block; display: inline-block;
padding: 15px 20px; padding: 15px 20px;
font-size: 14px; font-size: 12px;
} }
.classification_line_items_li_act { .classification_line_items_li_act {
background-color: #fbfbfb; background-color: #fbfbfb;
...@@ -730,6 +731,7 @@ export default { ...@@ -730,6 +731,7 @@ export default {
width: 60px; width: 60px;
padding: 15px 0; padding: 15px 0;
cursor: pointer; cursor: pointer;
font-size: 12px;
} }
.classification_children_ul { .classification_children_ul {
display: inline-block; display: inline-block;
......
...@@ -121,18 +121,24 @@ export default { ...@@ -121,18 +121,24 @@ export default {
border-radius: 8px; border-radius: 8px;
} }
.service_shop_menu_list > li { .service_shop_menu_list > li {
padding: 16px 10px 8px 22px; box-sizing: border-box;
height: 40px;
padding: 8px 0 0 22px;
margin-bottom: 16px;
font-size: 15px; font-size: 15px;
line-height: 24px; line-height: 24px;
cursor: pointer; cursor: pointer;
} }
.service_shop_menu_list > li:nth-last-child(1) {
margin-bottom: 0;
}
.service_shop_menu_list > li:hover, .service_shop_menu_list > li:hover,
.service_shop_menu_list > li.current { .service_shop_menu_list > li.current {
background-color: rgba(242, 246, 253, 0.4); background-color: rgba(242, 246, 253, 0.4);
color: #515fe7; color: #515fe7;
} }
.menu_img { .menu_img {
width: 25px; width: 24px;
margin-right: 6px; margin-right: 6px;
} }
.menu_item { .menu_item {
......
This diff is collapsed.
<template> <template>
<div> <div class="shop_list_cont">
<el-container> <el-container>
<el-aside width="180px"> <el-aside width="176px">
<service-shop-menu></service-shop-menu> <service-shop-menu></service-shop-menu>
</el-aside> </el-aside>
<el-main> <el-main class="main_init">
<shop-cloud name="云资源服务"></shop-cloud> <shop-cloud name="云资源服务"></shop-cloud>
</el-main> </el-main>
</el-container> </el-container>
...@@ -25,4 +25,12 @@ export default { ...@@ -25,4 +25,12 @@ export default {
}; };
</script> </script>
<style scoped> <style scoped>
.shop_list_cont {
width: 1200px;
margin: 0 auto;
position: relative;
}
.main_init {
padding: 2px 0 16px 16px;
}
</style> </style>
\ No newline at end of file
...@@ -417,14 +417,16 @@ ...@@ -417,14 +417,16 @@
class="reset" class="reset"
v-if="activeBtn == 0 && resSuccess" v-if="activeBtn == 0 && resSuccess"
@click="resetSjfw" @click="resetSjfw"
>重置</el-button
> >
重置
</el-button>
<el-button <el-button
:disabled="!resSuccess" :disabled="!resSuccess"
:class="resSuccess ? 'next' : ''" :class="resSuccess ? 'next' : ''"
@click="nextJcxx" @click="nextJcxx"
>下一步</el-button
> >
下一步
</el-button>
</div> </div>
</block-radius> </block-radius>
<div v-if="activeBtn == 4 && zhyyVal == 24"> <div v-if="activeBtn == 4 && zhyyVal == 24">
...@@ -1058,7 +1060,7 @@ export default { ...@@ -1058,7 +1060,7 @@ export default {
this.jkwds = []; this.jkwds = [];
}, },
getUrl(enUrl) { getUrl(enUrl) {
enUrl = enUrl.replace(/\s*/g,""); enUrl = enUrl.replace(/\s*/g, "");
let url = decodeURI(enUrl); let url = decodeURI(enUrl);
let arr = []; let arr = [];
if (url.indexOf("?") != -1) { if (url.indexOf("?") != -1) {
...@@ -1228,21 +1230,31 @@ export default { ...@@ -1228,21 +1230,31 @@ export default {
if (this.jkwds.length == 0) { if (this.jkwds.length == 0) {
this.$message.error("请上传接口文档"); this.$message.error("请上传接口文档");
} else { } else {
let requestData = this.$refs.fwcs_sjfw_qqcs.getTableData(); if (
let responseData = this.$refs.fwcs_sjfw_fhcs.getTableData(); this.activeBtn == 2 ||
this.requestRules = 0; (this.activeBtn == 4 && this.zhyyVal == 22)
this.responseRules = 0; ) {
this.checkTable(requestData, 0); this.request_fields = [];
this.checkTable(responseData, 1); this.response_fields = [];
if (this.requestRules == 0 && this.responseRules == 0) {
this.request_fields = requestData;
this.response_fields = responseData;
this.jcxxtx = true; this.jcxxtx = true;
this.getOrganization(); this.getOrganization();
} else if (this.requestRules != 0) { } else {
this.$message.error("请完善请求参数信息中的字段名称"); let requestData = this.$refs.fwcs_sjfw_qqcs.getTableData();
} else if (this.responseRules != 0) { let responseData = this.$refs.fwcs_sjfw_fhcs.getTableData();
this.$message.error("请完善返回参数信息中的字段名称"); this.requestRules = 0;
this.responseRules = 0;
this.checkTable(requestData, 0);
this.checkTable(responseData, 1);
if (this.requestRules == 0 && this.responseRules == 0) {
this.request_fields = requestData;
this.response_fields = responseData;
this.jcxxtx = true;
this.getOrganization();
} else if (this.requestRules != 0) {
this.$message.error("请完善请求参数信息中的字段名称");
} else if (this.responseRules != 0) {
this.$message.error("请完善返回参数信息中的字段名称");
}
} }
} }
} else { } else {
...@@ -1865,7 +1877,7 @@ export default { ...@@ -1865,7 +1877,7 @@ export default {
}); });
}, },
getUrlOne(enUrl, indexOne) { getUrlOne(enUrl, indexOne) {
enUrl = enUrl.replace(/\s*/g,""); enUrl = enUrl.replace(/\s*/g, "");
let url = decodeURI(enUrl); let url = decodeURI(enUrl);
let arr = []; let arr = [];
if (url.indexOf("?") != -1) { if (url.indexOf("?") != -1) {
......
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