测试数据

master
sikadi 2023-11-24 19:00:25 +08:00
parent 911e35c2b9
commit 083a166bcc
2 changed files with 13 additions and 0 deletions

View File

@ -6,3 +6,10 @@ export function firmManageList() {
method: 'get'
})
}
export function xshen() {
return request({
url: '/firm/firm/xshen',
method: 'get'
})
}

View File

@ -56,6 +56,7 @@
</el-table>
</template>
</div>
<el-button type="success" @click="xshen"></el-button>
</template>
<script>
import { firmManageList } from '../../../api/firm/companies'
@ -76,6 +77,11 @@ export default {
console.log(response)
this.tableData = response.data
})
},
shen(){
xshen().then(response => {
console.log(response);
})
}
}
}