Commit cac9f151 authored by zhengke's avatar zhengke

修改

parent a8f5ade5
......@@ -439,7 +439,16 @@
},
//删除
delQuestion(item,index){
this.$q.dialog({
title: '提示信息',
message: "是否确定删除?",
cancel: true,
persistent: true,
ok: "确定",
cancel: "取消",
}).onOk(() => {
item.splice(index,1);
}).onCancel(() => {});
}
}
}
......
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