接口参数调整

This commit is contained in:
renpy 2023-09-04 18:26:53 +08:00
parent c5794c24f4
commit 53e5cf6bd3
3 changed files with 10 additions and 8 deletions

View File

@ -1,6 +1,7 @@
import Vue from 'vue'
import { axios } from '@/utils/request'
import signMd5Utils from '@/utils/encryption/signMd5Utils'
import qs from "qs";
const api = {
user: '/mock/api/user',
@ -60,15 +61,16 @@ export function getAction(url,parameter) {
// update-begin--author:taoyan---date:20220421--for: VUEN-410【签名改造】 X-TIMESTAMP牵扯
let signHeader = {"X-Sign": sign,"X-TIMESTAMP": signMd5Utils.getTimestamp()};
// update-end--author:taoyan---date:20220421--for: VUEN-410【签名改造】 X-TIMESTAMP牵扯
return axios({
url: url,
method: 'get',
params: parameter,
paramsSerializer: function (params) {
return qs.stringify(params, { arrayFormat: "repeat" });
},
headers: signHeader
})
}
//deleteAction
export function deleteAction(url,parameter) {
return axios({

View File

@ -63,7 +63,7 @@
</template>
<script>
import { getAction, putAction } from '@/api/manage'
import { getAction } from '@/api/manage'
const columns = [
{
title: 'NO',
@ -201,10 +201,10 @@ export default {
nuclideNames: this.targetKeys,
useType: 2
}
putAction("/sys/defaultNuclide/add",params).then(res => {
getAction("/sys/defaultNuclide/add",params).then(res => {
this.visible = false
if (res.success) {
this.$message(res.message)
this.$message.success(res.message)
} else {
this.$message.warning("This operation fails. Contact your system administrator")
}

View File

@ -256,10 +256,10 @@ export default {
nuclideType: this.currType,
useType: 1
}
putAction("/sys/defaultNuclide/add",params).then(res => {
getAction("/sys/defaultNuclide/add",params).then(res => {
this.visible = false
if (res.success) {
this.$message(res.message)
this.$message.success(res.message)
} else {
this.$message.warning("This operation fails. Contact your system administrator")
}