流程详情

This commit is contained in:
yf
2021-06-22 16:41:43 +08:00
parent 791754b897
commit 521418857e
@@ -7,7 +7,7 @@
</ProcessHeader> </ProcessHeader>
<div class="headerTabs"> <div class="headerTabs">
<div class="headerTabsItem" :class="active === '1' ? 'active' : ''" @click="handleTabs('1')">基础信息</div> <div class="headerTabsItem" :class="active === '1' ? 'active' : ''" @click="handleTabs('1')">基础信息</div>
<div class="headerTabsItem" :class="active === '2' ? 'active' : ''" @click="handleTabs('2')">审批历史</div> <div class="headerTabsItem" :class="active === '2' ? 'active' : ''" @click="handleTabs('2')">流程信息</div>
</div> </div>
<div class="content" v-if="active === '1'"> <div class="content" v-if="active === '1'">
<div style="flex: auto; overflow: auto;"> <div style="flex: auto; overflow: auto;">
@@ -547,19 +547,19 @@
</el-form> </el-form>
</div> </div>
<!-- <el-collapse accordion>--> <el-collapse accordion>
<!-- <el-collapse-item title="意见填写">--> <el-collapse-item title="意见填写">
<!-- <div style="margin: 10px 0;">--> <div style="margin: 10px 0;">
<!-- <el-input--> <el-input
<!-- type="textarea"--> type="commentText"
<!-- :rows="3"--> :rows="3"
<!-- resize="none"--> resize="none"
<!-- placeholder="请输入意见"--> placeholder="请输入意见"
<!-- v-model="textarea">--> v-model="commentText">
<!-- </el-input>--> </el-input>
<!-- </div>--> </div>
<!-- </el-collapse-item>--> </el-collapse-item>
<!-- </el-collapse>--> </el-collapse>
</div> </div>
<div class="content" v-if="active === '2'"> <div class="content" v-if="active === '2'">
@@ -629,7 +629,7 @@
name: "bzrkStep1", name: "bzrkStep1",
data () { data () {
return { return {
textarea: '', // 意见 commentText: '', // 意见
title: '', // 新增编辑抽屉标题 title: '', // 新增编辑抽屉标题
ListModel: false, // 新增编辑抽屉开关 ListModel: false, // 新增编辑抽屉开关
active: '1', // 默认显示 active: '1', // 默认显示
@@ -768,6 +768,7 @@
var json = this.form var json = this.form
json.zrUserId = this.$store.getters.userInfo.userId json.zrUserId = this.$store.getters.userInfo.userId
json.jlUserId = this.$store.getters.userInfo.userId json.jlUserId = this.$store.getters.userInfo.userId
json.commentText = this.commentText
json.applyUpdUserId = this.$store.getters.userInfo.userId json.applyUpdUserId = this.$store.getters.userInfo.userId
json.prcCreateUser = this.$store.getters.userInfo.userId json.prcCreateUser = this.$store.getters.userInfo.userId
json.prcCreateUserName = this.$store.getters.userInfo.account json.prcCreateUserName = this.$store.getters.userInfo.account