| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308 |
- <template>
- <el-dialog
- :title="title"
- :visible="visible"
- :before-close="onHide"
- custom-class="points-assign-dialog">
- <div class="filter-container filter-view">
- <el-select
- style="min-width: 70px; max-width: 120px;"
- clearable
- v-model="filter.pageCriteria.assignmentStatus"
- placeholder="Status"
- @change="onSearch">
- <el-option
- v-for="(item, index) in statusOptions"
- :key="index"
- :label="item"
- :value="item"/>
- </el-select>
- <div style="flex: 1; min-width: 150px; max-width: 300px;">
- <el-input
- clearable
- v-model="filter.pageCriteria.criteria"
- placeholder="Search by Site Name or Service Provider"
- @keyup.enter.native="onSearch"/>
- </div>
- <el-button
- type="primary"
- @click="onSearch">
- Search
- </el-button>
- </div>
- <div class="assign-table-actions">
- <el-button
- type="danger"
- :disabled="selectRow.length == 0"
- :loading="loading.unassign"
- @click="unassignSites">
- Batch Un-assign
- </el-button>
- <el-button
- type="accent"
- :disabled="selectRow.length == 0"
- :loading="loading.assign"
- @click="assignSites">
- Batch Assign
- </el-button>
- </div>
- <div class="table-view" v-loading="table.loading">
- <el-table
- :data="table.data"
- height="100%"
- class="no-border"
- @selection-change="changeSelection"
- v-if="visible">
- <el-table-column
- align="center"
- label="Site Name"
- prop="siteName"
- min-width="130"/>
- <el-table-column
- align="center"
- label="Charger Id"
- prop="chargeBoxId"
- min-width="150"/>
- <el-table-column
- align="center"
- label="Connector Id"
- prop="connectorId"
- min-width="150"/>
- <el-table-column
- align="center"
- label="Assignment Status"
- prop="assignmentStatus"
- min-width="150"/>
- <el-table-column
- align="center"
- label="Select"
- type="selection"/>
- </el-table>
- </div>
- <div class="center" style="margin-bottom: -20px;">
- <Pagination
- v-show="table.total"
- :total="table.total"
- :page.sync="filter.pageNum"
- :limit.sync="filter.pageSize"
- @pagination="getTableData"/>
- </div>
- </el-dialog>
- </template>
- <script>
- import apiBase from '@/api/apiBase';
- import api from '@/api/apiMaintain.js';
- import Pagination from '@/components/Pagination'
- export default {
- name: "MaintainAssignmentDialog",
- props: {
- title: {
- type: String,
- default: ""
- },
- visible: {
- type: Boolean,
- default: false
- },
- item: {
- type: Object,
- default: () => ({})
- }
- },
- components: {Pagination},
- data() {
- return {
- filter: {
- pageNum: 1,
- pageSize: 10,
- pageCriteria: {
- criteria: "",
- downtimeId: "",
- assignmentStatus: ""
- }
- },
- table: {
- data: [],
- total: 0,
- loading: false
- },
- loading: {
- assign: false,
- unassign: false
- },
- selectRow: [],
- statusOptions:[]
- };
- },
- mounted() {
- this.getStatusOptions();
- },
- watch: {
- visible: {
- handler(n, o) {
- if (n) {
- this.filter.pageCriteria.downtimeId = this.item.downtimeId;
- this.onSearch();
- }
- }
- }
- },
- methods: {
- onHide() {
- this.$emit("hide");
- },
- onSearch() {
- this.filter.pageNo = 1;
- this.getTableData();
- },
- getStatusOptions() {
- apiBase.getAssignStatusOptions().then(res => {
- if (res.data) {
- this.statusOptions = res.data
- }
- }).catch(error => {
- this.$message({
- type: 'error',
- message: error
- })
- })
- },
- getTableData() {
- this.selectRow = []
- this.table.loading = true;
- api.getMaintainAssignPages(this.filter).then(res => {
- if (res.data.totalRow && res.data.records) {
- this.table.total = res.data.totalRow;
- this.table.data = res.data.records;
- } else {
- this.table.total = 0;
- this.table.data = [];
- }
- this.table.loading = false;
- }).catch(error => {
- this.$message({
- type: 'error',
- message: error
- })
- this.table.total = 0;
- this.table.data = [];
- this.table.loading = false;
- })
- },
- changeSelection(val) {
- this.selectRow = val;
- },
- getSelectIds() {
- const ids = [];
- this.selectRow.forEach(item => {
- ids.push(item.connectorPk)
- })
- return ids;
- },
- assignSites() {
- const params = {
- downtimeId: this.item.downtimeId,
- connectorPks: this.getSelectIds()
- }
- this.loading.assign = true;
- api.assignMaintainConnector(params).then(res => {
- this.$message({
- type: 'success',
- message: res.msg || "Success"
- })
- this.getTableData()
- }).catch(error => {
- this.$message({
- type: 'error',
- message: error
- })
- }).finally(() => {
- this.loading.assign = false;
- })
- },
- unassignSites() {
- const params = {
- downtimeId: this.item.downtimeId,
- connectorPks: this.getSelectIds()
- }
- this.loading.unassign = true;
- api.unassignMaintainConnector(params).then(res => {
- this.$message({
- type: 'success',
- message: res.msg || "Success"
- })
- this.getTableData()
- }).catch(error => {
- this.$message({
- type: 'error',
- message: error
- })
- }).finally(() => {
- this.loading.unassign = false;
- })
- }
- }
- }
- </script>
- <style scoped>
- >>> .points-assign-dialog {
- width: 65vw;
- height: 90vh;
- display: flex;
- max-width: 1200px;
- flex-direction: column;
- margin-top: 5vh !important;
- }
- >>> .points-assign-dialog .el-dialog__header {
- padding: 20px 20px 0;
- font-weight: bold;
- }
- >>> .points-assign-dialog .el-dialog__body {
- flex: 1;
- padding: 20px;
- display: flex;
- overflow: hidden;
- flex-direction: column;
- }
- .assign-table-actions {
- display: flex;
- padding-top: 5px;
- flex-wrap: wrap-reverse;
- align-items: center;
- justify-content: flex-end;
- }
- .points-assign-dialog .table-view {
- flex: 1;
- overflow-y: auto;
- padding-top: 10px;
- margin-bottom: -10px;
- }
- @media screen and (max-width: 1200px) {
- .points-assign-dialog {
- width: 70vw;
- }
- }
- @media screen and (max-width: 1000px) {
- .points-assign-dialog {
- width: 80vw;
- }
- }
- @media screen and (max-width: 800px) {
- .points-assign-dialog {
- width: 90vw;
- }
- }
- @media screen and (max-width: 700px) {
- .points-assign-dialog {
- width: 99vw;
- }
- }
- @media screen and (max-width: 320px) {
- .points-assign-dialog {
- width: 100%;
- min-width: 300px;
- }
- }
- </style>
|