|
|
@@ -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; |
|
|
|
} |
|
|
|