MicroCommunityWeb/public/pages/property/newOaWorkflow/newOaWorkflow.html
2022-04-26 19:22:36 +08:00

37 lines
2.0 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')"><span><vc:i18n name="流程工单" namespace="newOaWorkflow"></vc:i18n></span>
</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')"><span><vc:i18n name="流程待办" namespace="newOaWorkflow"></vc:i18n></span>
</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>