|
@@ -28,7 +28,7 @@
|
|
@click="handleCallBtnClick(searchInput)"
|
|
@click="handleCallBtnClick(searchInput)"
|
|
:disabled="call"
|
|
:disabled="call"
|
|
class="user-item-join-btn"
|
|
class="user-item-join-btn"
|
|
- >呼叫</el-button
|
|
|
|
|
|
+ >呼叫 <span>{{ veteMemberName }}</span></el-button
|
|
>
|
|
>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -37,6 +37,7 @@
|
|
<script>
|
|
<script>
|
|
import { mapState } from "vuex";
|
|
import { mapState } from "vuex";
|
|
import { getSearchHistory } from "../../utils";
|
|
import { getSearchHistory } from "../../utils";
|
|
|
|
+import { memberinfo } from "../../api";
|
|
|
|
|
|
export default {
|
|
export default {
|
|
name: "SearchUser",
|
|
name: "SearchUser",
|
|
@@ -56,6 +57,7 @@ export default {
|
|
searchHistoryUser: getSearchHistory(),
|
|
searchHistoryUser: getSearchHistory(),
|
|
call: false,
|
|
call: false,
|
|
cancel: false,
|
|
cancel: false,
|
|
|
|
+ veteMemberName: "",
|
|
};
|
|
};
|
|
},
|
|
},
|
|
computed: {
|
|
computed: {
|
|
@@ -75,6 +77,17 @@ export default {
|
|
},
|
|
},
|
|
},
|
|
},
|
|
watch: {
|
|
watch: {
|
|
|
|
+ searchInput: {
|
|
|
|
+ handler(value) {
|
|
|
|
+ if (this.timer) {
|
|
|
|
+ clearTimeout(this.timer);
|
|
|
|
+ }
|
|
|
|
+ this.timer = setTimeout(() => {
|
|
|
|
+ this.getmemberinfo();
|
|
|
|
+ }, 1500);
|
|
|
|
+ },
|
|
|
|
+ deep: true,
|
|
|
|
+ },
|
|
callStatus: function (newStatus, oldStatus) {
|
|
callStatus: function (newStatus, oldStatus) {
|
|
if (newStatus !== oldStatus && newStatus === "connected") {
|
|
if (newStatus !== oldStatus && newStatus === "connected") {
|
|
this.searchInput = "";
|
|
this.searchInput = "";
|
|
@@ -96,6 +109,18 @@ export default {
|
|
this.searchInput = this.veteMemberId;
|
|
this.searchInput = this.veteMemberId;
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
|
|
+ getmemberinfo() {
|
|
|
|
+ memberinfo({ veteMemberId: this.searchInput }).then((res) => {
|
|
|
|
+ if (res.data.code == "200") {
|
|
|
|
+ this.veteMemberName = res.data?.data?.data?.veteName;
|
|
|
|
+ } else {
|
|
|
|
+ this.veteMemberName = "";
|
|
|
|
+ }
|
|
|
|
+ // console.log("res.code", res.data.code);
|
|
|
|
+ // console.log("this.veteMemberName", this.veteMemberName);
|
|
|
|
+ // console.log("getmemberinfo", res.data.data.data.veteName);
|
|
|
|
+ });
|
|
|
|
+ },
|
|
handleCallBtnClick: function (param) {
|
|
handleCallBtnClick: function (param) {
|
|
if (param === this.loginUserInfo.userId) {
|
|
if (param === this.loginUserInfo.userId) {
|
|
this.$message("请输入正确用户ID");
|
|
this.$message("请输入正确用户ID");
|