123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- <template>
- <div class="manage-root personnel-create">
- <Header />
- <div class="manage-root-contain">
- <nav-menu class="manage-root-contain-left" :activeMenuIndex="activeMenuIndex"></nav-menu>
- <div class="manage-root-contain-right">
- <breadcrumb :breadcrumbList="breadcrumbList" class="breadcrumb-box"></breadcrumb>
- <div class="create-bottom">
- <h3>导入配置</h3>
- <el-form :model="registerForm" ref="registerForm" label-width="100px" class="registerForm" label-position="top">
- <el-form-item label="人员导入模板" prop="resource">
- <upload :datafileList="registerForm.resource" :changeFillId="handleAvatarSuccess" :fileName="'courseResource'" :filleNumber="1" :uploadType="'xls'" />
- </el-form-item>
- <el-form-item>
- <el-button type="primary" @click="onSubmit('registerForm')" size="small" :loading="loading">保存</el-button>
- <el-button @click="onCancel('registerForm')" size="small">取消</el-button>
- </el-form-item>
- </el-form>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script>
- //这里可以导入其它文件(比如:组件,工具js,第三方插件js,json文件,图片文件等等)
- //例如:import 《组件名称》from ‘《组件路径》';
- import Header from "../../components/Header.vue";
- import NavMenu from "../../components/NavMenu.vue"
- import Breadcrumb from '../../components/Breadcrumb.vue';
- import Upload from "../../components/Upload.vue"
- import { getLogin } from "@/api/ajax";
- export default {
- //import引入的组件需要注入到对象中才能使用
- components: { Header, NavMenu, Breadcrumb, Upload },
- props: {},
- data() {
- //这里存放数据
- return {
- activeMenuIndex: "export_setting",
- breadcrumbList:[
- {
- icon:'setting',
- url:'',
- text:''
- },
- {
- icon:'',
- url:'',
- notLink: true,
- text:'系统配置'
- },
- {
- icon:'',
- url:'',
- text:'导入配置'
- }
- ],
- registerForm:{
- resource:[],
- file_id: '',
- file_url: ''
- },
- loading: false
- }
- },
- //计算属性 类似于data概念
- computed: {
-
- },
- //监控data中数据变化
- watch: {
-
- },
- //方法集合
- methods: {
- // 去掉前后空格
- handleTrim(form,fild){
- this[form][fild] = this[form][fild].trim()
- },
- changeIcon(flag){
- this[flag] = !this[flag]
- },
- // 提交表单
- onSubmit(formName){
- this.$refs[formName].validate((valid) => {
- if (valid) {
- this.loading = true
- let MethodName = "/OrgServer/Manager/SysUserManager/UpdateSysUser_BaseInfo";
- let data = {
- email: this.registerForm.email,
- smtp: this.registerForm.smtp,
- emailName: this.registerForm.emailName,
- newPwd: this.registerForm.newPwd
- }
- getLogin(MethodName, data)
- .then((res) => {
- this.loading = false
- if(res.status===1){
- this.$message.success("保存成功")
- }
- }).catch((res) =>{
- this.loading = false
- })
- } else {
- return false;
- }
- });
- },
- // 取消 恢复到修改前状态
- onCancel(formName){
- this.$refs[formName].resetFields();
- },
- handleAvatarSuccess(fileList,name) {
- this.registerForm.resource = fileList
- this.registerForm.file_id = fileList[0]&&fileList[0].response&&fileList[0].response.file_info_list&&fileList[0].response.file_info_list[0]?fileList[0].response.file_info_list[0].file_id:''
- this.registerForm.file_url = fileList[0]&&fileList[0].response&&fileList[0].response.file_info_list&&fileList[0].response.file_info_list[0]?fileList[0].response.file_info_list[0].file_url:''
- },
- },
- //生命周期 - 创建完成(可以访问当前this实例)
- created() {
- },
- //生命周期 - 挂载完成(可以访问DOM元素)
- mounted() {
- },
- //生命周期-创建之前
- beforeCreated() { },
- //生命周期-挂载之前
- beforeMount() { },
- //生命周期-更新之前
- beforUpdate() { },
- //生命周期-更新之后
- updated() { },
- //生命周期-销毁之前
- beforeDestory() { },
- //生命周期-销毁完成
- destoryed() { },
- //如果页面有keep-alive缓存功能,这个函数会触发
- activated() { }
- }
- </script>
- <style lang="scss" scoped>
- /* @import url(); 引入css类 */
- .create-bottom{
- padding: 40px 40px;
- margin-top: 16px;
- background: #FFFFFF;
- border-radius: 4px;
- height: calc(100vh - 140px);
- overflow: auto;
- h3{
- font-size: 20px;
- font-weight: 500;
- line-height: 28px;
- margin: 0 0 28px 0;
- color: #1D2129;
- }
- }
- </style>
- <style lang="scss">
- </style>
|