修改bug
This commit is contained in:
@@ -376,7 +376,7 @@
|
||||
import ProcessHeader from "../../components/ProcessHeader";
|
||||
import ProcessFooter from "../../components/ProcessFooter";
|
||||
import ProcessTitle from "../../components/ProcessTitle";
|
||||
import { inboundLiaisonDetail, saveTaskFirst } from "api/process";
|
||||
import { inboundLiaisonDetail, saveinboundTask } from "api/process";
|
||||
|
||||
export default {
|
||||
name: "bzqdfbStep3",
|
||||
@@ -700,9 +700,10 @@ export default {
|
||||
pId: this.$route.query.prcId,
|
||||
commentText: this.commentText
|
||||
}));
|
||||
saveTaskFirst(_formData).then(res => {
|
||||
saveinboundTask(_formData).then(res => {
|
||||
this.saveLoading = false;
|
||||
this.$message.success("保存成功");
|
||||
this.$router.push('/processCenter')
|
||||
this.bpnId = res.result;
|
||||
}).catch(e => {
|
||||
this.saveLoading = false;
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -69,43 +69,43 @@
|
||||
width="55"
|
||||
align="center">
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="prcNum"
|
||||
label="流程编号"
|
||||
align="center"
|
||||
width="150"
|
||||
>
|
||||
</el-table-column>
|
||||
<!-- <el-table-column-->
|
||||
<!-- prop="prcNum"-->
|
||||
<!-- label="流程编号"-->
|
||||
<!-- align="center"-->
|
||||
<!-- width="150"-->
|
||||
<!-- >-->
|
||||
<!-- </el-table-column>-->
|
||||
<el-table-column
|
||||
prop="prcType"
|
||||
label="流程类型"
|
||||
align="center"
|
||||
width="180"
|
||||
width="500"
|
||||
>
|
||||
<template slot-scope="scope">
|
||||
{{ scope.row.prcName || getPrcName(scope.row.prcType) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="prcName"
|
||||
label="流程名称"
|
||||
show-overflow-tooltip
|
||||
align="center"
|
||||
min-width="250"
|
||||
>
|
||||
</el-table-column>
|
||||
<!-- <el-table-column-->
|
||||
<!-- prop="prcName"-->
|
||||
<!-- label="流程名称"-->
|
||||
<!-- show-overflow-tooltip-->
|
||||
<!-- align="center"-->
|
||||
<!-- min-width="250"-->
|
||||
<!-- >-->
|
||||
<!-- </el-table-column>-->
|
||||
<el-table-column
|
||||
prop="creatUserName"
|
||||
label="发起人"
|
||||
align="center"
|
||||
width="90"
|
||||
width="300"
|
||||
>
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="creatTime"
|
||||
label="创建日期"
|
||||
align="center"
|
||||
width="150"
|
||||
width="380"
|
||||
>
|
||||
<template slot-scope="scope">
|
||||
<span>{{ scope.row.creatTime ? $moment(scope.row.creatTime).format('YYYY-MM-DD HH:mm:ss') : '' }}</span>
|
||||
@@ -115,7 +115,7 @@
|
||||
prop="endTime"
|
||||
label="完成日期"
|
||||
align="center"
|
||||
width="150"
|
||||
width="380"
|
||||
>
|
||||
<template slot-scope="scope">
|
||||
<span>{{ scope.row.endTime ? $moment(scope.row.endTime).format('YYYY-MM-DD HH:mm:ss') : '' }}</span>
|
||||
|
||||
Reference in New Issue
Block a user