add alert message when saham < 500
This commit is contained in:
@@ -1,100 +1,105 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="row col-md-10 col-md-offset-1">
|
<div class="row col-md-10 col-md-offset-1">
|
||||||
<div class="col-md-4">
|
<div class="col-md-4">
|
||||||
<h4>Maklumat Anggota</h4><hr/>
|
<h4>Maklumat Anggota</h4>
|
||||||
<ul class="list-group">
|
<hr />
|
||||||
<li class="list-group-item"><b>No. Kad Pengenalan : </b>{{ data.user.no_kp }}</li>
|
|
||||||
<li class="list-group-item"><b>No. Anggota : </b>{{ data.user.no_anggota }}</li>
|
|
||||||
<li class="list-group-item"><b>Nama : </b>{{ data.user.name }}</li>
|
|
||||||
<li class="list-group-item"><b>Unit : </b>{{ data.user.unit }}</li>
|
|
||||||
<li class="list-group-item"><b>Saham : </b>{{ data.user.saham }}</li>
|
|
||||||
<li class="list-group-item"><b>Yuran : </b>{{ data.user.yuran }}</li>
|
|
||||||
<li class="list-group-item" v-if="data.election.status==1">
|
|
||||||
<center>Undian belum bermula</center>
|
|
||||||
</li>
|
|
||||||
<li class="list-group-item" v-if="data.election.status==2">
|
|
||||||
<center>
|
|
||||||
<router-link v-if="!hasVoted()" :to="{name: 'Vote'}" class="btn btn-info">
|
|
||||||
Vote Now
|
|
||||||
</router-link>
|
|
||||||
<router-link v-else :to="{name: 'Result'}" class="btn btn-info">
|
|
||||||
Papar Keputusan
|
|
||||||
</router-link>
|
|
||||||
</center>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<div v-if="hasVoted()">
|
|
||||||
<hr/>
|
|
||||||
<h4>Your votes information</h4><hr/>
|
|
||||||
<ul class="list-group">
|
<ul class="list-group">
|
||||||
<li class="list-group-item" v-for="result in data.result">
|
<li class="list-group-item"><b>Nama : </b>{{ data.user.name }}</li>
|
||||||
<b>{{ getPosition(result.position_id) }} : </b>{{ getNominee(result.nominee_id) }}
|
<li class="list-group-item"><b>No. Kad Pengenalan : </b>{{ data.user.no_kp }}</li>
|
||||||
|
<li class="list-group-item"><b>No. Anggota : </b>{{ data.user.no_anggota }}
|
||||||
|
<li class="list-group-item"><b>Unit : </b>{{ data.user.unit }}</li>
|
||||||
|
<li class="list-group-item"><b>Saham : </b>{{ data.user.saham }}</li>
|
||||||
|
<li class="list-group-item"><b>Yuran : </b>{{ data.user.yuran }}</li>
|
||||||
|
<li class="list-group-item" v-if="data.election.status == 1">
|
||||||
|
<center>Undian belum bermula</center>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item" v-if="data.election.status == 2">
|
||||||
|
<center>
|
||||||
|
<router-link v-if="data.user.saham >= 500 && !hasVoted()" :to="{ name: 'Vote' }"
|
||||||
|
class="btn btn-info">
|
||||||
|
Undi Sekarang
|
||||||
|
</router-link>
|
||||||
|
<div v-else class="alert alert-danger" role="alert">
|
||||||
|
Saham minima tidak mencukupi untuk pengundian
|
||||||
|
</div>
|
||||||
|
</center>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
<div v-if="hasVoted()">
|
||||||
</div>
|
<hr />
|
||||||
|
<h4>Maklumat Undian Anda</h4>
|
||||||
<div class="col-md-8">
|
<hr />
|
||||||
<h4>Maklumat Calon</h4><hr/>
|
<ul class="list-group">
|
||||||
<small>Click Picture to see details</small>
|
<li class="list-group-item" v-for="result in data.result">
|
||||||
<div class="panel panel-primary" v-for="position in data.positions">
|
<b>{{ getPosition(result.position_id) }} : </b>{{ getNominee(result.nominee_id) }}
|
||||||
<div class="panel-heading">{{ position.name }}</div>
|
</li>
|
||||||
<div class="panel-body table-responsive">
|
</ul>
|
||||||
<table class="table table-hover">
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th></th>
|
|
||||||
<th>Name</th>
|
|
||||||
<th>Unit</th>
|
|
||||||
<th>Taraf Pendidikan</th>
|
|
||||||
<th>Pengalaman Kerja </th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
<tr v-for="(nominee,i) in data.nominees" v-if="nominee.position_id==position.id">
|
|
||||||
<td><img
|
|
||||||
@click="view(i)"
|
|
||||||
:src="createBase64ImageUrl(nominee.photo)"
|
|
||||||
class="thumbnail"
|
|
||||||
style="height: 60px;width: 60px;" />
|
|
||||||
</td>
|
|
||||||
<td>{{ nominee.name }}</td>
|
|
||||||
<td>{{ nominee.unit }}</td>
|
|
||||||
<td>{{ nominee.education}}</td>
|
|
||||||
<td>{{ nominee.experience}}</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<modal id="nominee-information-modal" aClass="primary">
|
<div class="col-md-8">
|
||||||
<modal-header>{{ header }}</modal-header>
|
<h4>Maklumat Calon</h4>
|
||||||
<modal-body>
|
<hr />
|
||||||
<div class="row">
|
<!-- <small>Click Picture to see details</small> -->
|
||||||
<div class="col-md-3">
|
<div class="panel panel-primary" v-for="position in data.positions">
|
||||||
<img :src="data.storageURL+x.image" style="height: 150px; width: 150px" class="thumbnail"/>
|
<div class="panel-heading">{{ position.name }}</div>
|
||||||
</div>
|
<div class="panel-body table-responsive">
|
||||||
<div class="col-md-9" style="margin-left: 5px;">
|
<table class="table table-hover">
|
||||||
<h3><strong><em>"{{ x.motto }}"</em></strong></h3>
|
<thead>
|
||||||
<b> Name : </b>{{ x.name }}<br/>
|
<tr>
|
||||||
<b> Unit : </b>{{ x.unit }}<br/>
|
<th></th>
|
||||||
<b> education : </b>{{ getPartylist(x.education) }}<br/><hr/>
|
<th>Nama</th>
|
||||||
{{ x.experience }}
|
<th>No. Anggota</th>
|
||||||
</div>
|
<th>Unit</th>
|
||||||
|
<th>Taraf Pendidikan</th>
|
||||||
|
<th>Pengalaman Kerja </th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr v-for="(nominee, i) in data.nominees" v-if="nominee.position_id == position.id">
|
||||||
|
<td><img @click="view(i)" :src="createBase64ImageUrl(nominee.photo)" class="thumbnail"
|
||||||
|
style="height: 60px;width: 60px;" />
|
||||||
|
</td>
|
||||||
|
<td>{{ nominee.name }}</td>
|
||||||
|
<td>{{ nominee.no_anggota }}</td>
|
||||||
|
<td>{{ nominee.unit }}</td>
|
||||||
|
<td>{{ nominee.education }}</td>
|
||||||
|
<td>{{ nominee.experience }}</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
</div>
|
</div>
|
||||||
</modal-body>
|
</div>
|
||||||
<modal-footer>
|
|
||||||
<button data-dismiss="modal" class="btn btn-default">Close</button>
|
|
||||||
</modal-footer>
|
|
||||||
</modal>
|
|
||||||
|
|
||||||
|
<modal id="nominee-information-modal" aClass="primary">
|
||||||
|
<modal-header>{{ header }}</modal-header>
|
||||||
|
<modal-body>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<img :src="data.storageURL + x.image" style="height: 150px; width: 150px"
|
||||||
|
class="thumbnail" />
|
||||||
|
</div>
|
||||||
|
<div class="col-md-9" style="margin-left: 5px;">
|
||||||
|
<h3><strong><em>"{{ x.motto }}"</em></strong></h3>
|
||||||
|
<b> Name : </b>{{ x.name }}<br />
|
||||||
|
<b> Unit : </b>{{ x.unit }}<br />
|
||||||
|
<b> education : </b>{{ getPartylist(x.education) }}<br />
|
||||||
|
<hr />
|
||||||
|
{{ x.experience }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</modal-body>
|
||||||
|
<modal-footer>
|
||||||
|
<button data-dismiss="modal" class="btn btn-default">Close</button>
|
||||||
|
</modal-footer>
|
||||||
|
</modal>
|
||||||
|
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default{
|
export default {
|
||||||
created: function () {
|
created: function () {
|
||||||
//console.log(this)
|
//console.log(this)
|
||||||
},
|
},
|
||||||
@@ -110,7 +115,7 @@ export default{
|
|||||||
return this.data.result.length > 0;
|
return this.data.result.length > 0;
|
||||||
},
|
},
|
||||||
|
|
||||||
getPartylist: function(id) {
|
getPartylist: function (id) {
|
||||||
let partylists = this.data.partylists;
|
let partylists = this.data.partylists;
|
||||||
for (var i in partylists)
|
for (var i in partylists)
|
||||||
if (partylists[i]['id'] == id) return partylists[i]['name'];
|
if (partylists[i]['id'] == id) return partylists[i]['name'];
|
||||||
@@ -127,7 +132,7 @@ export default{
|
|||||||
getNominee: function (id) {
|
getNominee: function (id) {
|
||||||
let nominees = this.data.nominees;
|
let nominees = this.data.nominees;
|
||||||
for (var i in nominees)
|
for (var i in nominees)
|
||||||
if (nominees[i]['id']==id) return nominees[i].name;
|
if (nominees[i]['id'] == id) return nominees[i].name;
|
||||||
return '';
|
return '';
|
||||||
},
|
},
|
||||||
|
|
||||||
@@ -136,15 +141,15 @@ export default{
|
|||||||
this.util.showModal('#nominee-information-modal');
|
this.util.showModal('#nominee-information-modal');
|
||||||
},
|
},
|
||||||
|
|
||||||
createBase64ImageUrl: function(base64ImageData) {
|
createBase64ImageUrl: function (base64ImageData) {
|
||||||
return "data:image/png;base64," + base64ImageData;
|
return "data:image/png;base64," + base64ImageData;
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
||||||
computed: {
|
computed: {
|
||||||
header: function () {
|
header: function () {
|
||||||
return this.x.name+' for '+this.getPosition(this.x.position_id);
|
return this.x.name + ' for ' + this.getPosition(this.x.position_id);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user