MicroCommunityWeb/public/pages/property/newOaWorkflow/newOaWorkflow.html
2022-03-10 00:09:13 +08:00

36 lines
1.9 KiB
HTML

<div >
<div class="row">
<div class="col-md-2">
<div class="margin-xs-r bg-white treeview">
<ul class="list-group text-center">
<li class="list-group-item node-orgTree "
:class="{'vc-node-selected':newOaWorkflowInfo.switchValue=='newOaWorkflowPool'}" @click="swatch('newOaWorkflowPool')">流程工单
</li>
<li class="list-group-item node-orgTree "
:class="{'vc-node-selected':newOaWorkflowInfo.switchValue=='newOaWorkflowForm'}" @click="swatch('newOaWorkflowForm')">
起草流程</li>
<li class="list-group-item node-orgTree "
:class="{'vc-node-selected':newOaWorkflowInfo.switchValue=='newOaWorkflowUndo'}" @click="swatch('newOaWorkflowUndo')">流程待办
</li>
<li class="list-group-item node-orgTree "
:class="{'vc-node-selected':newOaWorkflowInfo.switchValue=='newOaWorkflowFinish'}" @click="swatch('newOaWorkflowFinish')">
流程已办</li>
</ul>
</div>
</div>
<div class="col-md-10 ">
<div v-show="newOaWorkflowInfo.switchValue=='newOaWorkflowPool'">
<vc:create path="property/newOaWorkflowPool"></vc:create>
</div>
<div v-if="newOaWorkflowInfo.switchValue=='newOaWorkflowForm'">
<vc:create path="property/newOaWorkflowForm"></vc:create>
</div>
<div v-show="newOaWorkflowInfo.switchValue=='newOaWorkflowUndo'">
<vc:create path="property/newOaWorkflowUndo"></vc:create>
</div>
<div v-show="newOaWorkflowInfo.switchValue=='newOaWorkflowFinish'">
<vc:create path="property/newOaWorkflowFinish"></vc:create>
</div>
</div>
</div>
</div>