zhangjiaqing
8 天以前 1cef3adee31c6934c0da4b4f0b8a6f5ac03b364f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<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>