Commit 29cbfa44 authored by IvyXia123's avatar IvyXia123

min提交

parent 78eaced8
...@@ -69,7 +69,7 @@ ...@@ -69,7 +69,7 @@
<td>{{ item.contact_name }}</td> <td>{{ item.contact_name }}</td>
<td>{{ item.contact_phone }}</td> <td>{{ item.contact_phone }}</td>
<td>{{ item.start_time }}</td> <td>{{ item.start_time }}</td>
<td>{{ item.duration }}</td> <td>{{ (item.duration / 60) % 1 === 0 ? item.duration / 60: (item.duration / 60).toFixed(2) }}min</td>
<td>{{ item.visit_desc }}</td> <td>{{ item.visit_desc }}</td>
<td>{{ item.next_visit_at }}</td> <td>{{ item.next_visit_at }}</td>
<td> <td>
...@@ -328,11 +328,6 @@ ...@@ -328,11 +328,6 @@
} }
}, },
mounted() { mounted() {
// this.customerObj = this.customerObj.id ? this.customerObj : JSON.parse(window.localStorage.phoneNum)
console.log(this.customerO)
// console.log(JSON.parse(window.localStorage.phoneNum))
// this.customerObj = JSON.parse(window.localStorage.phoneNum)
this.getData(); this.getData();
}, },
methods: { methods: {
......
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