| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311 |
- <template>
- <el-dialog
- :title="title"
- :visible="visible"
- :before-close="onHide"
- class="assign-label-dialog">
- <div class="filter-container filter-view">
- <el-select
- style="min-width: 70px; max-width: 120px;"
- clearable
- v-model="filter.pageVo.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.pageVo.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-label-actions">
- <el-button
- type="danger"
- :disabled="selectRow.length == 0"
- :loading="loading.unassign"
- @click="onClickUnassign">
- Batch Un-assign
- </el-button>
- <el-button
- type="accent"
- :disabled="selectRow.length == 0"
- :loading="loading.assign"
- @click="onClickAssign">
- 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">
- <el-table-column
- align="center"
- label="Site Name"
- prop="siteName"
- min-width="120"/>
- <el-table-column
- align="center"
- label="Address"
- prop="address"
- min-width="120"/>
- <el-table-column
- align="center"
- label="Service Provider"
- min-width="140">
- <template slot-scope="{row}">
- <div v-for="item in row.serviceProviders" :key="item">{{item}}</div>
- </template>
- </el-table-column>
- <el-table-column
- align="center"
- label="Assignment Status"
- prop="assignmentStatus"
- min-width="120"/>
- <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.pageNo"
- :limit.sync="filter.pageSize"
- @pagination="getTableData"/>
- </div>
- </el-dialog>
- </template>
- <script>
- import api from '../../http/api/site.js'
- import Pagination from '@/components/Pagination'
- export default {
- name: "AssignmentSiteLabel",
- props: {
- visible: {
- type: Boolean,
- default: false
- },
- item: {
- type: Object,
- default: () => ({})
- }
- },
- data() {
- return {
- filter: {
- pageSize: 10,
- pageNo: 1,
- pageVo: {
- criteria: "",
- siteLabelId: "",
- assignmentStatus: ""
- }
- },
- table: {
- data: [],
- total: 0,
- loading: false
- },
- loading: {
- assign: false,
- unassign: false
- },
- statusOptions: [],
- selectRow: []
- };
- },
- components: {Pagination},
- computed: {
- title() {
- return "ASSIGN SITES (Label: " + this.item.siteLabelName + ")"
- }
- },
- watch: {
- visible: {
- handler(n, o) {
- console.log("watch.visible", n, o);
- if (n) {
- this.filter.pageVo.siteLabelId = this.item.siteLabelId;
- this.filter.pageVo.assignmentStatus = "";
- this.onSearch()
- }
- }
- }
- },
- mounted() {
- this.getStatusOptions();
- },
- methods: {
- onHide() {
- this.$emit("hide", true);
- },
- onSearch() {
- this.filter.pageNo = 1;
- this.getTableData();
- },
- getStatusOptions() {
- api.getAssignStatusOptions().then(res => {
- if (res.data) {
- this.statusOptions = res.data
- }
- }).catch(error => {
- this.$message({
- type: 'error',
- message: error
- })
- })
- },
- getTableData() {
- api.getLabelAssignPages(this.filter).then(res => {
- if (res.total && res.data) {
- this.table.total = res.total;
- this.table.data = res.data;
- } 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.sitePk)
- })
- return ids;
- },
- onClickAssign() {
- const params = {
- siteLabelId: this.item.siteLabelId,
- sitePks: this.getSelectIds()
- }
- this.loading.assign = true;
- api.assignSiteLabel(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;
- })
- },
- onClickUnassign() {
- const params = {
- siteLabelId: this.item.siteLabelId,
- sitePks: this.getSelectIds()
- }
- this.loading.unassign = true;
- api.unassignSiteLabel(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 lang="scss" scoped>
- .assign-label-dialog
- ::v-deep .el-dialog {
- width: 65vw;
- height: 90vh;
- display: flex;
- max-width: 1200px;
- flex-direction: column;
- margin-top: 5vh !important;
- .el-dialog__header {
- padding: 20px 20px 0;
- font-weight: bold;
- }
- .el-dialog__body {
- flex: 1;
- padding: 20px;
- display: flex;
- overflow: hidden;
- flex-direction: column;
- }
- @media screen and (max-width: 1200px) {
- & {
- width: 70vw;
- }
- }
- @media screen and (max-width: 1000px) {
- & {
- width: 80vw;
- }
- }
- @media screen and (max-width: 800px) {
- & {
- width: 90vw;
- }
- }
- @media screen and (max-width: 700px) {
- & {
- width: 99vw;
- }
- }
- @media screen and (max-width: 320px) {
- & {
- width: 100%;
- min-width: 300px;
- }
- }
- }
- .assign-label-dialog .table-view {
- flex: 1;
- overflow-y: auto;
- padding-top: 10px;
- margin-bottom: -10px;
- }
- .assign-label-actions {
- display: flex;
- padding-top: 5px;
- flex-wrap: wrap-reverse;
- align-items: center;
- justify-content: flex-end;
- }
- </style>
|