[update] 变更扩展

This commit is contained in:
zhaomeijing
2022-05-20 12:04:32 +08:00
parent 97442aef18
commit 46013d0800
@@ -99,7 +99,8 @@
import { getAction,postAction } from '../../../api/manage' import { getAction,postAction } from '../../../api/manage'
import Configure from '../dialog/configure' import Configure from '../dialog/configure'
import axios from 'axios' import axios from 'axios'
import Vue from 'vue'
import { ACCESS_TOKEN } from '@/store/mutation-types'
export default { export default {
name: 'TaskParameterCollection', name: 'TaskParameterCollection',
components:{ components:{
@@ -156,6 +157,7 @@
scopedSlots: { customRender: 'operation' } scopedSlots: { customRender: 'operation' }
} }
], ],
token:Vue.ls.get(ACCESS_TOKEN),
selectedRowKeys: [], selectedRowKeys: [],
queryParam: {}, queryParam: {},
url: { url: {
@@ -265,7 +267,32 @@
this.areaVisible = true this.areaVisible = true
}, },
handleModule(){ handleModule(){
let _this = this
axios({
url: `/jero-boot/params/manifest/changeExtension?id=${this.selectedRowKeys[0]}`,
method: 'get',
transformRequest: [function (data) {
let ret = ''
for (let it in data) {
ret += encodeURIComponent(it) + '=' + encodeURIComponent(data[it]) + '&'
}
return ret
}],
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
'X-Access-Token':_this.token
}
})
.then( (res) =>{
if (res.data.success) {
_this.$message.success(res.data.message)
}else{
_this.$message.warning(res.data.message)
}
})
.catch( (error) =>{
console.log(error);
});
}, },
handleDel(){ handleDel(){
let param={ let param={