mrzcc
2020-03-06 ecdac8a738f254db2b2ea28cbe3248f7a6a7eb2b
WebService/src/main/resources/components/privilegePackage/privilege-manage/privilege.html
@@ -8,16 +8,16 @@
                    title="Refresh inbox"
                    v-on:click="openAddPrivilegeModel()"
            ><i class="fa fa-plus"></i> 添加权限</button>
            <form method="get" action="index.html" class="float-right mail-search" style="margin-right:10px">
            <div class="float-right mail-search" style="margin-right:10px">
                <div class="input-group">
                    <input type="text" class="form-control form-control-sm" name="search" placeholder="请输入权限名称">
                    <input type="text" class="form-control form-control-sm" v-model="privilegeInfo._pName" name="search" placeholder="请输入权限名称">
                    <div class="input-group-btn">
                        <button type="submit" class="btn btn-sm btn-primary">
                        <button v-on:click="queryPrivilege()" class="btn btn-sm btn-primary">
                            查询
                        </button>
                    </div>
                </div>
            </form>
            </div>
            <h2>
                {{privilegeInfo._currentPgName}}
            </h2>
@@ -31,7 +31,7 @@
                        <th>权限名称</th>
                        <th>权限描述</th>
                        <th>创建时间</th>
                        <th>操作</th>
                        <th class="text-right">操作</th>
                    </tr>
                </thead>
                <tbody>
@@ -42,10 +42,10 @@
                    <td class="mail-ontact">{{privilege.name}}</td>
                    <td class="mail-subject">{{privilege.description}}</td>
                    <td class="">{{vc.dateFormat(privilege.createTime)}}</td>
                    <td class="text-right mail-date">
                        <i  v-if="privilegeInfo._currentStoreId != '9999'"
                                                         v-on:click="openDeletePrivilegeModel(privilege)"
                                                         class="glyphicon glyphicon-remove"></i>
                    <td class="text-right">
                        <div class="btn-group">
                            <button class="btn-white btn btn-xs" v-on:click="openDeletePrivilegeModel(privilege)">删除</button>
                        </div>
                    </td>
                </tr>