Blame view

public/components/frame/selectStaff/selectStaff.html 2.72 KB
809d9ffa   wuxw   流程设计页面组件没法和vue兼容只...
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
  <div class="modal fade" id="selectStaffModel" role="dialog" aria-labelledby="exampleModalLabel"
       aria-hidden="true">
      <div class="modal-dialog  modal-lg">
          <div class="modal-content">
              <div class="modal-body">
                  <button type="button" class="close" data-dismiss="modal" aria-label="Close">
                      <span aria-hidden="true">&times;</span>
                  </button>
                  <div class="row">
                      <div class="col-md-6 border-right padding-0">
                          <div class="text-center">
                              <span><vc:i18n name="组织信息" namespace="selectStaff"></vc:i18n></span>
                          </div>
                          <div class="staff padding">
                              <vc:create path="frame/orgTreeShow" callBackListener="selectStaff"></vc:create>
                          </div>
                      </div>
                      <div class="col-md-6 padding-0">
                          <div class="text-center">
                              <span><vc:i18n name="员工信息" namespace="selectStaff"></vc:i18n></span>
                          </div>
                          <div class="padding-left staff padding padding-top-xs">
                              <div class=" padding overflow-hidden"
                                   :class="{'select':selectStaffInfo.curStaffId == item.staffId}"
                                   v-for="(item,index) in selectStaffInfo.staffs" @click="_changeStaff(item)"
                                   style="cursor:pointer">
                                  <span>
                                      <div>
                                          <i class="fa fa-user margin-right-xs" aria-hidden="true"></i>
                                          {{item.name}}
                                      </div>
                                          <div>{{item.tel}}</div>
                                  </span>
                              </div>
                          </div>
                      </div>
                  </div>
                  <div class="text-right"
                       v-if="selectStaffInfo.staff.from == 'bpmn' || selectStaffInfo.staff.from == 'purchase' || selectStaffInfo.staff.from == 'contract'">
                      <button type="button" class="btn btn-white btn-sm" @click="_firstUser()">
                          <span><vc:i18n name="提交者" namespace="selectStaff"></vc:i18n></span>
                      </button>
                      <button type="button" class="btn btn-white btn-sm" @click="_customUser()">
                          <span><vc:i18n name="动态指定" namespace="selectStaff"></vc:i18n></span>
                      </button>
                  </div>
              </div>
          </div>
      </div>
  </div>