This commit is contained in:
@@ -28,21 +28,17 @@
|
||||
<span class="headline">{{ $ay.t("WorkOrderStatus") }}</span>
|
||||
</v-card-title>
|
||||
<v-card-text>
|
||||
{{ value.states }}
|
||||
<!-- {{ value.states }} -->
|
||||
<!-- <v-list>
|
||||
<v-list-item
|
||||
v-for="item in reportList"
|
||||
:key="item.id"
|
||||
@click="renderReport(item.id)"
|
||||
>
|
||||
<v-list-item-title>{{ item.name }}</v-list-item-title>
|
||||
<v-list-item-action>
|
||||
<v-btn icon @click.stop="editReport(item.id)">
|
||||
<v-icon color="primary">$ayiEdit</v-icon>
|
||||
</v-btn>
|
||||
</v-list-item-action>
|
||||
<v-list-item v-for="item in value.states" :key="item.id">
|
||||
<v-list-item-title>{{ item }}</v-list-item-title>
|
||||
</v-list-item>
|
||||
</v-list> -->
|
||||
<template v-for="item in value.states">
|
||||
<div :key="item.id">
|
||||
{{ item }}
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<template v-if="canAdd">
|
||||
<div>
|
||||
|
||||
Reference in New Issue
Block a user