Compare commits

...

2 Commits

Author SHA1 Message Date
chaiyapeng 13c1905b57 Merge remote-tracking branch 'origin/master' 2024-09-02 20:23:15 +08:00
chaiyapeng ffe2db7832 购买 2024-09-02 20:22:56 +08:00
2 changed files with 11 additions and 4 deletions

View File

@ -7,6 +7,13 @@ export function findConnectorList(data) {
data:data
})
}
export function findApiList(data) {
return request({
url: '/mart/connector/findApiList',
method: 'post',
data:data
})
}
export function addConnector(data) {
return request({
url: '/mart/connector/addConnector',

View File

@ -197,7 +197,7 @@
<script>
//jsjsjson,
//import from ',
import {findConnectorList} from "@/api/port/port";
import {findApiList} from "@/api/port/port";
import index from "vuex";
import {phonePlace} from "@/api/port/port";
import {getIpPlace} from "@/api/port/port";
@ -431,8 +431,8 @@ export default {
}
})
},
findConnectorList(){
findConnectorList(this.form).then((res)=>{
findApiList(){
findApiList(this.form).then((res)=>{
this.connectorList=res.data;
console.log(res.data);
})
@ -441,7 +441,7 @@ export default {
// - 访this",
created() {
this.fetchUserBalance();
this.findConnectorList();
this.findApiList();
},
// - 访DOM",
mounted() {