内容修改
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 {
|
#app .theme-picker {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
<style lang="scss" >
|
||||||
|
.el-select {
|
||||||
|
.el-input__inner{
|
||||||
|
color: red;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
.el-input{
|
||||||
|
.el-input__inner{
|
||||||
|
color: red;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
|
@ -1,13 +1,16 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="app-container">
|
<div class="app-container">
|
||||||
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
<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-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
|
<el-option
|
||||||
v-for="item in deptOptions"
|
v-for="item in deptOptions"
|
||||||
:key="item.deptId"
|
:key="item.deptId"
|
||||||
:label="item.deptName"
|
:label="item.deptName"
|
||||||
:value="item.deptId"
|
:value="item.deptId"
|
||||||
|
|
||||||
></el-option>
|
></el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
@ -1071,7 +1074,18 @@ export default {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
<style>
|
<style lang="scss">
|
||||||
|
.el-select {
|
||||||
|
.el-input__inner{
|
||||||
|
color: red;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
.el-input{
|
||||||
|
.el-input__inner{
|
||||||
|
color: red;
|
||||||
|
}
|
||||||
|
}
|
||||||
.nav-container {
|
.nav-container {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
|
|
@ -368,3 +368,16 @@ export default {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</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>
|
</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>
|
</script>
|
||||||
<style>
|
|
||||||
|
<style lang="scss">
|
||||||
|
.el-select {
|
||||||
|
.el-input__inner{
|
||||||
|
color: red;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
.el-input{
|
||||||
|
.el-input__inner{
|
||||||
|
color: red;
|
||||||
|
}
|
||||||
|
}
|
||||||
.amoun-tips{
|
.amoun-tips{
|
||||||
color: red;
|
color: red;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
|
|
|
@ -490,7 +490,18 @@ export default {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
<style>
|
<style lang="scss">
|
||||||
|
.el-select {
|
||||||
|
.el-input__inner{
|
||||||
|
color: red;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
.el-input{
|
||||||
|
.el-input__inner{
|
||||||
|
color: red;
|
||||||
|
}
|
||||||
|
}
|
||||||
.amoun-tips{
|
.amoun-tips{
|
||||||
color: red;
|
color: red;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user