工作流前端垃圾代码剔除

This commit is contained in:
pixel
2020-11-24 16:08:40 +08:00
parent 61f50980e1
commit 307b1bf496
+5 -18
View File
@@ -27,10 +27,7 @@
></el-date-picker> ></el-date-picker>
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<el-button <el-button v-if="this.wf.clazz == 'start'" @click="start" type="primary"
v-if="this.wf.clazz == 'start'"
@click="start"
type="primary"
>启动</el-button >启动</el-button
> >
<el-button <el-button
@@ -45,11 +42,7 @@
type="primary" type="primary"
>拒绝</el-button >拒绝</el-button
> >
<el-button <el-button @click="back" type="primary">返回</el-button>
@click="back"
type="primary"
>返回</el-button
>
</el-form-item> </el-form-item>
</el-form> </el-form>
</div> </div>
@@ -62,7 +55,6 @@ import {
} from "@/api/workflowProcess"; } from "@/api/workflowProcess";
import infoList from "@/mixins/infoList"; import infoList from "@/mixins/infoList";
import { mapGetters } from "vuex"; import { mapGetters } from "vuex";
import Axios from 'axios';
export default { export default {
name: "ExaWfLeave", name: "ExaWfLeave",
mixins: [infoList], mixins: [infoList],
@@ -82,12 +74,10 @@ export default {
}, },
data() { data() {
return { return {
type: "",
formData: { formData: {
cause:"", cause:"",
startTime:new Date(), startTime:new Date(),
endTime:new Date(), endTime:new Date(),
} }
}; };
}, },
@@ -151,7 +141,7 @@ export default {
if(res.code == 0){ if(res.code == 0){
this.$message({ this.$message({
type:"success", type:"success",
message:"提交" message:"提交成功"
}) })
this.back() this.back()
} }
@@ -161,12 +151,9 @@ export default {
} }
}, },
async created() { async created() {
console.log(this.workflowMoveID) if(this.business){
// 建议通过url传参获取目标数据ID 调用 find方法进行查询数据操作 从而决定本页面是create还是update 以下为id作为url参数示例
if(this.business){
this.formData = this.business this.formData = this.business
} }
} }
}; };