提交 be931ced 编写于 作者: Mr.奇淼('s avatar Mr.奇淼(

调整搜索框和提示文字的样式细节

上级 a039bd90
此差异已折叠。
...@@ -1427,10 +1427,8 @@ $mainHight: 100vh; ...@@ -1427,10 +1427,8 @@ $mainHight: 100vh;
border-radius: 2px; border-radius: 2px;
margin-bottom: 12px; margin-bottom: 12px;
.el-form { .el-form {
.el-form-item+.el-form-item { .el-form-item {
.el-form-item__label { padding-right: 28px;
padding-left: 28px;
}
} }
} }
} }
......
...@@ -238,6 +238,15 @@ export default { ...@@ -238,6 +238,15 @@ export default {
text-align: center; text-align: center;
color: #333; color: #333;
.quick-entrance-item { .quick-entrance-item {
padding: 16px 28px;
margin-top: -16px;
margin-bottom: -16px;
border-radius: 4px;
transition: all 0.2s;
&:hover{
box-shadow: 0px 0px 7px 0px rgba(217, 217, 217, 0.55);
}
cursor: pointer;
height: auto; height: auto;
text-align: center; text-align: center;
// align-items: center; // align-items: center;
......
...@@ -9,16 +9,17 @@ ...@@ -9,16 +9,17 @@
<el-checkbox-group v-model="dataAuthorityId" @change="selectAuthority"> <el-checkbox-group v-model="dataAuthorityId" @change="selectAuthority">
<el-checkbox v-for="(item,key) in authoritys" :key="key" :label="item">{{ item.authorityName }}</el-checkbox> <el-checkbox v-for="(item,key) in authoritys" :key="key" :label="item">{{ item.authorityName }}</el-checkbox>
</el-checkbox-group> </el-checkbox-group>
<span> <warning-bar title="此功能仅用于创建角色和角色的many2many关系表,具体使用还须自己结合表实现业务,详情参考示例代码(客户示例)" />
此功能仅用于创建角色和角色的many2many关系表,具体使用还须自己结合表实现业务,详情参考示例代码(客户示例)
</span>
</div> </div>
</template> </template>
<script> <script>
import { setDataAuthority } from '@/api/authority' import { setDataAuthority } from '@/api/authority'
import warningBar from '@/components/warningBar/warningBar.vue'
export default { export default {
name: 'Datas', name: 'Datas',
components: { warningBar },
props: { props: {
row: { row: {
default: function() { default: function() {
......
...@@ -65,7 +65,10 @@ ...@@ -65,7 +65,10 @@
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
<warning-bar
title="获取字典且缓存方法已在前端utils/dictionary 已经封装完成 不必自己书写 使用方法查看文件内注释"
style="margin-top:12px"
/>
<div class="gva-pagination"> <div class="gva-pagination">
<el-pagination <el-pagination
:current-page="page" :current-page="page"
...@@ -109,10 +112,7 @@ ...@@ -109,10 +112,7 @@
<el-button size="small" type="primary" @click="enterDialog">确 定</el-button> <el-button size="small" type="primary" @click="enterDialog">确 定</el-button>
</div> </div>
</template> </template>
</el-dialog> </el-dialog>
<div style="margin-top:40px;color:red">获取字典且缓存方法已在前端utils/dictionary 已经封装完成 不必自己书写 使用方法查看文件内注释</div>
</div> </div>
</template> </template>
...@@ -125,8 +125,12 @@ import { ...@@ -125,8 +125,12 @@ import {
getSysDictionaryList getSysDictionaryList
} from '@/api/sysDictionary' // 此处请自行替换地址 } from '@/api/sysDictionary' // 此处请自行替换地址
import infoList from '@/mixins/infoList' import infoList from '@/mixins/infoList'
import warningBar from '@/components/warningBar/warningBar.vue'
export default { export default {
name: 'SysDictionary', name: 'SysDictionary',
components: {
warningBar
},
mixins: [infoList], mixins: [infoList],
data() { data() {
return { return {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册