Commit 43f6cdef by yiyu.li

url

parent 4513ad3d
......@@ -357,18 +357,21 @@ export default {
});
},
manual() {
console.log(1111);
if (this.detailobj.actiontype != 1) {
this.$Message.error("该任务清单不能手动执行");
// if (this.detailobj.actiontype != 1) {
// this.$Message.error("该任务清单不能手动执行");
// return false;
// }
if (!this.detailobj.id) {
this.$Message.error(this.$t(1043));
return false;
}
let data = {
id: this.detailobj.id,
};
this.request(
// "/acc/AutomationOperate/CompalateAssemble",
"/acc/AutomationOperate/Send",
data,
"post"
"get"
).then((res) => {
if (res.data.ret == 1) {
this.$Message.success(this.$t(res.data.msg));
......
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