wuxw
2020-01-14 69e2baf5518079bfc16cfadc2fb29842fb3de85d
WebService/src/main/resources/components/auditUserPackage/choose-auditUser/chooseAuditUser.html
@@ -1,4 +1,5 @@
<div id = "chooseAuditUserModel" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="chooseAuditUserModelLabel" aria-hidden="true" >
<div id="chooseAuditUserModel" class="modal fade" tabindex="-1" role="dialog"
     aria-labelledby="chooseAuditUserModelLabel" aria-hidden="true">
    <div class="modal-dialog modal-lg">
        <div class="modal-content">
            <div class="modal-header">
@@ -17,9 +18,12 @@
                                </div>
                                <div class="col-sm-5">
                                    <div class="input-group">
                                        <input placeholder="输入审核人员名称" type="text" v-model="chooseAuditUserInfo._currentAuditUserName" class="form-control form-control-sm">
                                        <input placeholder="输入审核人员名称" type="text"
                                               v-model="chooseAuditUserInfo._currentAuditUserName"
                                               class="form-control form-control-sm">
                                        <span class="input-group-append">
                                                <button type="button" class="btn btn-sm btn-primary" v-on:click="queryAuditUsers()">查询</button>
                                                <button type="button" class="btn btn-sm btn-primary"
                                                        v-on:click="queryAuditUsers()">查询</button>
                                            </span>
                                    </div>
                                </div>
@@ -27,28 +31,30 @@
                            <div class="table-responsive" style="margin-top:15px">
                                <table class="table table-striped">
                                    <thead>
                                        <tr>
                                                                        <th class="text-center">审核ID</th>
                            <th class="text-center">用户ID</th>
                            <th class="text-center">用户名称</th>
                            <th class="text-center">审核环节</th>
                            <th class="text-center">流程对象</th>
                            <th class="text-center">操作</th>
                                    <tr>
                                        <th class="text-center">审核ID</th>
                                        <th class="text-center">用户ID</th>
                                        <th class="text-center">用户名称</th>
                                        <th class="text-center">审核环节</th>
                                        <th class="text-center">流程对象</th>
                                        <th class="text-center">操作</th>
                                        </tr>
                                    </tr>
                                    </thead>
                                    <tbody>
                                        <tr v-for="auditUser in chooseAuditUserInfo.auditUsers">
                                                                        <td class="text-center">{{auditUser.auditUserId}}</td>
                            <td class="text-center">{{auditUser.userId}}</td>
                            <td class="text-center">{{auditUser.userName}}</td>
                            <td class="text-center">{{auditUser.auditLink}}</td>
                            <td class="text-center">{{auditUser.objCode}}</td>
                                    <tr v-for="auditUser in chooseAuditUserInfo.auditUsers">
                                        <td class="text-center">{{auditUser.auditUserId}}</td>
                                        <td class="text-center">{{auditUser.userId}}</td>
                                        <td class="text-center">{{auditUser.userName}}</td>
                                        <td class="text-center">{{auditUser.auditLink}}</td>
                                        <td class="text-center">{{auditUser.objCode}}</td>
                                            <td>
                                                <button class="btn btn-primary btn-xs" v-on:click="chooseAuditUser(auditUser)">选择</button>
                                            </td>
                                        </tr>
                                        <td>
                                            <button class="btn btn-primary btn-xs"
                                                    v-on:click="chooseAuditUser(auditUser)">选择
                                            </button>
                                        </td>
                                    </tr>
                                    </tbody>
                                </table>
                            </div>