Updata Style
This commit is contained in:
parent
9e918d37e0
commit
7f03d56548
@ -772,7 +772,7 @@ export const asyncRoutes = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: "unsubscribe",
|
path: "unsubscribe",
|
||||||
// 不要写 component
|
|
||||||
component: () => import("@/views/customer/unsubscribe"),
|
component: () => import("@/views/customer/unsubscribe"),
|
||||||
name: "Unsubscribe",
|
name: "Unsubscribe",
|
||||||
meta: {
|
meta: {
|
||||||
|
|||||||
@ -2,18 +2,39 @@
|
|||||||
<div class="myOranization">
|
<div class="myOranization">
|
||||||
<el-card>
|
<el-card>
|
||||||
<div class="oranizationInfo">
|
<div class="oranizationInfo">
|
||||||
<span>机构名称:{{ orgList.orgname }}</span>
|
<!-- 机构名称 -->
|
||||||
<span>联系人:{{ orgList.contactor }}</span>
|
<div class="label-box">
|
||||||
<span>联系人电话:{{ orgList.contactor_phone }}</span>
|
<span class="label">机构名称:</span>
|
||||||
<span>地址:{{ orgList.address }}</span>
|
<span>{{ orgList.orgname }}</span>
|
||||||
<span>主营业务描述:{{ orgList.main_business }}</span>
|
</div>
|
||||||
|
<!-- 联系人 -->
|
||||||
|
<div class="label-box">
|
||||||
|
<span class="label">联系人:</span>
|
||||||
|
<span>{{ orgList.contactor }}</span>
|
||||||
|
</div>
|
||||||
|
<!-- 联系人电话 -->
|
||||||
|
<div class="label-box">
|
||||||
|
<span class="label">联系人电话:</span>
|
||||||
|
<span>{{ orgList.contactor_phone }}</span>
|
||||||
|
</div>
|
||||||
|
<!-- 地址 -->
|
||||||
|
<div class="label-box">
|
||||||
|
<span class="label">地址:</span>
|
||||||
|
<span>{{ orgList.address }}</span>
|
||||||
|
</div>
|
||||||
|
<!-- 主营业务描述 -->
|
||||||
|
<div class="label-box">
|
||||||
|
<span class="label">主营业务描述:</span>
|
||||||
|
<span>{{ orgList.main_business }}</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</el-card>
|
</el-card>
|
||||||
|
|
||||||
<el-card>
|
<el-card>
|
||||||
<div class="main-content" style="margin-top: 8px;display:flex;">
|
<div class="main-content" style="margin-top: 8px;display:flex;">
|
||||||
<el-select v-model="searchValue" filterable placeholder="请选择账户" @change="selectSearch" @input="input"
|
<el-select v-model="searchValue" filterable placeholder="请选择账户" @change="selectSearch" @input="input" clearable
|
||||||
clearable size="small">
|
size="small">
|
||||||
<el-option v-for="item in tableData" :key="item.id" :label="item.username" :value="item.id">
|
<el-option v-for="item in tableData" :key="item.id" :label="item.username" :value="item.id">
|
||||||
</el-option>
|
</el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
@ -563,12 +584,22 @@ export default {
|
|||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
}
|
}
|
||||||
|
.label-box{
|
||||||
|
display: flex;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.label{
|
||||||
|
display: block;
|
||||||
|
width: 120px;
|
||||||
|
text-align: right;
|
||||||
|
margin-right: 10px;
|
||||||
|
margin-bottom: 6px;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
<style>
|
<style>
|
||||||
@media screen and (max-width: 760px) {
|
@media screen and (max-width: 760px) {
|
||||||
.addPeople {
|
.addPeople {
|
||||||
//border:10px solid red;
|
/* border:10px solid red; */
|
||||||
width: 100vw !important;
|
width: 100vw !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -13,7 +13,6 @@
|
|||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
.box{
|
.box{
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
|
|
||||||
}
|
}
|
||||||
.baidu-style{
|
.baidu-style{
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user