Advertisement
Rdhidayat

Vue

May 23rd, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <template>
  2.   <div class="page">
  3.     <div>
  4.       <div class="g-product-block">
  5.         <h4>Status Order</h4>
  6.         <v-radio-group v-model="statusOrder">
  7.           <v-radio label="Belum Dibayar" color="red" value="belumbayar" class="radioStatusOrder"></v-radio>
  8.         </v-radio-group>
  9.         <hr>
  10.  
  11.         <v-radio-group v-model="statusOrder">
  12.           <v-radio label="Selesai" color="red" value="selesai" class="radioStatusOrder"></v-radio>
  13.         </v-radio-group>
  14.         <hr>
  15.         <v-radio-group v-model="statusOrder">
  16.           <v-radio label="Batal" color="red" value="batal" class="radioStatusOrder"></v-radio>
  17.         </v-radio-group>
  18.         <hr>
  19.       </div>
  20.       <div class="g-product-divider"/>
  21.     </div>
  22.  
  23.     <div>
  24.       <div class="g-product-block">
  25.         <h4>Status Pengiriman</h4>
  26.         <v-radio-group v-model="statusPengiriman">
  27.           <v-radio
  28.             label="Belum Dikirim"
  29.             color="red"
  30.             value="belum-dikirim"
  31.             class="radioStatusPengiriman"
  32.           ></v-radio>
  33.         </v-radio-group>
  34.         <hr>
  35.         <v-radio-group v-model="statusPengiriman">
  36.           <v-radio
  37.             label="Sampai Tujuan"
  38.             color="red"
  39.             value="sampai-tujuan"
  40.             class="radioStatusPengiriman"
  41.           ></v-radio>
  42.         </v-radio-group>
  43.         <hr>
  44.       </div>
  45.       <div class="g-product-divider"/>
  46.     </div>
  47.  
  48.     <BottomNavFilterHistoryTransaction/>
  49.   </div>
  50. </template>
  51.  
  52.  
  53. <script>
  54. const components = {
  55.   BottomNavFilterHistoryTransaction: () =>
  56.     import('~/components/buyer/BottomNavFilterHistoryTransaction.vue' /* webpackChunkName: "BottNavHistoryTransBuyer" */)
  57. }
  58.  
  59. export default {
  60.   middleware: 'authenticated',
  61.   layout: 'buyer/top_nav_w_title_w_close_buyer',
  62.   components,
  63.   head() {
  64.     return {
  65.       title: 'Filter'
  66.     }
  67.   },
  68.   data() {
  69.     return {
  70.       statusOrder: '',
  71.       statusPengiriman: ''
  72.     }
  73.   }
  74. }
  75. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement