|  | @@ -32,7 +32,7 @@
 | 
	
		
			
				|  |  |  </template>
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  <script>
 | 
	
		
			
				|  |  | -  import {getList, getDetail, add, update, remove} from "@/api/iosBasicData/blines";
 | 
	
		
			
				|  |  | +  import {blinesList, blinesDetail, blinesSubmit, update, blinesRemove} from "@/api/iosBasicData/blines";
 | 
	
		
			
				|  |  |    import {mapGetters} from "vuex";
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |    export default {
 | 
	
	
		
			
				|  | @@ -255,7 +255,7 @@
 | 
	
		
			
				|  |  |      },
 | 
	
		
			
				|  |  |      methods: {
 | 
	
		
			
				|  |  |        rowSave(row, done, loading) {
 | 
	
		
			
				|  |  | -        add(row).then(() => {
 | 
	
		
			
				|  |  | +        blinesSubmit(row).then(() => {
 | 
	
		
			
				|  |  |            this.onLoad(this.page);
 | 
	
		
			
				|  |  |            this.$message({
 | 
	
		
			
				|  |  |              type: "success",
 | 
	
	
		
			
				|  | @@ -287,7 +287,7 @@
 | 
	
		
			
				|  |  |            type: "warning"
 | 
	
		
			
				|  |  |          })
 | 
	
		
			
				|  |  |            .then(() => {
 | 
	
		
			
				|  |  | -            return remove(row.id);
 | 
	
		
			
				|  |  | +            return blinesRemove(row.id);
 | 
	
		
			
				|  |  |            })
 | 
	
		
			
				|  |  |            .then(() => {
 | 
	
		
			
				|  |  |              this.onLoad(this.page);
 | 
	
	
		
			
				|  | @@ -308,7 +308,7 @@
 | 
	
		
			
				|  |  |            type: "warning"
 | 
	
		
			
				|  |  |          })
 | 
	
		
			
				|  |  |            .then(() => {
 | 
	
		
			
				|  |  | -            return remove(this.ids);
 | 
	
		
			
				|  |  | +            return blinesRemove(this.ids);
 | 
	
		
			
				|  |  |            })
 | 
	
		
			
				|  |  |            .then(() => {
 | 
	
		
			
				|  |  |              this.onLoad(this.page);
 | 
	
	
		
			
				|  | @@ -321,7 +321,7 @@
 | 
	
		
			
				|  |  |        },
 | 
	
		
			
				|  |  |        beforeOpen(done, type) {
 | 
	
		
			
				|  |  |          if (["edit", "view"].includes(type)) {
 | 
	
		
			
				|  |  | -          getDetail(this.form.id).then(res => {
 | 
	
		
			
				|  |  | +          blinesDetail(this.form.id).then(res => {
 | 
	
		
			
				|  |  |              this.form = res.data.data;
 | 
	
		
			
				|  |  |            });
 | 
	
		
			
				|  |  |          }
 | 
	
	
		
			
				|  | @@ -355,7 +355,7 @@
 | 
	
		
			
				|  |  |        },
 | 
	
		
			
				|  |  |        onLoad(page, params = {}) {
 | 
	
		
			
				|  |  |          this.loading = true;
 | 
	
		
			
				|  |  | -        getList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
 | 
	
		
			
				|  |  | +        blinesList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
 | 
	
		
			
				|  |  |            const data = res.data.data;
 | 
	
		
			
				|  |  |            this.page.total = data.total;
 | 
	
		
			
				|  |  |            this.data = data.records;
 |