MicroCommunityWeb/public/pages/property/newOaWorkflow/newOaWorkflow.html
2023-09-04 00:50:33 +08:00

33 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 " v-if="vc.hasPrivilege('502023041839740294')" :class="{'vc-node-selected':newOaWorkflowInfo.switchValue=='newOaWorkflowPool'}" @click="swatch('newOaWorkflowPool')">
<vc:i18n name="流程工单" namespace="newOaWorkflow"></vc:i18n>
</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>