refactor: 05 => remove console log and TableProductAndService td
This commit is contained in:
parent
e2bd6a6334
commit
8a937dfa31
2 changed files with 3 additions and 4 deletions
|
|
@ -234,7 +234,6 @@ watch(
|
|||
const incoming = current.filter(
|
||||
(lhs) =>
|
||||
!before.find((rhs) => {
|
||||
console.log(lhs, rhs);
|
||||
return JSON.stringify(lhs) === JSON.stringify(rhs);
|
||||
}),
|
||||
);
|
||||
|
|
|
|||
|
|
@ -227,7 +227,7 @@ function selectedIndex(item: any) {
|
|||
<template
|
||||
v-if="col.name === '#productName' || col.name === '#serviceName'"
|
||||
>
|
||||
<div class="row full-height">
|
||||
<div class="row full-height items-center">
|
||||
<q-avatar size="md">
|
||||
<q-img
|
||||
:src="getProductImageUrl(props.row)"
|
||||
|
|
@ -235,14 +235,14 @@ function selectedIndex(item: any) {
|
|||
class="text-center"
|
||||
/>
|
||||
</q-avatar>
|
||||
<p class="column q-ml-sm">
|
||||
<span class="column q-ml-sm">
|
||||
<span class="col-6">
|
||||
{{ props.row.name }}
|
||||
</span>
|
||||
<span class="col-6 app-text-muted">
|
||||
{{ props.row.code }}
|
||||
</span>
|
||||
</p>
|
||||
</span>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue