“dzb”
2022-09-20 4a4e2815de15052af2357e7f53ed9aa30e079d40
src/views/systemSetting/baseSetting/user/updateUser/index.vue
@@ -14,7 +14,8 @@
                    </el-form-item>
                    <!-- 用户密码 -->
                    <el-form-item class="optionItems" label="用户密码:" prop="password">
                        <el-input v-model="user.password" type="password" placeholder="请输入用户密码" :disabled="true"></el-input>
                        <el-input v-model="user.password" type="password" placeholder="请输入用户密码" :disabled="true">
                        </el-input>
                    </el-form-item>
                    <!-- 所属用户姓名 -->
                    <!-- <el-form-item class="optionItem" label="所属用户姓名:" prop="true_name">
@@ -71,7 +72,8 @@
                    <!-- 所属部门 -->
                    <el-form-item class="optionItem" label="所属部门:" prop="departmentId">
                        <el-select v-model="user.department" placeholder="请选择所属部门" :disabled="!updateFlag">
                            <el-option v-for="item in typeList" :key="item.name" :label="item.departName" :value="item.id">
                            <el-option v-for="item in typeList" :key="item.name" :label="item.departName"
                                :value="item.id">
                            </el-option>
                        </el-select>
                    </el-form-item>
@@ -91,7 +93,10 @@
                        <el-input v-model="user.ip" placeholder="请填写所属ip地址"></el-input>
                    </el-form-item> -->
                    <el-form-item  v-if="updateFlag">
                        <div class="optionBtn"><el-button type="primary" class="btn submit" @click.native.prevent="handleUser">提交</el-button></div>
                        <div class="optionBtn">
                            <el-button type="primary" class="btn submit" @click.native.prevent="handleUser">提交
                            </el-button>
                        </div>
                    </el-form-item>
                </el-form>
@@ -286,12 +291,10 @@
    props:['userInfo','updateFlag']
}
</script>
<style lang="scss" scpoed>
<style lang="scss" scoped>
.updateUser {
    border-radius: 1px;
    // min-width: 1024px;
    // min-height: 1450px;
    background-color: #06122c;
    background-color: #09152f;
    header {
        display: flex;
@@ -299,9 +302,10 @@
        height: 60px;
        line-height: 60px;
        padding: 0 20px;
        border: 1px solid #fff;
        .headerTitle {
            color: #4b9bb7;
            font-weight: 600;
            color: #666;
        }
        .headerTip span {
@@ -309,16 +313,18 @@
        }
        .headerTip label {
            color: #999999;
            color: #4b9bb7;
        }
    }
    main {
        border: 1px solid #fff;
        text-align: left;
        padding: 0 55px;
        background-color: #09152f;
        .mainTitle {
            // margin-left: 60px;
            color: #666;
            color: #4b9bb7;
            font-weight: 600;
            line-height: 100px;
            font-size: 14px;
@@ -327,6 +333,7 @@
        .mainContent {
            display: flex;
            justify-content: center;
            .el-form-item__content {
                width: 400px;
@@ -334,19 +341,25 @@
                    width: 100%;
                }
            }
            .optionHandleSp{
                display: flex;
                .areaNumber,.moreNumber{
                .areaNumber,
                .moreNumber {
                    flex: 1;
                }
                .telNumber{
                    flex: 2;
                }
            }
            .optionBtn{
                display: flex;
                justify-content: center;
                margin-top: 80px;
                .btn{
                    padding: 12px 50px;
                }
@@ -355,4 +368,13 @@
        }
    }
}
.updateUser::v-deep .el-form-item__label {
    color: #4b9bb7;
}
.updateUser::v-deep .el-input__inner {
    background-color: #09152f;
    border: 1px solid #17324c;
}
</style>