Commit 9143cef0 authored by zL's avatar zL

去掉存证id整数转换

parent 21318ee6
......@@ -26,7 +26,8 @@ export default {
deleteRemark: "",
};
},
created() {},
mounted() {
},
methods: {
checkReason() {
if (this.deleteRemark.trim() === "") {
......@@ -48,7 +49,7 @@ export default {
Determine() {
switch (this.status) {
case 0:
this.deleteConfirm({ id: Number(this.id) });
this.deleteConfirm({ id: this.id });
break;
default:
this.checkReason();
......@@ -72,6 +73,7 @@ export default {
// 删除存证
async deleteConfirm(params) {
// return
const res = await this.$ajax({
type: "delete",
url: GO_URLS.delete,
......
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