Browse Source

文档 用户编辑bug 中英

pull/2/head
gongzijian 6 years ago
parent
commit
c222386ddd
  1. 10
      docs/zh_CN/前端部署文档.md
  2. 0
      escheduler-ui/install-escheduler-ui.sh
  3. 3
      escheduler-ui/src/js/conf/home/pages/projects/pages/definition/timing/_source/list.vue
  4. 2
      escheduler-ui/src/js/conf/home/pages/security/pages/users/_source/createUser.vue
  5. 3
      escheduler-ui/src/js/conf/home/pages/user/pages/password/_source/info.vue

10
docs/zh_CN/前端部署文档.md

@ -7,8 +7,8 @@
目前最新安装包版本是1.0.2,下载地址: [码云下载](https://gitee.com/easyscheduler/EasyScheduler/attach_files/) 目前最新安装包版本是1.0.2,下载地址: [码云下载](https://gitee.com/easyscheduler/EasyScheduler/attach_files/)
下载escheduler-ui-1.0.2.tar.gz后,解压后会产生dist目录,进入dist目录 下载 escheduler-ui-1.0.2.tar.gz 后,解压`tar -zxvf escheduler-ui-1.0.2.tar.gz ./`后,进入`escheduler-ui`目录
> cd dist
@ -16,7 +16,7 @@
以下两种方式任选其一部署即可,推荐自动化部署 以下两种方式任选其一部署即可,推荐自动化部署
### 2.1 自动化部署 ### 2.1 自动化部署
在`escheduler-ui`目录下编辑安装文件`vi install(线上环境).sh`(执行时,最好修改install(线上环境).sh为install-ui.sh,跟后端部署区分) 在`escheduler-ui`目录下编辑安装文件`vi install-escheduler-ui.sh`
更改前端访问端口和后端代理接口地址 更改前端访问端口和后端代理接口地址
@ -28,9 +28,9 @@ esc_proxy="8888"
esc_proxy_port="http://192.168.xx.xx:12345" esc_proxy_port="http://192.168.xx.xx:12345"
``` ```
前端自动部署基于linux系统`yum`操作,部署之前请先安装更新`yum` >前端自动部署基于linux系统`yum`操作,部署之前请先安装更新`yum`
`escheduler-ui`目录下执行`./install(线上环境).sh` 或者改名后的 `./install-ui.sh` 该目录下执行`./install-escheduler-ui.sh`
### 2.2 手动部署 ### 2.2 手动部署

0
escheduler-ui/install(线上环境).sh → escheduler-ui/install-escheduler-ui.sh

3
escheduler-ui/src/js/conf/home/pages/projects/pages/definition/timing/_source/list.vue

@ -160,7 +160,10 @@
pageNo: this.pageNo, pageNo: this.pageNo,
pageSize: this.pageSize pageSize: this.pageSize
}).then(res => { }).then(res => {
this.list = []
setTimeout(() => {
this.list = res.data.totalList this.list = res.data.totalList
})
this.total = res.data.total this.total = res.data.total
this.isLoading = false this.isLoading = false
}).catch(e => { }).catch(e => {

2
escheduler-ui/src/js/conf/home/pages/security/pages/users/_source/createUser.vue

@ -39,7 +39,7 @@
</x-select> </x-select>
</template> </template>
</m-list-box-f> </m-list-box-f>
<m-list-box-f> <m-list-box-f v-if="isADMIN">
<template slot="name"><b>*</b>{{$t('Queue')}}</template> <template slot="name"><b>*</b>{{$t('Queue')}}</template>
<template slot="content"> <template slot="content">
<x-select v-model="queueName"> <x-select v-model="queueName">

3
escheduler-ui/src/js/conf/home/pages/user/pages/password/_source/info.vue

@ -31,7 +31,7 @@
<m-list-box-f> <m-list-box-f>
<template slot="name">&nbsp;</template> <template slot="name">&nbsp;</template>
<template slot="content"> <template slot="content">
<x-button type="primary" shape="circle" @click="_edit()" :loading="spinnerLoading">{{spinnerLoading ? 'Loading...' : 'Edit'}}</x-button> <x-button type="primary" shape="circle" @click="_edit()" :loading="spinnerLoading">{{spinnerLoading ? 'Loading...' : $t('Edit')}}</x-button>
</template> </template>
</m-list-box-f> </m-list-box-f>
</div> </div>
@ -80,6 +80,7 @@
}, 1500) }, 1500)
}).catch(e => { }).catch(e => {
this.$message.error(e.msg || '') this.$message.error(e.msg || '')
this.spinnerLoading = false
}) })
} }
}, },

Loading…
Cancel
Save