| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226 |
- <template>
- <div class="app-container">
- <div class="filter-container">
- <div class="filter-view">
- <el-input
- class="filter-input"
- v-model="filters.pageVo.criteria"
- placeholder="Search by Rate Name"
- prefix-icon="el-icon-search"
- clearable/>
- <div>
- <el-button
- @click="onClickSearch"
- icon="el-icon-search"
- type="primary">
- Search
- </el-button>
- </div>
- <div
- class="filter-flex-button"
- v-if="!$route.meta.onlyView">
- <el-button
- icon="el-icon-plus"
- type="primary"
- @click="onClickAdd">
- Create Rate
- </el-button>
- </div>
- </div>
- </div>
- <el-table
- v-loading="loading"
- :data="table.list">
- <el-table-column
- align="center"
- label="Rate ID"
- prop="userPk"
- min-width="120">
- <template slot-scope="{row}" >
- <span
- class="link-type"
- @click="onClickEdit(row)"
- v-if="!$route.meta.onlyView">
- {{ row.dynamicRateId }}
- </span>
- <span v-else>{{ row.dynamicRateId }}</span>
- </template>
- </el-table-column>
- <el-table-column
- align="center"
- label="Rate Name"
- prop="rateName"
- min-width="120"/>
- <el-table-column
- align="center"
- label="No. of Sites Configured"
- prop="assignedSiteCount"
- min-width="120"/>
- <el-table-column
- align="center"
- label="Status"
- prop="dataStatus"
- min-width="120"/>
- <el-table-column
- align="center"
- label="Update Time"
- prop="updateTime"
- min-width="120"/>
- <el-table-column
- align="center"
- label="Action"
- min-width="70"
- v-if="!$route.meta.onlyView">
- <template v-slot="{ row }">
- <el-dropdown
- class="action-dropdown"
- @command="(v) => handleCommand(v, row)"
- v-if="row.dataStatus != 'Inactive'">
- <i class="el-icon-more icon-action"></i>
- <el-dropdown-menu slot="dropdown">
- <el-dropdown-item
- command="assignRates">
- Assign Sites
- </el-dropdown-item>
- <el-dropdown-item
- command="onClickEdit">
- Edit
- </el-dropdown-item>
- <el-dropdown-item
- command="onClickDelete">
- Delete
- </el-dropdown-item>
- </el-dropdown-menu>
- </el-dropdown>
- </template>
- </el-table-column>
- </el-table>
- <div class="right">
- <pagination
- v-show="table.total > 0"
- :total="table.total"
- :page.sync="filters.pageNo"
- :limit.sync="filters.pageSize"
- @pagination="getTableData" />
- </div>
- <DialogAssignment
- :visible="assign.visible"
- :title="'ASSIGN SITES (RATE NAME: ' + assign.item.rateName + ')'"
- :rate="assign.item"
- @hide="assignRates"/>
- </div>
- </template>
- <script>
- import TableAction from '@/components/TableAction.vue'
- import Pagination from '@/components/Pagination'
- import DialogAssignment from '@/components/DialogAssignment'
- import api from '@/http/api/rates'
- export default {
- components: { Pagination, TableAction, DialogAssignment },
- data() {
- return {
- loading: false,
- filters: {
- pageNo: 1,
- pageSize: 10,
- pageVo: {
- criteria: ""
- }
- },
- table: {
- list: [],
- total: 0
- },
- assign: {
- item: {},
- visible: false
- }
- }
- },
- created() {
- this.onClickSearch()
- },
- methods: {
- onClickSearch() {
- this.filters.pageNo = 1
- this.getTableData()
- },
- getTableData() {
- this.loading = true;
- api.getRatePages(this.filters).then(res => {
- if (res.data && res.total) {
- this.table.total = res.total;
- this.table.list = res.data;
- }
- }).catch(err => {
- this.$message({
- type: 'error',
- message: err
- })
- this.table.total = 0;
- this.table.list = [];
- }).finally(() => {
- this.loading = false;
- })
- },
- handleCommand(cb, item) {
- this[cb](item)
- },
- onClickAdd() {
- this.$router.push({
- path: "/site-management/rate-add"
- })
- },
- onClickEdit(row) {
- this.$router.push({
- path: "/site-management/rate-update/" + row.dynamicRateId
- })
- },
- onClickDelete(row) {
- this.$confirm('Are you sure you want to delete this rate?', 'Delete', {
- confirmButtonText: 'OK',
- cancelButtonText: 'Cancel',
- type: 'warning'
- }).then(res => {
- this.deleteDynamicRate(row.dynamicRateId);
- })
- },
- assignRates(row) {
- if (row) {
- this.assign.item = row;
- this.assign.visible = true;
- } else {
- this.assign.item = {};
- this.assign.visible = false;
- this.getTableData();
- }
- },
- deleteDynamicRate(id) {
- this.loading = true;
- api.deleteDynamicRate({
- dynamicRateId: id
- }).then(res => {
- this.$message({
- type: 'success',
- message: "Delete success."
- })
- this.getTableData()
- }).catch(err => {
- this.$message({
- type: 'error',
- message: err
- })
- this.loading = false;
- })
- }
- }
- }
- </script>
- <style>
- .filter-input {
- min-width: 100px;
- max-width: 300px;
- }
- </style>
|