内容修改
This commit is contained in:
parent
23ea8a9c71
commit
c75308b390
14
src/App.vue
14
src/App.vue
|
@ -25,4 +25,18 @@ export default {
|
|||
#app .theme-picker {
|
||||
display: none;
|
||||
}
|
||||
|
||||
</style>
|
||||
<style lang="scss" >
|
||||
.el-select {
|
||||
.el-input__inner{
|
||||
color: red;
|
||||
}
|
||||
|
||||
}
|
||||
.el-input{
|
||||
.el-input__inner{
|
||||
color: red;
|
||||
}
|
||||
}
|
||||
</style>
|
|
@ -1,13 +1,16 @@
|
|||
<template>
|
||||
<div class="app-container">
|
||||
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
||||
|
||||
|
||||
<el-form-item label="运营商" prop="deptId" v-if="userName == 'admin'">
|
||||
<el-select v-model="queryParams.deptId" placeholder="请选择运营商" clearable>
|
||||
<el-select v-model="queryParams.deptId" placeholder="请选择运营商" clearable :popper-append-to-body="false">
|
||||
<el-option
|
||||
v-for="item in deptOptions"
|
||||
:key="item.deptId"
|
||||
:label="item.deptName"
|
||||
:value="item.deptId"
|
||||
|
||||
></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
|
@ -1071,7 +1074,18 @@ export default {
|
|||
}
|
||||
};
|
||||
</script>
|
||||
<style>
|
||||
<style lang="scss">
|
||||
.el-select {
|
||||
.el-input__inner{
|
||||
color: red;
|
||||
}
|
||||
|
||||
}
|
||||
.el-input{
|
||||
.el-input__inner{
|
||||
color: red;
|
||||
}
|
||||
}
|
||||
.nav-container {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
|
|
|
@ -368,3 +368,16 @@ export default {
|
|||
}
|
||||
};
|
||||
</script>
|
||||
<style lang="scss" >
|
||||
.el-select {
|
||||
.el-input__inner{
|
||||
color: red;
|
||||
}
|
||||
|
||||
}
|
||||
.el-input{
|
||||
.el-input__inner{
|
||||
color: red;
|
||||
}
|
||||
}
|
||||
</style>
|
|
@ -313,3 +313,16 @@ export default {
|
|||
}
|
||||
};
|
||||
</script>
|
||||
<style lang="scss" >
|
||||
.el-select {
|
||||
.el-input__inner{
|
||||
color: red;
|
||||
}
|
||||
|
||||
}
|
||||
.el-input{
|
||||
.el-input__inner{
|
||||
color: red;
|
||||
}
|
||||
}
|
||||
</style>
|
|
@ -518,7 +518,19 @@ export default {
|
|||
}
|
||||
};
|
||||
</script>
|
||||
<style>
|
||||
|
||||
<style lang="scss">
|
||||
.el-select {
|
||||
.el-input__inner{
|
||||
color: red;
|
||||
}
|
||||
|
||||
}
|
||||
.el-input{
|
||||
.el-input__inner{
|
||||
color: red;
|
||||
}
|
||||
}
|
||||
.amoun-tips{
|
||||
color: red;
|
||||
font-size: 12px;
|
||||
|
|
|
@ -490,7 +490,18 @@ export default {
|
|||
}
|
||||
};
|
||||
</script>
|
||||
<style>
|
||||
<style lang="scss">
|
||||
.el-select {
|
||||
.el-input__inner{
|
||||
color: red;
|
||||
}
|
||||
|
||||
}
|
||||
.el-input{
|
||||
.el-input__inner{
|
||||
color: red;
|
||||
}
|
||||
}
|
||||
.amoun-tips{
|
||||
color: red;
|
||||
font-size: 12px;
|
||||
|
|
Loading…
Reference in New Issue
Block a user