政策征求意见流程 征求意见列表 接口路径

This commit is contained in:
baoyu
2024-04-11 16:34:43 +08:00
parent 81258e37f2
commit b93063a2a2
@@ -329,7 +329,7 @@ export default {
roundButton: false
}).then(() => {
const deleteIds = this.selectList.map(val => val.id)
this.$http.delete('/api/lawss/activiti/deletePolicitOpinionEOList', { ids: deleteIds }).then(res => {
this.$http.delete('lawss/activiti/deletePolicitOpinionEOList', { ids: deleteIds }).then(res => {
if (res.ok) {
this.getData()
this.resetSelect()
@@ -377,7 +377,7 @@ export default {
},
addModelForm (row) {
if (this.addOrEdit == 'add') {
this.$http.postData('/api/lawss/activiti/insertPolicitOpinionEOList', { row }, { _this: this }, res => {
this.$http.postData('lawss/activiti/insertPolicitOpinionEOList', { row }, { _this: this }, res => {
if (res.ok) {
this.$message.success('操作成功')
}else {
@@ -386,7 +386,7 @@ export default {
}, e => {
})
} else if (this.addOrEdit == 'edit') {
this.$http.postData('/api/lawss/activiti/updatePolicitOpinionEOList', { row }, { _this: this }, res => {
this.$http.postData('lawss/activiti/updatePolicitOpinionEOList', { row }, { _this: this }, res => {
if (res.ok) {
this.$message.success('操作成功')
}else {