equal
deleted
inserted
replaced
34 </template> |
34 </template> |
35 |
35 |
36 <template v-if="tag.action=='replace'"> |
36 <template v-if="tag.action=='replace'"> |
37 <del>--</del> <del>{{ tag.tag_label }}</del> a été remplacé par |
37 <del>--</del> <del>{{ tag.tag_label }}</del> a été remplacé par |
38 <ins>++</ins> <strong><ins>{{ tag.new_label }}</ins></strong> |
38 <ins>++</ins> <strong><ins>{{ tag.new_label }}</ins></strong> |
39 précision : <ins>{{ tag.new_accuracy }}</ins> - |
39 fiabilité : <ins>{{ tag.new_accuracy }}</ins> - |
40 pertinence: <ins>{{ tag.new_relevancy }}</ins> |
40 pertinence: <ins>{{ tag.new_relevancy }}</ins> |
41 </template> |
41 </template> |
42 |
42 |
43 <template v-if="tag.action=='add'"> |
43 <template v-if="tag.action=='add'"> |
44 <li> |
44 <li> |
45 <ins>++</ins> <ins>{{ tag.tag_label }}</ins> |
45 <ins>++</ins> <ins>{{ tag.tag_label }}</ins> |
46 précision : <ins>{{ tag.accuracy }}</ins> - |
46 fiabilité : <ins>{{ tag.accuracy }}</ins> - |
47 pertinence : <ins>{{ tag.relevancy }}</ins> |
47 pertinence : <ins>{{ tag.relevancy }}</ins> |
48 </li> |
48 </li> |
49 </template> |
49 </template> |
50 |
50 |
51 <template v-if="tag.action=='del'"> |
51 <template v-if="tag.action=='del'"> |
54 |
54 |
55 <template v-if="tag.action=='update'"> |
55 <template v-if="tag.action=='update'"> |
56 <li> |
56 <li> |
57 <strong>{{ tag.tag_label }}</strong> |
57 <strong>{{ tag.tag_label }}</strong> |
58 <template v-if="tag.accuracy != tag.new_accuracy"> |
58 <template v-if="tag.accuracy != tag.new_accuracy"> |
59 précision: <del>{{ tag.accuracy }}</del> <ins>{{ tag.new_accuracy }}</ins> - |
59 fiabilité: <del>{{ tag.accuracy }}</del> <ins>{{ tag.new_accuracy }}</ins> - |
60 </template> |
60 </template> |
61 <template v-if="tag.accuracy == tag.new_accuracy"> |
61 <template v-if="tag.accuracy == tag.new_accuracy"> |
62 précision: {{ tag.accuracy }} - |
62 fiabilité: {{ tag.accuracy }} - |
63 </template> |
63 </template> |
64 <template v-if="tag.relevancy != tag.new_relevancy"> |
64 <template v-if="tag.relevancy != tag.new_relevancy"> |
65 pertinence: <del>{{ tag.relevancy }}</del> <ins>{{ tag.new_relevancy }}</ins> |
65 pertinence: <del>{{ tag.relevancy }}</del> <ins>{{ tag.new_relevancy }}</ins> |
66 </template> |
66 </template> |
67 <template v-if="tag.relevancy == tag.new_relevancy"> |
67 <template v-if="tag.relevancy == tag.new_relevancy"> |