roose 5 anni fa
parent
commit
36a528dd5a

BIN
src/assets/congzhimima.png


BIN
src/assets/shanchu.png


BIN
src/assets/xiangqing.png


BIN
src/assets/xiugaimima.png


BIN
src/assets/xiugaixinxi.png


+ 13 - 1
src/layout/companyuser/companyuserList.vue

@@ -27,7 +27,7 @@
             </el-table-column>
             <el-table-column label="操作" align="center" width="300px">
               <template slot-scope="scope">
-                <el-button class="delete" @click.prevent="deleteRow(scope.row.id)" type="text"><i class="el-icon-delete"></i></el-button>
+                <el-button class="delete" title="删除" @click.prevent="deleteRow(scope.row.id)" type="text"><i class="el-icon-delete"></i></el-button>
               </template>
             </el-table-column>
           </el-table>
@@ -134,4 +134,16 @@ export default {
 /deep/.el-pagination.is-background .el-pager li:not(.disabled).active {
   background-color: red;
 }
+/deep/ .el-icon-delete {
+    background: url(../../assets/shanchu.png) center no-repeat;
+    background-size: cover;
+    width: 25px;
+    height: 25px;
+}
+
+/deep/ .el-icon-delete:before {
+    content: "替";
+    font-size: 16px;
+    visibility: hidden;
+}
 </style>

+ 12 - 0
src/layout/financeclaims/financeclaimsList.vue

@@ -101,5 +101,17 @@
     /deep/.el-table td {
         padding: 11px 0;
     }
+    /deep/ .el-icon-search {
+        background: url(../../assets/xiangqing.png) center no-repeat;
+        background-size: cover;
+        width: 25px;
+        height: 25px;
+    }
+
+    /deep/ .el-icon-search:before {
+        content: "替";
+        font-size: 16px;
+        visibility: hidden;
+    }
 
 </style>

+ 42 - 1
src/layout/financeclaims/financeclaimsListadd.vue

@@ -23,7 +23,7 @@
                     </el-table-column>
                     <el-table-column fixed="right" label="操作" align="center">
                         <template slot-scope="scope">
-                            <el-button @click="$router.push({ path: '/financeclaims/financeClaimDetailadd', query: { id: scope.row._id } })" type="text" icon="el-icon-edit" title="修改"></el-button>
+                            <el-button class="edit" @click="$router.push({ path: '/financeclaims/financeClaimDetailadd', query: { id: scope.row._id } })" type="text" icon="el-icon-edit" title="修改"></el-button>
                             <el-button @click="$router.push({ path: '/financeclaims/financeLookClaimDetailadd', query: { id: scope.row._id } })" type="text" icon="el-icon-search" title="查看详情"></el-button>
                             <el-button @click="ljdelete(scope.row._id)" type="text" icon="el-icon-delete" title="删除"></el-button>
                         </template>
@@ -112,6 +112,47 @@
     /deep/.el-table td {
         padding: 11px 0;
     }
+    /deep/ .el-icon-edit {
+        background: url(../../assets/xiugaixinxi.png) center no-repeat;
+        background-size: cover;
+        width: 25px;
+        height: 25px;
+    }
 
+    /deep/ .el-icon-edit:before {
+        content: "替";
+        font-size: 16px;
+        visibility: hidden;
+    }
+    /deep/ .el-icon-delete {
+        background: url(../../assets/shanchu.png) center no-repeat;
+        background-size: cover;
+        width: 25px;
+        height: 25px;
+    }
 
+    /deep/ .el-icon-delete:before {
+        content: "替";
+        font-size: 16px;
+        visibility: hidden;
+    }
+    /deep/ .el-icon-search {
+        background: url(../../assets/xiangqing.png) center no-repeat;
+        background-size: cover;
+        width: 25px;
+        height: 25px;
+    }
+
+    /deep/ .el-icon-search:before {
+        content: "替";
+        font-size: 16px;
+        visibility: hidden;
+    }
+    /deep/.el-button + .el-button {
+        margin-left: 10px;
+        margin-right: 10px;
+    }
+    /deep/ .el-table__row .cell  .edit:first-child  {
+        margin-right: 10px;
+    }
 </style>

+ 29 - 2
src/layout/institution/newsInfo.vue

@@ -36,8 +36,8 @@
               <template slot-scope="scope">
                 <!-- <el-button @click="handleClick(scope.row)" type="text"><i class="el-icon-edit"></i></el-button>
                 <el-button @click.native.prevent="deleteRow(scope.$index, debtTable)" type="text"><i class="el-icon-delete"></i></el-button> -->
-                <el-button size="mini" type="text" class="edit" icon="el-icon-edit" @click="handleClick(scope.row)"></el-button>
-                <el-button size="mini" type="text" class="delete" icon="el-icon-delete" @click.prevent="deleteRow(scope.row.id)"></el-button>
+                <el-button size="mini" title="修改"  type="text" class="edit" icon="el-icon-edit" @click="handleClick(scope.row)"></el-button>
+                <el-button size="mini" title="删除" type="text" class="delete" icon="el-icon-delete" @click.prevent="deleteRow(scope.row.id)"></el-button>
               </template>
             </el-table-column>
           </el-table>
@@ -147,4 +147,31 @@ export default {
 /deep/.el-pagination.is-background .el-pager li:not(.disabled).active {
   background-color: red;
 }
+/deep/ .el-icon-edit {
+    background: url(../../assets/xiugaixinxi.png) center no-repeat;
+    background-size: cover;
+    width: 25px;
+    height: 25px;
+}
+
+/deep/ .el-icon-edit:before {
+    content: "替";
+    font-size: 16px;
+    visibility: hidden;
+}
+/deep/ .el-icon-delete {
+    background: url(../../assets/shanchu.png) center no-repeat;
+    background-size: cover;
+    width: 25px;
+    height: 25px;
+}
+
+/deep/ .el-icon-delete:before {
+    content: "替";
+    font-size: 16px;
+    visibility: hidden;
+}
+/deep/ .el-table__row .cell  .edit:first-child  {
+    margin-right: 10px;
+}
 </style>

+ 2 - 2
src/layout/intelligentDocking/intelligentDockingsearchInfo.vue

@@ -3,14 +3,14 @@
     <el-row>
       <el-col :span="24" >
         <el-col :span="24">
-          <span >状态:</span>
+          <span >状态</span>
           <el-select class="input" v-model="region" clearable>
             <el-option label="已处理" value="0"></el-option>
             <el-option label="已审批" value="2"></el-option>
             <el-option label="已放款" value="1"></el-option>
             <el-option label="已拒绝" value="3"></el-option>
           </el-select>
-          <span >企业名称:</span>
+          <span >企业名称</span>
             <el-input class="input" v-model="companyName" clearable></el-input>
           <el-button size="small" style="margin-left: 10px" type="primary" @click="handleCurrentChange()">查询</el-button>
         </el-col>

+ 12 - 0
src/layout/intelligentDocking/list.vue

@@ -151,4 +151,16 @@ export default {
 /deep/.el-pagination.is-background .el-pager li:not(.disabled).active {
   background-color: red;
 }
+/deep/ .el-icon-view {
+  background: url(../../assets/xiangqing.png) center no-repeat;
+  background-size: cover;
+  width: 25px;
+  height: 25px;
+}
+
+/deep/ .el-icon-view:before {
+  content: "替";
+  font-size: 16px;
+  visibility: hidden;
+}
 </style>

+ 49 - 0
src/layout/otheruser/otheruserList.vue

@@ -25,12 +25,14 @@
             <el-table-column label="操作" align="center" width="300px">
               <template slot-scope="scope">
                   <el-button title="密码重置"
+                             class="edit"
                              @click="clickRest(scope.row.id)"
                              type="text">
                       <i class="el-icon-refresh"></i>
                   </el-button>
                 <el-button @click="$router.push({ path: '/otheruser/detail', query: { id: scope.row.id } })"
                            type="text"
+                           class="edit1"
                            title="修改信息"
                 ><i class="el-icon-edit"></i
                 ></el-button>
@@ -131,4 +133,51 @@ export default {
 /deep/.el-pagination.is-background .el-pager li:not(.disabled).active {
   background-color: red;
 }
+/deep/ .el-icon-edit {
+    background: url(../../assets/xiugaixinxi.png) center no-repeat;
+    background-size: cover;
+    width: 25px;
+    height: 25px;
+}
+
+/deep/ .el-icon-edit:before {
+    content: "替";
+    font-size: 16px;
+    visibility: hidden;
+}
+/deep/ .el-icon-delete {
+    background: url(../../assets/shanchu.png) center no-repeat;
+    background-size: cover;
+    width: 25px;
+    height: 25px;
+}
+
+/deep/ .el-icon-delete:before {
+    content: "替";
+    font-size: 16px;
+    visibility: hidden;
+}
+/deep/ .el-table__row .cell .edit  {
+    margin-right: 10px;
+}
+
+/deep/ .el-icon-refresh:before {
+    content: "替";
+    font-size: 16px;
+    visibility: hidden;
+}
+/deep/ .el-icon-refresh {
+    background: url(../../assets/congzhimima.png) center no-repeat;
+    background-size: cover;
+    width: 25px;
+    height: 25px;
+}
+/deep/.el-button + .el-button {
+    margin-left: 10px;
+    margin-right: 10px;
+}
+/deep/ .el-table__row .cell  .edit:first-child  {
+    margin-right: 10px;
+}
+
 </style>

+ 29 - 2
src/layout/zhidao/zhidaoList.vue

@@ -40,9 +40,9 @@
                         <el-table-column property="link" label="链接" align="center"></el-table-column>
                         <el-table-column label="操作" align="center" width="300px">
                             <template slot-scope="scope">
-                                <el-button size="mini" type="text" class="edit" icon="el-icon-edit"
+                                <el-button size="mini" title="修改信息" type="text" class="edit" icon="el-icon-edit"
                                            @click="$router.push({ path: '/zhidao/detail', query: { id: scope.row.id } })"></el-button>
-                                <el-button size="mini" type="text" class="delete" icon="el-icon-delete"
+                                <el-button size="mini" title="删除" type="text" class="delete" icon="el-icon-delete"
                                            @click.prevent="deleteRow(scope.row.id)"></el-button>
                             </template>
                         </el-table-column>
@@ -233,4 +233,31 @@
             }
         }
     }
+    /deep/ .el-icon-edit {
+        background: url(../../assets/xiugaixinxi.png) center no-repeat;
+        background-size: cover;
+        width: 25px;
+        height: 25px;
+    }
+
+    /deep/ .el-icon-edit:before {
+        content: "替";
+        font-size: 16px;
+        visibility: hidden;
+    }
+    /deep/ .el-icon-delete {
+        background: url(../../assets/shanchu.png) center no-repeat;
+        background-size: cover;
+        width: 25px;
+        height: 25px;
+    }
+
+    /deep/ .el-icon-delete:before {
+        content: "替";
+        font-size: 16px;
+        visibility: hidden;
+    }
+    /deep/ .el-table__row .cell  .edit:first-child  {
+        margin-right: 10px;
+    }
 </style>