Fix Tooling-List UI
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 1.1 KiB |
@@ -116,13 +116,20 @@
|
||||
&.selected{
|
||||
background-color: rgba(23, 145, 255, 0.75);
|
||||
color: #fff;
|
||||
.image{
|
||||
background-color: #FFF;
|
||||
}
|
||||
}
|
||||
|
||||
.image{
|
||||
.image{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin: 16px 14px 16px 16px;
|
||||
margin-top: 8px;
|
||||
margin-left: 14px;
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
background-color: #DDD;
|
||||
img{
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
@@ -133,6 +140,7 @@
|
||||
text-align: left;
|
||||
width:145px;
|
||||
margin-top: 11px;
|
||||
margin-left: 14px;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -173,9 +173,6 @@
|
||||
}
|
||||
|
||||
.tooling-families-container, .tooling-shanks-container, .tooling-magpos-container{
|
||||
& img:empty{
|
||||
display: none;
|
||||
}
|
||||
|
||||
.text-body div + div{
|
||||
margin-top: 11px;
|
||||
|
||||
@@ -2789,11 +2789,18 @@ footer .container button.big:before {
|
||||
background-color: rgba(23, 145, 255, 0.75);
|
||||
color: #fff;
|
||||
}
|
||||
.equipment.selected .image {
|
||||
background-color: #FFF;
|
||||
}
|
||||
.equipment .image {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin: 16px 14px 16px 16px;
|
||||
margin-top: 8px;
|
||||
margin-left: 14px;
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
background-color: #DDD;
|
||||
}
|
||||
.equipment .image img {
|
||||
width: 48px;
|
||||
@@ -2803,6 +2810,7 @@ footer .container button.big:before {
|
||||
text-align: left;
|
||||
width: 145px;
|
||||
margin-top: 11px;
|
||||
margin-left: 14px;
|
||||
}
|
||||
.input-box {
|
||||
width: 100%;
|
||||
@@ -5549,11 +5557,6 @@ footer .container button.big:before {
|
||||
font-size: 18px;
|
||||
font-weight: 600;
|
||||
}
|
||||
.tooling-families-container img:empty,
|
||||
.tooling-shanks-container img:empty,
|
||||
.tooling-magpos-container img:empty {
|
||||
display: none;
|
||||
}
|
||||
.tooling-families-container .text-body div + div,
|
||||
.tooling-shanks-container .text-body div + div,
|
||||
.tooling-magpos-container .text-body div + div {
|
||||
|
||||
@@ -74,6 +74,17 @@ export default class toolingEquipment extends Vue {
|
||||
this.$router.push({ path: path});
|
||||
}
|
||||
|
||||
public getToolIcon = function (id) {
|
||||
if(id == 9999)
|
||||
return "../assets/images/list-undefined.PNG"
|
||||
else if(id == 151 || id == 700 )
|
||||
return "../assets/images/list-blade.PNG"
|
||||
else
|
||||
return "../assets/images/list-tool.PNG"
|
||||
}
|
||||
|
||||
|
||||
|
||||
async save(item){
|
||||
item.name = "";
|
||||
toolingActions.updateToolsConfiguration(store,item);
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
</div>
|
||||
<div class="list-vertical scrollable">
|
||||
<equipment v-for="t in tools" :key="t.id" :code="t.id" :title="t.familyName"
|
||||
img-source="../assets/images/tool.PNG"
|
||||
:img-source="getToolIcon(t.toolType)"
|
||||
:class="{selected: selectedTool == t}"
|
||||
@click="selectTool(t)"></equipment>
|
||||
</div>
|
||||
|
||||
@@ -22,6 +22,7 @@
|
||||
<div class="list-vertical scrollable">
|
||||
<equipment v-for="(m,k) in magpos" :key="k" :code="'Magazzino' + ' ' + m.magazineId" :title="'Manina' + ' ' + m.id"
|
||||
:class="{selected: selectedTool == m}"
|
||||
:img-source="'../assets/images/list-mag-pos.PNG'"
|
||||
@click="selectTool(m)"></equipment>
|
||||
</div>
|
||||
<div class="footer">
|
||||
|
||||
@@ -22,6 +22,7 @@
|
||||
<div class="list-vertical scrollable">
|
||||
<equipment v-for="s in shanks" :key="s.id" :title="'Codolo' + ' ' + s.id"
|
||||
v-if="s.id != ''"
|
||||
:img-source="'../assets/images/shank.PNG'"
|
||||
:class="{selected: selectedTool == s}"
|
||||
@click="selectTool(s)"></equipment>
|
||||
</div>
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<!-- <div class="test-container"> -->
|
||||
<div class="equipment" @click="onClick">
|
||||
<div class="image">
|
||||
<div v-if="imgSource" class="image">
|
||||
<img :src="imgSource" alt="">
|
||||
</div>
|
||||
<div class="text-body">
|
||||
|
||||