From 25c50157c4eee59b6b4c4a628b83b5330bba6bb6 Mon Sep 17 00:00:00 2001 From: fit2cloud-chenyw Date: Wed, 30 Jun 2021 17:40:34 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E7=BB=84=E7=BB=87=E7=AE=A1=E7=90=86?= =?UTF-8?q?=E5=AE=8C=E5=96=84=E5=8F=AF=E6=8B=96=E6=8B=BD=E7=A7=BB=E5=8A=A8?= =?UTF-8?q?=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/lang/en.js | 5 +++++ frontend/src/lang/tw.js | 5 +++++ frontend/src/lang/zh.js | 5 +++++ frontend/src/utils/request.js | 2 +- 4 files changed, 16 insertions(+), 1 deletion(-) diff --git a/frontend/src/lang/en.js b/frontend/src/lang/en.js index a01b75cc38..e20dfd31ab 100644 --- a/frontend/src/lang/en.js +++ b/frontend/src/lang/en.js @@ -1127,5 +1127,10 @@ export default { week_end: 'to week', every_year: 'Every year', week_tips: 'Tips:1-7 mapping SUN-SAT' + }, + dept: { + can_not_move_change_sort: 'Cannot move to change sort', + can_not_move_parent_to_children: 'Parent organization cannot move to its own child node', + move_success: 'Mobile success' } } diff --git a/frontend/src/lang/tw.js b/frontend/src/lang/tw.js index 8401b867cb..d26340a1e4 100644 --- a/frontend/src/lang/tw.js +++ b/frontend/src/lang/tw.js @@ -1169,5 +1169,10 @@ export default { week_end: '至星期', every_year: '每年', week_tips: '說明:1-7 分別對應 周日-周六' + }, + dept: { + can_not_move_change_sort: '不能移動以改變排序', + can_not_move_parent_to_children: '父組織不能移動到自己的子節點下', + move_success: '移動成功' } } diff --git a/frontend/src/lang/zh.js b/frontend/src/lang/zh.js index 47ab5cef65..a11c5d2b01 100644 --- a/frontend/src/lang/zh.js +++ b/frontend/src/lang/zh.js @@ -1128,5 +1128,10 @@ export default { week_end: '至星期', every_year: '每年', week_tips: '说明:1-7 分别对应 周日-周六' + }, + dept: { + can_not_move_change_sort: '不能移动以改变排序', + can_not_move_parent_to_children: '父组织不能移动到自己的子节点下', + move_success: '移动成功' } } diff --git a/frontend/src/utils/request.js b/frontend/src/utils/request.js index b900ebc3f9..ca7598913a 100644 --- a/frontend/src/utils/request.js +++ b/frontend/src/utils/request.js @@ -1,4 +1,4 @@ -// import axios from 'axios' +import axios from 'axios' // import { MessageBox, Message } from 'element-ui' import store from '@/store' import { $alert, $error } from './message'