diff --git a/src/assets/scss/buttonstyle.scss b/src/assets/scss/buttonstyle.scss index ad6d1f080..96fe931dc 100644 --- a/src/assets/scss/buttonstyle.scss +++ b/src/assets/scss/buttonstyle.scss @@ -1,5 +1,4 @@ //新版 - //紫色 .diy-button--purple { background: linear-gradient(0deg, #7A58D1 0%, #8C91FF 100%) !important; @@ -115,6 +114,29 @@ } +//列表中操作按钮 +//查看 +.div-table-button--orange { + font-size: 14px !important; + font-family: Source Han Serif CN !important; + font-weight: 600 !important; + color: #FF8400 !important; + +} +.div-table-button--blue { + font-size: 14px !important; + font-family: Source Han Serif CN !important; + font-weight: 600 !important; + color: #0153B2 !important; +} +.div-table-button--red { + font-size: 14px !important; + font-family: Source Han Serif CN !important; + font-weight: 600 !important; + color: #BB0000 !important; + +} + //旧版--------弃用 //查询、确定 .diy-button--search { diff --git a/src/main.js b/src/main.js index f5f3634b1..4bebde648 100644 --- a/src/main.js +++ b/src/main.js @@ -97,6 +97,8 @@ Vue.prototype.$getElUploadHeaders = () => ({ // 保存整站vuex本地储存初始状态 window.SITE_CONFIG["storeState"] = cloneDeep(store.state); +Vue.prototype.tableHeaderStyle = { background: 'linear-gradient(0deg, #005EB3 0%, #0083F0 100%)', color: '#FFFFFF', padding: '6px' }; + new Vue({ i18n, router, diff --git a/src/views/modules/base/community/buildTable.vue b/src/views/modules/base/community/buildTable.vue index b8d5ecafc..7dd28c5e6 100644 --- a/src/views/modules/base/community/buildTable.vue +++ b/src/views/modules/base/community/buildTable.vue @@ -2,73 +2,110 @@