Commit 10d29639 by liang ce

git dist目录不提交

parent 0d369835
...@@ -197,6 +197,7 @@ export default { ...@@ -197,6 +197,7 @@ export default {
}) })
}, },
deleteAddress (id) { deleteAddress (id) {
let that = this
this.$confirm({ this.$confirm({
title: '删除到访地址', title: '删除到访地址',
content: '确认删除该删除到访地址么?', content: '确认删除该删除到访地址么?',
...@@ -208,7 +209,7 @@ export default { ...@@ -208,7 +209,7 @@ export default {
} }
$http.delete(`/admin/address/remove`, removeData).then((res) => { $http.delete(`/admin/address/remove`, removeData).then((res) => {
if (res.data.code === 0) { if (res.data.code === 0) {
this.queryAddressList() that.queryAddressList()
} }
}) })
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment