refactor: refs #8673 replace VnPopup with inline display of evaNotes in ExtraCommunity.vue
gitea/salix-front/pipeline/pr-dev This commit looks good
Details
gitea/salix-front/pipeline/pr-dev This commit looks good
Details
This commit is contained in:
parent
cd0a79b444
commit
97832a7da9
|
@ -18,7 +18,6 @@ import { usePrintService } from 'composables/usePrintService';
|
||||||
import VnSubToolbar from 'src/components/ui/VnSubToolbar.vue';
|
import VnSubToolbar from 'src/components/ui/VnSubToolbar.vue';
|
||||||
import axios from 'axios';
|
import axios from 'axios';
|
||||||
import RightMenu from 'src/components/common/RightMenu.vue';
|
import RightMenu from 'src/components/common/RightMenu.vue';
|
||||||
import VnPopup from 'src/components/common/VnPopup.vue';
|
|
||||||
|
|
||||||
const stateStore = useStateStore();
|
const stateStore = useStateStore();
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
|
@ -637,18 +636,7 @@ watch(route, () => {
|
||||||
<QTd />
|
<QTd />
|
||||||
<QTd />
|
<QTd />
|
||||||
<QTd>
|
<QTd>
|
||||||
<QBtn
|
<span>{{ entry.evaNotes }}</span>
|
||||||
v-if="entry.evaNotes"
|
|
||||||
icon="comment"
|
|
||||||
size="md"
|
|
||||||
flat
|
|
||||||
color="primary"
|
|
||||||
>
|
|
||||||
<VnPopup
|
|
||||||
:title="t('globals.observations')"
|
|
||||||
:content="entry.evaNotes"
|
|
||||||
/>
|
|
||||||
</QBtn>
|
|
||||||
</QTd>
|
</QTd>
|
||||||
</QTr>
|
</QTr>
|
||||||
</template>
|
</template>
|
||||||
|
@ -721,4 +709,12 @@ watch(route, () => {
|
||||||
white-space: normal;
|
white-space: normal;
|
||||||
width: max-content;
|
width: max-content;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.q-td {
|
||||||
|
&:nth-child(15) {
|
||||||
|
white-space: normal;
|
||||||
|
text-align: left;
|
||||||
|
word-break: break-word;
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue