Browse Source

youma

shibei_prod
dai 4 years ago
parent
commit
621cdb54a9
  1. 12
      src/views/modules/visual/warning/components/screen-table/index.vue

12
src/views/modules/visual/warning/components/screen-table/index.vue

@ -23,7 +23,7 @@
:key="indexs"
:style="tableContentStyle[indexs]"
>
{{ item }}
<span @click="toUserInfo(item)">{{ item }}</span>
<span
v-if="indexs + 1 == value.length && item.length > 8"
class="more"
@ -31,7 +31,11 @@
ref="morePop"
>
更多>
<span class="more-pop" v-if="visiblePopList[index]">
<span
class="more-pop"
@click="toUserInfo(item)"
v-if="visiblePopList[index]"
>
<!-- 李佳琪刘阳赵欣丁一嘉敏李岩何嘉慧
李易峰赵敏何军曲树惠 -->
{{ item }}
@ -180,6 +184,10 @@ export default {
created() {},
methods: {
toUserInfo(uid) {
// this.$router.push({ path: `/main-shuju/visual-basicinfo-people/${uid}` });
},
onClickMorePop(index) {
this.visiblePopList.forEach((item, indexs) => {
if (index == indexs) {

Loading…
Cancel
Save