|
@@ -37,7 +37,7 @@
|
|
|
<div class="mui-media-body">
|
|
|
{{item.name}}
|
|
|
<p class='mui-ellipsis'>申请注册为<span class="colorfe616c" v-text="item.personRoleName"></span></p>
|
|
|
- <p class='mui-ellipsis'>{{item.telephone}}</p>
|
|
|
+ <p class='mui-ellipsis'>{{showTel(item.telephone)}}</p>
|
|
|
<h5 class="vongi-bksp-time" v-text="item.createTime.substr(5)"></h5>
|
|
|
</div>
|
|
|
</router-link>
|
|
@@ -59,7 +59,7 @@
|
|
|
<div class="mui-media-body">
|
|
|
{{item.name}}
|
|
|
<p class='mui-ellipsis' v-text="item.personRoleName"></p>
|
|
|
- <p class='mui-ellipsis'>{{item.telephone}}</p>
|
|
|
+ <p class='mui-ellipsis'>{{showTel(item.telephone)}}</p>
|
|
|
</div>
|
|
|
<button type="button" :class="'mui-btn mui-btn-success mui-btn-outlined '+(item.status>0?(item.status==1?'status_a':'status_r'):'')"
|
|
|
v-text="item.statusN"></button>
|
|
@@ -100,6 +100,9 @@
|
|
|
mapGetters,
|
|
|
mapMutations
|
|
|
} from 'vuex'
|
|
|
+ import {
|
|
|
+ showTel,
|
|
|
+ } from '$project/utils'
|
|
|
import * as types from '$project/store/mutation-types'
|
|
|
import NullList from '$project/components/NullList.vue'
|
|
|
export default {
|
|
@@ -139,6 +142,9 @@
|
|
|
},
|
|
|
created() {},
|
|
|
methods: {
|
|
|
+ showTel(tel){
|
|
|
+ return showTel(tel);
|
|
|
+ },
|
|
|
reloadSearchList() {
|
|
|
this.listForm.pageIndex = 1;
|
|
|
this.getList();
|
|
@@ -158,7 +164,7 @@
|
|
|
...response.data
|
|
|
];
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
if (this.listForm.status == 0) {
|
|
|
this.firstRecordsTotal = response.recordsTotal;
|
|
|
}
|
|
@@ -335,7 +341,7 @@
|
|
|
color: #05c8af !important;
|
|
|
border: 1px solid #05c8af !important;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
/* .vongi-wordcard-sp .mui-fullscreen{
|
|
|
bottom: 50px;
|
|
|
}
|