|
|
@@ -60,6 +60,12 @@
|
|
|
prop="serviceProvider"
|
|
|
min-width="140"
|
|
|
v-if="false"/>
|
|
|
+ <el-table-column
|
|
|
+ align="center"
|
|
|
+ label="Country"
|
|
|
+ prop="country"
|
|
|
+ min-width="120"
|
|
|
+ v-if="false"/>
|
|
|
<el-table-column
|
|
|
align="center"
|
|
|
label="No. of Sites Configured"
|
|
|
@@ -135,7 +141,7 @@
|
|
|
|
|
|
<script>
|
|
|
import api from '@/api/apiIdle.js';
|
|
|
-//import apiBase from "@/api/apiBase.js";
|
|
|
+import apiBase from "@/api/apiBase.js";
|
|
|
import Pagination from '@/components/Pagination';
|
|
|
import AssignmentDialog from './AssignmentDialog';
|
|
|
export default {
|
|
|
@@ -169,9 +175,10 @@ export default {
|
|
|
created() {
|
|
|
this.getStatusOption();
|
|
|
//this.getProviderOptions();
|
|
|
+ this.toSearch();
|
|
|
},
|
|
|
methods: {
|
|
|
- /*getProviderOptions() {
|
|
|
+ getProviderOptions() {
|
|
|
apiBase.getProviderList().then(res => {
|
|
|
if (res.data) {
|
|
|
this.options.provider = res.data
|
|
|
@@ -183,7 +190,7 @@ export default {
|
|
|
}).catch(err => {
|
|
|
|
|
|
})
|
|
|
- },*/
|
|
|
+ },
|
|
|
getStatusOption() {
|
|
|
apiBase.getDataStatusOptions().then(res => {
|
|
|
if (res.data && res.data.length > 0) {
|