Browse Source

样式优化

master
nizongfeng 1 year ago
parent
commit
7299ce7d4a
1 changed files with 18 additions and 0 deletions
  1. +18
    -0
      application/admin/view/order_main/index.html

+ 18
- 0
application/admin/view/order_main/index.html View File

@@ -656,6 +656,7 @@
});
},
showMemoInfo(order_id){
this.memoList = [];
this.showMemo = true
this.addMemo.order_id = order_id;
this.getMemoList();
@@ -682,6 +683,23 @@
})
</script>
<style lang="scss" scoped>
/*修改展开按钮的样式 start*/
/*1.取消原本展开的旋转动效*/
.el-table__expand-icon{
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
/*2.展开按钮未点击的样式是加号带边框*/
.el-table__expand-icon .el-icon-arrow-right:before{
content: "\e6d9";
border: 1px solid #ccc;
padding: 2px;
}
/*3.展开按钮点击后的样式是减号带边框*/
.el-table__expand-icon--expanded .el-icon-arrow-right:before{
content: "\e6d8";
}
/*修改展开按钮的样式 end*/
.el-table thead {
background-color: #5a5e66 !important;
}


Loading…
Cancel
Save