diff --git a/src/assets/images/zs.png b/src/assets/images/zs.png new file mode 100644 index 0000000..718500d Binary files /dev/null and b/src/assets/images/zs.png differ diff --git a/src/css/public.css b/src/css/public.css new file mode 100644 index 0000000..fc1cb5f --- /dev/null +++ b/src/css/public.css @@ -0,0 +1,40 @@ +/* 主要的按钮样式处理 */ +/*鼠标点击后移开,恢复本身样式*/ +.primary, +.primary:focus:not(.primary:hover) { + color: white; + background: #409eff; +} +/*鼠标悬浮,没有按下;鼠标按下后抬起,没有移开*/ +/* 更改背景和字體顏色 */ +.primary:focus, .primary:hover{ + color: white; + background: #409eff; +} +/*鼠标按下,没有抬起*/ +/* 更改邊框顏色 */ +.primary:active { + color: white; + background: #337ecc; +} + + +/*鼠标点击后移开,恢复本身样式*/ +.danger, +.danger:focus:not(.danger:hover) { + color: white; + background: #f56c6c; +} +/* 危险的按钮样式 */ +/*鼠标悬浮,没有按下;鼠标按下后抬起,没有移开*/ +/* 更改背景和字體顏色 */ +.danger:focus, .danger:hover{ + color: white; + background: #f56c6c; +} +/*鼠标按下,没有抬起*/ +/* 更改邊框顏色 */ +.danger:active { + color: white; + background: #c45656; +} \ No newline at end of file diff --git a/src/main.js b/src/main.js index 271b441..7ac10c8 100644 --- a/src/main.js +++ b/src/main.js @@ -4,7 +4,6 @@ import router from './router' import store from './store' import 'jquery' import 'jquery.md5' - import 'bootstrap/dist/css/bootstrap.min.css' import 'bootstrap/dist/js/bootstrap.min.js' @@ -50,5 +49,6 @@ import components from '@/utils/components.js' import ElementPlus from 'element-plus' import 'element-plus/dist/index.css' +import '@/css/public.css' createApp(App).use(store).use(router).use(components).use(ElementPlus).mount('#app') diff --git a/src/views/room/RoomAlbumPower.vue b/src/views/room/RoomAlbumPower.vue index 963246c..5fe86b0 100644 --- a/src/views/room/RoomAlbumPower.vue +++ b/src/views/room/RoomAlbumPower.vue @@ -2,35 +2,251 @@ @@ -39,5 +255,34 @@ export default { padding-top: 20px; background: #ecf0f5; border-top: 3px solid #d2d6de; + .search { + width: 100%; + height: 41px; + .searchLeft, + .searchRight { + width: 20%; + float: left; + span { + margin-right: 10px; + } + .input { + width: 75%; + } + } + } + .buttonBox { + margin-top: 10px; + } + .authorityBox { + .authoritySpan { + margin-right: 20px; + } + .authorityInpput { + width: 50%; + } + } + .dialogTableVisibleBut { + margin: -25px 0 20px 0px; + } } diff --git a/src/views/room/RoomAlbums.vue b/src/views/room/RoomAlbums.vue index b5783d8..49d4736 100644 --- a/src/views/room/RoomAlbums.vue +++ b/src/views/room/RoomAlbums.vue @@ -1,24 +1,170 @@