You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

28 lines
548 B

<template>
<router-view></router-view>
</template>
<script lang="ts" setup>
import {} from 'vue'
import axios from 'axios'
const save = () => {
const data = {
insCode: 'c7c6aa3d-9d2e-40c3-8989-9f39c724eaa4',
instruType: 4,
instruList: '{}',
}
axios
.post('http://www.hniss.cn/api/service/putInstru', data, {
headers: {
'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8',
},
})
.then((res) => {
console.log(res)
})
}
save()
</script>
<style lang="scss" scoped></style>