Browse Source

弹框页面,移风党建改成详情调用

master
mk 1 year ago
parent
commit
66b21ff8a5
  1. 27
      src/api/hsyf.js
  2. 5
      src/router/index.js
  3. 2
      src/style/theme/index.css
  4. 307
      src/views/iframe/dyxx.vue
  5. 340
      src/views/iframe/dyzxh.vue
  6. 64
      src/views/iframe/index.vue
  7. 376
      src/views/iframe/ryxx.vue
  8. 90
      src/views/next/dialog-module/hsyf-left/company/attractions.vue

27
src/api/hsyf.js

@ -97,7 +97,14 @@ export function selectPartyPlaceList (params) {
params
})
}
// 移风党建-详情new
export function selectPartyPlaceDetail (params) {
return request({
url: '/api/resi/partymember/yifengScreen/selectPartyPlaceDetail',
method: 'GET',
params
})
}
// 移风党建-详情
export function partyPlace (id) {
return request({
@ -159,3 +166,21 @@ export function icpartyinventoryPage (params) {
params
})
}
// 获取包联房屋
export function houseListByGroup (data) {
return request({
url: '/api/gov/org/house/yifengScreen/houseListByGroup',
method: 'post',
data
})
}
// 房屋人员信息
export function resiListByHomeId (params) {
return request({
url: '/api/epmetuser/icresiuser/yifengScreen/resiListByHomeId',
method: 'GET',
params
})
}

5
src/router/index.js

@ -18,6 +18,11 @@ const routes = [
name: 'next',
component: () => import(/* webpackChunkName: "home" */'views/next/index.vue')
},
{
path: '/iframe',
name: 'iframe',
component: () => import(/* webpackChunkName: "home" */'views/iframe/index.vue')
},
// {
// path: '/next',
// name: 'next',

2
src/style/theme/index.css

File diff suppressed because one or more lines are too long

307
src/views/iframe/dyxx.vue

@ -0,0 +1,307 @@
<template>
<div class="modal" v-show="dyfcShow">
<section>
<div class="dialog_header">
<div class="close-icon">
<img src="@/assets/images/common/dialog-colse.png" alt="" />
</div>
<div class="title-container">
<div class="title">{{ dialogTitle }}</div>
</div>
</div>
<div class="dialog_body">
<div class="content">
<div class="main">
<div class="wrap">
<div class="content">
<div class="content-title">
<div><img src="@/assets/images/common/star-icon.png" /></div>
<div>基本信息</div>
</div>
<div class="content-basic">
<div class="content-basic-image">
<img :src="info.imageList[0]" />
</div>
<div class="content-basic-content">
<div class="content-basic-content-rows">
<div class="content-basic-content-rows-title">姓名</div>
<div class="content-basic-content-rows-txt">{{info.name}}</div>
</div>
<div class="content-basic-content-rows">
<div class="content-basic-content-rows-title">地址</div>
<div class="content-basic-content-rows-txt">
{{info.gridName}}
</div>
</div>
</div>
</div>
<div class="content-title">
<div><img src="@/assets/images/common/star-icon.png" /></div>
<div>党员风采</div>
</div>
<div class="content-desc">
<p>
{{ info.mainDeed }}
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</template>
<script>
import { mapGetters, mapActions } from 'vuex'
import { partymemberStyleDetail } from '@/api/hsyf'
export default {
name: '',
data () {
return {
dialogTitle: '党员信息',
loading: false,
info: {}
}
},
computed: {
},
watch: {
},
components: {},
mounted () {},
created () {
this.dyfcShow()
},
methods: {
dyfcShow () {
partymemberStyleDetail({ id: this.$route.query.id }).then(res => {
this.info = res.data
})
},
}
}
</script>
<style lang="scss" scoped>
.modal {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
display: flex;
align-items: center;
justify-content: center;
z-index: 150;
section {
@include flex(column);
background: url("~@/assets/images/common/dialog-bg-red.png") no-repeat !important;
background-size: 100% 100% !important;
width: 744px;
height: 658px;
overflow: hidden;
padding-bottom: 16px;
box-sizing: border-box;
.dialog_header {
position: relative;
margin-bottom: 0px;
.close-icon {
width: 18px;
height: 18px;
position: absolute;
top: 10px;
right: 16px;
cursor: pointer;
}
.title-container {
align-items: center;
background: url("~@/assets/images/common/dialog-header-red.png")
no-repeat;
background-size: 100% 100%;
display: flex;
justify-content: center;
align-items: center;
height: 60px;
font-size: 26px;
.title {
font-family: zaozigongfang;
letter-spacing: 2px;
line-height: 50px;
background-size: 100% 100%;
display: flex;
justify-content: center;
height: 52px;
font-size: 22px;
color: #fff;
}
}
}
.dialog_body {
position: relative;
> .content {
box-sizing: border-box;
color: #fff;
padding: 0px 24px 0 27px;
.main {
height: 588px;
overflow-y: hidden;
box-sizing: border-box;
overflow-y: scroll;
&::-webkit-scrollbar {
width: 0px;
}
&::-webkit-scrollbar-track {
border-radius: 10px;
background: rgba(251, 233, 197, 1);
}
&::-webkit-scrollbar-thumb {
border-radius: 10px;
background: rgba(234, 201, 135, 1);
}
.header {
width: 100%;
height: 30px;
text-align: left;
background: linear-gradient(
90deg,
rgb(26, 109, 224) 0%,
rgba(13, 113, 248, 0) 50%
);
display: flex;
justify-content: flex-start;
align-items: center;
}
.flex {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
.item {
display: flex;
width: 647px;
padding: 16px 24px 16px 16px;
box-sizing: border-box;
background: #1657b8;
border-radius: 2px;
margin-bottom: 10px;
img {
width: 186px;
height: 120px;
}
p {
display: -webkit-box;
overflow: hidden;
-webkit-line-clamp: 4;
-webkit-box-orient: vertical;
text-overflow: ellipsis;
margin-bottom: 0;
}
> .content {
flex: 1;
@include flex(column);
padding-left: 17px;
box-sizing: border-box;
& > :nth-child(1) {
display: flex;
justify-content: space-between;
& > :nth-child(2) {
color: #00d4f3;
}
}
}
}
}
}
}
}
}
}
.wrap {
.content {
margin-top: 0px;
padding: 24px 12px;
position: relative;
transition: transform 0.3s ease-in-out;
transform-origin: 50% 50%;
&-title {
width: 534px;
height: 30px;
font-size: 18px;
font-weight: bold;
line-height: 30px;
padding-left: 11px;
background-image: linear-gradient(
to right,
rgba(239, 129, 37, 0.6) 0%,
rgba(239, 129, 37, 0) 100%
);
img {
width: 32px;
height: 28px;
margin-right: 12px;
}
}
&-basic {
padding-top: 24px;
padding-bottom: 36px;
display: flex;
flex-wrap: nowrap;
&-image {
img {
width: 116px;
height: 160px;
}
}
&-content {
&-rows {
display: flex;
font-weight: 500;
font-size: 16px;
font-family: PingFang SC;
line-height: 32px;
padding-left: 20px;
&-title {
color: #fbe9c5;
opacity: 0.76;
}
&-txt {
color: #ffffff;
}
}
}
}
&-desc {
padding-top: 12px;
line-height: 32px;
font-size: 16px;
font-weight: 500;
p {
text-indent: 2em;
}
}
}
}
</style>

340
src/views/iframe/dyzxh.vue

@ -0,0 +1,340 @@
<template>
<div class="modal" >
<section>
<div class="dialog_header">
<div class="close-icon" >
<!-- <img src="@/assets/images/common/dialog-colse.png" alt="" /> -->
</div>
<div class="title-container">
<div class="title">{{ dialogTitle }}</div>
</div>
</div>
<div class="dialog_body">
<div class="content">
<div class="main">
<div class="wrap">
<div class="content">
<div class="title_hrader">
<div class="title_hrader_item">
党员:{{partyName}}
</div>
<div class="title_hrader_item">
包联房屋:
<span class="numberTotal">{{ dataList.length || 0 }}</span>
</div>
</div>
<div class="list">
<div
class="list_row"
v-for="(item, index) in dataList"
:key="index"
@click="handleClickHouse(item)"
>
<div class="list_row_item">{{ index + 1 }}</div>
<div class="list_row_item">
{{ item.houseName }}
</div>
</div>
</div>
<div class="list_bottom"></div>
</div>
</div>
</div>
</div>
</div>
<div style="text-align: right; padding-right: 30px;">
<el-pagination
@current-change="pageCurrentHandle"
:current-page="pageNo"
layout="prev, pager, next"
:total="total">
</el-pagination>
</div>
</section>
</div>
</template>
<script>
import { houseListByGroup } from '@/api/hsyf'
export default {
name: '',
data () {
return {
dialogTitle: '党员中心户',
loading: false,
dataList: [
],
pageSize:10,
pageNo:1,
total:0
}
},
computed: {
},
components: {},
mounted () {
},
created () {
this.partyName = this.$route.query.partyName;
this.houseListByGroup()
},
methods: {
handleClickHouse(item){
this.$emit('handleClickHouse', item)
},
pageCurrentHandle(val) {
this.pageNo = val
this.houseListByGroup()
},
houseListByGroup(){
let {pageSize,pageNo} = this
houseListByGroup({ group: this.$route.query.group,pageSize,pageNo }).then((res) => {
this.total = res.data.total;
this.dataList = res.data.list;
})
}
}
}
</script>
<style lang="scss" scoped>
.modal {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
display: flex;
align-items: center;
justify-content: center;
z-index: 150;
section {
@include flex(column);
background: url("~@/assets/images/common/dialog-bg-red.png") no-repeat !important;
background-size: 100% 100% !important;
width: 415px;
height: 701px;
overflow: hidden;
padding-bottom: 16px;
box-sizing: border-box;
.dialog_header {
position: relative;
margin-bottom: 0px;
.close-icon {
width: 18px;
height: 18px;
position: absolute;
top: 10px;
right: 16px;
cursor: pointer;
}
.title-container {
align-items: center;
background: url("~@/assets/images/common/dialog-header-red.png")
no-repeat;
background-size: 100% 100%;
display: flex;
justify-content: center;
align-items: center;
height: 60px;
font-size: 26px;
.title {
font-family: zaozigongfang;
letter-spacing: 2px;
line-height: 50px;
background-size: 100% 100%;
display: flex;
justify-content: center;
height: 52px;
font-size: 22px;
color: #fff;
}
}
}
.dialog_body {
position: relative;
> .content {
box-sizing: border-box;
color: #fff;
padding: 0px 24px 0 27px;
.main {
height: 588px;
overflow-y: hidden;
box-sizing: border-box;
overflow-y: scroll;
&::-webkit-scrollbar {
width: 0px;
}
&::-webkit-scrollbar-track {
border-radius: 10px;
background: rgba(251, 233, 197, 1);
}
&::-webkit-scrollbar-thumb {
border-radius: 10px;
background: rgba(234, 201, 135, 1);
}
.header {
width: 100%;
height: 30px;
text-align: left;
background: linear-gradient(
90deg,
rgb(26, 109, 224) 0%,
rgba(13, 113, 248, 0) 50%
);
display: flex;
justify-content: flex-start;
align-items: center;
}
.flex {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
.item {
display: flex;
width: 647px;
padding: 16px 24px 16px 16px;
box-sizing: border-box;
background: #1657b8;
border-radius: 2px;
margin-bottom: 10px;
img {
width: 186px;
height: 120px;
}
p {
display: -webkit-box;
overflow: hidden;
-webkit-line-clamp: 4;
-webkit-box-orient: vertical;
text-overflow: ellipsis;
margin-bottom: 0;
}
> .content {
flex: 1;
@include flex(column);
padding-left: 17px;
box-sizing: border-box;
& > :nth-child(1) {
display: flex;
justify-content: space-between;
& > :nth-child(2) {
color: #00d4f3;
}
}
}
}
}
}
}
}
}
}
.wrap {
.content {
margin-top: 0px;
padding: 0 17px;
position: relative;
transition: transform 0.3s ease-in-out;
transform-origin: 50% 50%;
.title_hrader {
padding-top: 10px;
height: 58px;
background: url("~@/assets/images/common/zzjgbotbgred.png") no-repeat;
background-size: 100% 14px;
background-position: center 40px;
display: flex;
justify-content: space-between;
&_item {
width: 130px;
height: 48px;
font-weight: 300;
font-size: 14px;
color: #ffffff;
line-height: 48px;
.numberTotal {
font-family: PangMenZhengDao;
font-weight: 400;
font-size: 20px;
line-height: 44px;
}
}
&_item:nth-child(1) {
padding-left: 24px;
width: 100px;
}
&_item:nth-child(3) {
width: 210px;
}
&_item:nth-child(4) {
width: 180px;
}
}
.list{
height:500px;
.list_row {
display: flex;
border-bottom: 0px;
color: #fbe9c5;
&_item {
width: 140px;
height: 48px;
line-height: 48px;
border-bottom: 1px dashed #bb7053;
}
&_item:nth-child(1) {
width: 40px;
padding-left: 24px;
}
&_item:nth-child(2) {
flex: 1;
}
&_item:nth-child(3) {
width: 230px;
}
&_item:nth-child(4) {
width: 160px;
}
}
.list_row:hover {
background: url("~@/assets/images/common/zzjg_xz.png") no-repeat !important;
background-size: 100% 100% !important;
color: #ffffff;
}
.list_row:nth-child(1) {
border: 1px solid #bb7053;
border-bottom: 0px;
}
.list_bottom {
border-bottom: 1px solid #bb7053;
}
}
// .list_row:nth-child(11) {
// border: 1px solid #bb7053;
// }
}
}
</style>

64
src/views/iframe/index.vue

@ -0,0 +1,64 @@
<template>
<div class="modal" >
<section v-if="type === 1">
<dyzxh @handleClickHouse="handleClickHouse" />
</section>
<section v-if="type === 2">
<ryxx :houseId="houseId" :houseName="houseName" @handelClose="handelClose"/>
</section>
<section v-if="type === 3">
<dyxx/>
</section>
</div>
</template>
<script>
import dyzxh from "./dyzxh.vue"
import ryxx from "./ryxx.vue"
import dyxx from "./dyxx.vue"
export default {
name: '',
data () {
return {
type:1,
houseId:null,
houseName:null
}
},
computed: {
},
components: {dyzxh,ryxx,dyxx},
mounted () {
},
created () {
this.type = Number(this.$route.query.type)
},
methods: {
handelClose(){
this.type = 1;
},
handleClickHouse(item){
this.type = 2;
this.houseId = item.houseId;
this.houseName = item.houseName;
}
}
}
</script>
<style lang="scss" scoped>
.modal{
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
display: flex;
align-items: center;
justify-content: center;
z-index: 150;
background-color: #5d0000;
}
</style>

376
src/views/iframe/ryxx.vue

@ -0,0 +1,376 @@
<template>
<div class="modal" >
<section>
<div class="dialog_header">
<div class="close-icon" >
<img src="@/assets/images/common/dialog-colse.png" @click="handelClose" alt="" />
</div>
<div class="title-container">
<div class="title">{{ dialogTitle }}</div>
</div>
</div>
<div class="dialog_body">
<div class="content">
<div class="main">
<div class="wrap">
<div class="content">
<div class="title_hrader">
<div class="title_hrader_item">
{{houseName}}
</div>
<div class="title_hrader_item">
成员:
<span class="numberTotal">{{ dataList.length || 0 }}</span>
</div>
</div>
<div class="list">
<div class="list_item_header">
<span>序号</span>
<span>姓名</span>
<span>性别</span>
<span>证件号</span>
<span>联系电话</span>
</div>
<div
class="list_row"
v-for="(item, index) in dataList"
:key="item.name + index"
>
<div class="list_row_item">{{ index + 1 }}</div>
<div class="list_row_item">{{ item.icUserName }}</div>
<div class="list_row_item">
{{ item.gender }}
</div>
<div class="list_row_item">{{ item.idCard }}</div>
<div class="list_row_item">
{{ item.mobile }}
</div>
</div>
</div>
<div class="list_bottom"></div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</template>
<script>
import { resiListByHomeId } from '@/api/hsyf'
export default {
name: '',
data () {
return {
dialogTitle: '人员信息',
loading: false,
dataList: [],
type:1,
}
},
computed: {
},
components: {},
mounted () {
},
created () {
resiListByHomeId({houseId:this.houseId}).then(res => {
this.dataList = res.data
})
},
methods: {
handelClose(){
this.$emit('handelClose')
}
},
props:{
houseId:{
type:Number,
default:0
},
houseName:{
type:String,
default:''
}
}
}
</script>
<style lang="scss" scoped>
.modal {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
display: flex;
align-items: center;
justify-content: center;
z-index: 150;
section {
@include flex(column);
background: url("~@/assets/images/common/dialog-bg-red.png") no-repeat !important;
background-size: 100% 100% !important;
width: 715px;
height: auto;
overflow: hidden;
padding-bottom: 16px;
box-sizing: border-box;
.dialog_header {
position: relative;
margin-bottom: 0px;
.close-icon {
width: 18px;
height: 18px;
position: absolute;
top: 10px;
right: 16px;
cursor: pointer;
}
.title-container {
align-items: center;
background: url("~@/assets/images/common/dialog-header-red.png")
no-repeat;
background-size: 100% 100%;
display: flex;
justify-content: center;
align-items: center;
height: 60px;
font-size: 26px;
.title {
font-family: zaozigongfang;
letter-spacing: 2px;
line-height: 50px;
background-size: 100% 100%;
display: flex;
justify-content: center;
height: 52px;
font-size: 22px;
color: #fff;
}
}
}
.dialog_body {
position: relative;
> .content {
box-sizing: border-box;
color: #fff;
padding: 0px 24px 0 27px;
.main {
height: 588px;
overflow-y: hidden;
box-sizing: border-box;
overflow-y: scroll;
&::-webkit-scrollbar {
width: 0px;
}
&::-webkit-scrollbar-track {
border-radius: 10px;
background: rgba(251, 233, 197, 1);
}
&::-webkit-scrollbar-thumb {
border-radius: 10px;
background: rgba(234, 201, 135, 1);
}
.header {
width: 100%;
height: 30px;
text-align: left;
background: linear-gradient(
90deg,
rgb(26, 109, 224) 0%,
rgba(13, 113, 248, 0) 50%
);
display: flex;
justify-content: flex-start;
align-items: center;
}
.flex {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
.item {
display: flex;
width: 647px;
padding: 16px 24px 16px 16px;
box-sizing: border-box;
background: #1657b8;
border-radius: 2px;
margin-bottom: 10px;
img {
width: 186px;
height: 120px;
}
p {
display: -webkit-box;
overflow: hidden;
-webkit-line-clamp: 4;
-webkit-box-orient: vertical;
text-overflow: ellipsis;
margin-bottom: 0;
}
> .content {
flex: 1;
@include flex(column);
padding-left: 17px;
box-sizing: border-box;
& > :nth-child(1) {
display: flex;
justify-content: space-between;
& > :nth-child(2) {
color: #00d4f3;
}
}
}
}
}
}
}
}
}
}
.wrap {
.content {
margin-top: 0px;
padding: 0 17px;
position: relative;
transition: transform 0.3s ease-in-out;
transform-origin: 50% 50%;
.title_hrader {
padding-top: 10px;
height: 58px;
background: url("~@/assets/images/common/zzjgbotbgred.png") no-repeat;
background-size: 100% 14px;
background-position: center 40px;
display: flex;
justify-content: space-between;
.title_hrader_item{
font-family: 'PingFang Regular';
}
&_item {
width: 130px;
height: 48px;
font-weight: 300;
font-size: 14px;
color: #ffffff;
line-height: 48px;
.numberTotal {
font-family: PangMenZhengDao;
font-weight: 400;
font-size: 20px;
line-height: 44px;
}
}
&_item:nth-child(1) {
padding-left: 24px;
width: auto;
font-family: PingFang Regular;
font-weight: bold;
}
&_item:nth-child(3) {
width: 210px;
}
&_item:nth-child(4) {
width: 180px;
}
}
.list{
height:500px;
display: flex;
flex-direction: column;
&_item_header {
width: 100%;
height: 48px;
line-height: 48px;
display: flex;
border-radius: 5px;
background-color: #bd360c;
color: #fbe9c5;
&>:nth-child(1) {
width: 80px;
padding-left: 24px;
}
&>:nth-child(2) {
width: 80px;
}
&>:nth-child(3) {
width: 80px;
}
&>:nth-child(4) {
flex: 1;
}
&>:nth-child(5) {
width: 160px;
}
}
.list_row {
display: flex;
border-bottom: 0px;
color: #fbe9c5;
&_item {
width: 140px;
height: 48px;
line-height: 48px;
border-bottom: 1px dashed #bb7053;
}
&_item:nth-child(1) {
width: 80px;
padding-left: 24px;
}
&_item:nth-child(2) {
width: 80px;
}
&_item:nth-child(3) {
width: 80px;
}
&_item:nth-child(4) {
flex: 1;
}
&_item:nth-child(5) {
width: 160px;
}
}
.list_row:hover {
background: url("~@/assets/images/common/zzjg_xz.png") no-repeat !important;
background-size: 100% 100% !important;
color: #ffffff;
}
.list_row:nth-child(1) {
border: 1px solid #bb7053;
border-bottom: 0px;
}
.list_bottom {
border-bottom: 1px solid #bb7053;
}
}
// .list_row:nth-child(11) {
// border: 1px solid #bb7053;
// }
}
}
</style>

90
src/views/next/dialog-module/hsyf-left/company/attractions.vue

@ -33,8 +33,8 @@
v-if="item.children.length > 0"
:style="
openId == item.id && openVisable
? 'transform: rotate(90deg);'
: ''
? ''
: 'transform: rotate(90deg);'
"
>
>
@ -54,11 +54,10 @@
</div>
<div
class="content-left-list-item-title-arrow"
v-if="item.children"
:style="
openId == item.id && openVisable
? 'transform: rotate(90deg);'
: ''
? ''
: 'transform: rotate(90deg);'
"
>
>
@ -77,6 +76,26 @@
<div class="content-left-list-item1-title">
{{ item1.name }}
</div>
<div
v-if="item1.children"
class="content-left-list-item1-arrow2222"
:style="
openVisable2? 'transform: rotate(90deg);line-height: 0;'
: 'line-height: 0;'"
>
>
</div>
<div v-if="item1.children">
<div
v-for="item2 in item1.children"
:key="item2.id"
v-show="openId2 == item1.id && openVisable2"
@click.stop="onDatils(item2)"
:class="`content-left-list-item2 ${
currentId == item2.id ? 'action' : ''
}`"
>{{item2.name}}</div>
</div>
</div>
</div>
</div>
@ -117,11 +136,12 @@
<script>
import { mapGetters, mapActions } from 'vuex'
import { selectPartyPlaceList, partyPlace } from '@/api/hsyf'
import { selectPartyPlaceList, selectPartyPlaceDetail } from '@/api/hsyf'
export default {
name: '',
data () {
return {
openId2:null,
dialogTitle: '移风阵地',
currentId: '1',
dataList: [],
@ -239,7 +259,8 @@ export default {
info: { description: '' },
openId: '1',
loading: false,
openVisable: true
openVisable: true,
openVisable2:true,
}
},
computed: {
@ -323,6 +344,14 @@ export default {
}
)
},
selectPartyPlaceDetail(){
selectPartyPlaceDetail({placeId:this.currentId}).then(
(res) => {
console.log(res);
this.info = res.data;
}
)
},
closeDialog () {
this.showGlobalDialog('')
},
@ -346,13 +375,19 @@ export default {
// })
// },
openMene (item, bool) {
if (this.openId === item.id) {
console.log(item);
console.log(this.openId);
if (this.openId === item.id && item.id != '1800832705128718337') {
this.openVisable = !this.openVisable
}else{
this.openVisable2 = !this.openVisable2
}
if (!item.children) {
this.onDatils(item)
}
this.openId = item.id
if(item.id != '1800832705128718337'){
this.openId = item.id
}
},
// closeDialog () {
// this.showGlobalDialog('')
@ -364,8 +399,13 @@ export default {
this.videoStatus = 'pause'
},
onDatils (item) {
this.currentId = item.id
this.info = item
if(item.children){
this.openId2 = item.id
this.openMene(item)
return
}
this.currentId = item.id;
this.selectPartyPlaceDetail()
}
}
}
@ -495,20 +535,36 @@ export default {
}
&-item1 {
width: 272px;
height: 44px;
// height: 44px;
position: relative;
line-height: 44px;
font-size: 16px;
padding-left: 36px;
font-weight: 500;
color: #fbe9c5;
font-family: PingFang SC;
&-title {
overflow: hidden; /* 隐藏超出的内容 */
text-overflow: ellipsis; /* 显示省略号 */
white-space: nowrap;
width: 224px;
&-arrow2222{
position: absolute;
right: 60px;
top: 17px;
}
}
&-item2 {
width: 195px;
height: 44px;
line-height: 44px;
font-size: 16px;
padding-left: 36px;
font-weight: 500;
color: #fbe9c5;
overflow: hidden; /* 隐藏超出的内容 */
text-overflow: ellipsis; /* 显示省略号 */
white-space: nowrap;
font-family: PingFang SC;
&-arrow {
transform: rotate(-90deg);
}
}
.open {
color: #fbe9c5;
background-image: linear-gradient(

Loading…
Cancel
Save