Commit 8ab59203 authored by IvyXia123's avatar IvyXia123

提交客户管理 客户昵称和客户微信昵称的跳转(user里)

parent 7cfc0063
...@@ -66,7 +66,7 @@ ...@@ -66,7 +66,7 @@
<template v-if="infoShow == 2"> <template v-if="infoShow == 2">
<td>{{ index + 1 }}</td> <td>{{ index + 1 }}</td>
<td>{{ customerObj.name }}</td> <td>{{ customerObj.name }}</td>
<td style="text-decoration: underline;">{{ item.contact_name }}</td> <td style="text-decoration: underline;"><router-link :to="{path:'/user', query:{type: 'detail',userid: item.user_id, teacherid: customerO.id}}" target="_blank">{{ item.contact_name }}</router-link></td>
<td>{{ item.contact_phone }}</td> <td>{{ item.contact_phone }}</td>
<td>{{ item.start_time }}</td> <td>{{ item.start_time }}</td>
<td>{{ (item.duration / 60) % 1 === 0 ? item.duration / 60: (item.duration / 60).toFixed(2) }}min</td> <td>{{ (item.duration / 60) % 1 === 0 ? item.duration / 60: (item.duration / 60).toFixed(2) }}min</td>
...@@ -110,7 +110,7 @@ ...@@ -110,7 +110,7 @@
<template v-if="infoShow == 4"> <template v-if="infoShow == 4">
<td >{{ customerObj.name }}</td> <td >{{ customerObj.name }}</td>
<td>{{ item.friend_uid }}</td> <td>{{ item.friend_uid }}</td>
<td style="text-decoration: underline;"><router-link :to="{path:'/userDetail', query:{userid: item.user_id, teacherid: customerO.id}}" target="_blank">{{ item.friend_nickname }}</router-link></td> <td style="text-decoration: underline;"><router-link :to="{path:'/user', query:{type: 'detail',userid: item.user_id, teacherid: customerO.id}}" target="_blank">{{ item.friend_nickname }}</router-link></td>
<td>{{ item.mobile }}</td> <td>{{ item.mobile }}</td>
<td>{{ item.allow_time }}</td> <td>{{ item.allow_time }}</td>
<td>{{ item.add_time_long }}min</td> <td>{{ item.add_time_long }}min</td>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment