bug
This commit is contained in:
@@ -48,7 +48,7 @@
|
||||
|
||||
methods: {
|
||||
getInfo (id) {
|
||||
this.instance.post(`/appfeedback/queryDetailById?id=${id}`).then(res => {
|
||||
this.instance.post(`/api/appfeedback/queryDetailById?id=${id}`).then(res => {
|
||||
if (res.code === 0) {
|
||||
this.info = res.data
|
||||
this.info.images = res.data.pictureUrl ? res.data.pictureUrl.split(',').map(v => {
|
||||
|
||||
@@ -87,7 +87,7 @@
|
||||
|
||||
methods: {
|
||||
getList() {
|
||||
this.instance.post(`/appfeedback/list`, null, {
|
||||
this.instance.post(`/api/appfeedback/list`, null, {
|
||||
params: {
|
||||
...this.search
|
||||
}
|
||||
@@ -101,7 +101,7 @@
|
||||
|
||||
remove(id) {
|
||||
this.$confirm('确定删除该数据?').then(() => {
|
||||
this.instance.post(`/appfeedback/delete?ids=${id}`).then(res => {
|
||||
this.instance.post(`/api/appfeedback/delete?ids=${id}`).then(res => {
|
||||
if (res.code == 0) {
|
||||
this.$message.success('删除成功!')
|
||||
this.getList()
|
||||
|
||||
Reference in New Issue
Block a user