less替换为scss

master
blak-kong 2 years ago
parent 95c47b5565
commit 2e834acce8

@ -46,11 +46,9 @@
"file-saver": "2.0.5",
"fuse.js": "6.4.3",
"highlight.js": "9.18.5",
"i": "^0.3.7",
"js-beautify": "1.13.0",
"js-cookie": "3.0.1",
"jsencrypt": "3.0.0-rc.1",
"npm": "^10.2.5",
"nprogress": "0.2.0",
"quill": "^2.0.0-dev.3",
"quill-better-table": "^1.2.10",

@ -112,13 +112,13 @@ export default {
}
</script>
<style lang="less" scoped>
<style lang="scss" scoped>
.video-js .vjs-icon-placeholder {
width: 80%;
height: 80%;
display: block;
}
.videoPlayer /deep/ .el-dialog,
.videoPlayer v-deep .el-dialog,
.el-pager li {
//background: none !important;
margin-top: 6vh !important;

@ -135,7 +135,7 @@
width="150px"
>
<template slot-scope="scope">
<el-tag v-for="item in getSplitList(scope.row.miniTagNames)">
<el-tag v-for="item in getSplitList(scope.row.miniTagNames)" :key="item">
{{ item }}
</el-tag>
</template>
@ -147,7 +147,7 @@
width="150px"
>
<template slot-scope="scope">
<el-tag v-for="item in getSplitList(scope.row.wecomTagNames)">
<el-tag v-for="item in getSplitList(scope.row.wecomTagNames)" :key="item">
{{ item }}
</el-tag>
</template>
@ -1536,8 +1536,8 @@ export default {
}
</script>
<style lang="less" scoped>
/deep/ .hide .el-upload--picture-card {
<style lang="scss" scoped>
v-deep .hide .el-upload--picture-card {
display: none;
}

Loading…
Cancel
Save