Commit a158840e authored by 黄奎's avatar 黄奎

页面修改

parent 24500b62
......@@ -175,19 +175,20 @@ export default {
var delMsg = {
Id: item.Id,
};
var that=this;
uni.showModal({
title: "提示",
content: "确认删除?",
success: function (res) {
if (res.confirm) {
this.request2(
that.request2(
{
url: "/api/AppletTrade/DeleteTrdceConsult",
data: delMsg,
},
(res) => {
if (res.resultCode == 1) {
this.getList();
(res2) => {
if (res2.resultCode == 1) {
that.getList();
}
}
);
......
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