83 lines
1.9 KiB
Vue
83 lines
1.9 KiB
Vue
<template>
|
|
<div class="text-xs-center">
|
|
<v-dialog
|
|
v-model="dialog"
|
|
width="500"
|
|
>
|
|
|
|
<v-card>
|
|
|
|
|
|
<v-card-title
|
|
class="headline grey lighten-2"
|
|
primary-title
|
|
>
|
|
Tolak Pemeriksaan
|
|
</v-card-title>
|
|
|
|
<v-card-text>
|
|
<v-radio-group v-model="selected_unval_action">
|
|
<v-radio
|
|
v-for="(unval, n) in unval_actions"
|
|
v-bind:key="n"
|
|
:label="unval.label"
|
|
:value="unval.val"></v-radio>
|
|
</v-radio-group>
|
|
</v-card-text>
|
|
|
|
<v-card-actions>
|
|
<v-btn
|
|
color="primary"
|
|
flat
|
|
@click="dialog=!dialog"
|
|
>
|
|
Tutup
|
|
</v-btn>
|
|
<v-spacer></v-spacer>
|
|
<v-btn
|
|
color="primary"
|
|
@click="reject"
|
|
:disabled="!selected_unval_action"
|
|
:dark="!!selected_unval_action"
|
|
>
|
|
Tolak
|
|
</v-btn>
|
|
</v-card-actions>
|
|
</v-card>
|
|
</v-dialog>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
module.exports = {
|
|
data () {
|
|
return {
|
|
|
|
}
|
|
},
|
|
|
|
computed : {
|
|
dialog : {
|
|
get () { return this.$store.state.re_px.dialog_unval },
|
|
set (v) { this.$store.commit("re_px/update_dialog_unval", v) }
|
|
},
|
|
|
|
unval_actions () {
|
|
return this.$store.state.re_px.unval_actions
|
|
},
|
|
|
|
selected_unval_action : {
|
|
get () { return this.$store.state.re_px.selected_unval_action },
|
|
set (v) { this.$store.commit('re_px/update_selected_unval_action', v) }
|
|
}
|
|
},
|
|
|
|
methods : {
|
|
reject () {
|
|
this.$store.dispatch('re_px/reject')
|
|
this.dialog = false
|
|
}
|
|
}
|
|
}
|
|
</script>
|