bl-common-vue3 3.8.98 → 3.8.102

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bl-common-vue3",
3
- "version": "3.8.98",
3
+ "version": "3.8.102",
4
4
  "main": "index.js",
5
5
  "module": "index.js",
6
6
  "description": "bailing vue3 common components lib",
@@ -443,7 +443,7 @@
443
443
  v-if="detail.dealerHandle || detail.approverHandle || detail.revoke == 1">
444
444
  <a-space size="small">
445
445
  <a-button
446
- v-if="detail.dealerHandle"
446
+ v-if="detail.dealerHandle && !collapseApprovalActions"
447
447
  type="primary"
448
448
  key="deal"
449
449
  :size="isAllButton ? 'small' : 'default'"
@@ -457,7 +457,7 @@
457
457
 
458
458
  <template v-if="detail.approverHandle">
459
459
  <a-button
460
- v-if="canAddSign"
460
+ v-if="canAddSign && !collapseApprovalActions"
461
461
  type="primary"
462
462
  ghost
463
463
  :size="isAllButton ? 'small' : 'default'"
@@ -468,7 +468,7 @@
468
468
  {{ $t("ApprovalDetail.index.931943-2") }}
469
469
  </a-button>
470
470
  <a-button
471
- v-if="detail?.process_now > 1"
471
+ v-if="detail?.process_now > 1 && !collapseApprovalActions"
472
472
  type="default"
473
473
  :size="isAllButton ? 'small' : 'default'"
474
474
  :loading="submitLoading"
@@ -480,7 +480,7 @@
480
480
  </a-button>
481
481
 
482
482
  <a-button
483
- v-if="canEdit"
483
+ v-if="canEdit && !collapseApprovalActions"
484
484
  type="primary"
485
485
  key="edit"
486
486
  :size="isAllButton ? 'small' : 'default'"
@@ -545,7 +545,7 @@
545
545
  ghost
546
546
  key="urging"
547
547
  :size="isAllButton ? 'small' : 'default'"
548
- v-if="detail.revoke == 1"
548
+ v-if="detail.revoke == 1 && !collapseApprovalActions"
549
549
  @click="ApprovalUrging">
550
550
  <template #icon>
551
551
  <BellOutlined />
@@ -557,13 +557,81 @@
557
557
  :loading="submitLoading"
558
558
  key="revoke"
559
559
  :size="isAllButton ? 'small' : 'default'"
560
- v-if="detail.revoke == 1"
560
+ v-if="detail.revoke == 1 && !collapseApprovalActions"
561
561
  @click="revokeApproval">
562
562
  <template #icon>
563
563
  <UndoOutlined />
564
564
  </template>
565
565
  {{ $t("ApprovalDetail.index.931943-20") }}
566
566
  </a-button>
567
+
568
+ <a-dropdown
569
+ v-if="collapseApprovalActions && moreApprovalActions.length"
570
+ :trigger="['click']"
571
+ placement="topRight">
572
+ <a-button type="primary" ghost :size="isAllButton ? 'small' : 'default'">
573
+ {{ $t("common.button.more") }}
574
+ <DownOutlined />
575
+ </a-button>
576
+ <template #overlay>
577
+ <a-menu>
578
+ <a-menu-item
579
+ v-if="detail.dealerHandle"
580
+ key="deal"
581
+ :disabled="submitLoading"
582
+ @click="approvalForm('agree')">
583
+ <template #icon>
584
+ <CheckOutlined />
585
+ </template>
586
+ {{ $t("ApprovalDetail.index.931943-14") }}
587
+ </a-menu-item>
588
+ <a-menu-item
589
+ v-if="canAddSign"
590
+ key="addSign"
591
+ @click="handleAddSign">
592
+ <template #icon>
593
+ <PlusCircleOutlined />
594
+ </template>
595
+ {{ $t("ApprovalDetail.index.931943-2") }}
596
+ </a-menu-item>
597
+ <a-menu-item
598
+ v-if="detail?.process_now > 1"
599
+ key="back"
600
+ :disabled="submitLoading"
601
+ @click="handleMore(2)">
602
+ <template #icon>
603
+ <RollbackOutlined />
604
+ </template>
605
+ {{ $t("ApprovalDetail.index.931943-15") }}
606
+ </a-menu-item>
607
+ <a-menu-item v-if="canEdit" key="edit" @click="editFormInfo">
608
+ <template #icon>
609
+ <FormOutlined />
610
+ </template>
611
+ {{ $t("ApprovalDetail.index.931943-16") }}
612
+ </a-menu-item>
613
+ <a-menu-item
614
+ v-if="detail.revoke == 1"
615
+ key="urging"
616
+ @click="ApprovalUrging">
617
+ <template #icon>
618
+ <BellOutlined />
619
+ </template>
620
+ {{ $t("ApprovalDetail.index.931943-19") }}
621
+ </a-menu-item>
622
+ <a-menu-item
623
+ v-if="detail.revoke == 1"
624
+ key="revoke"
625
+ :disabled="submitLoading"
626
+ @click="revokeApproval">
627
+ <template #icon>
628
+ <UndoOutlined />
629
+ </template>
630
+ {{ $t("ApprovalDetail.index.931943-20") }}
631
+ </a-menu-item>
632
+ </a-menu>
633
+ </template>
634
+ </a-dropdown>
567
635
  </a-space>
568
636
  </div>
569
637
  </div>
@@ -618,6 +686,7 @@ import {
618
686
  RollbackOutlined,
619
687
  FormOutlined,
620
688
  PlusCircleOutlined,
689
+ DownOutlined,
621
690
  } from "@ant-design/icons-vue";
622
691
  import { message } from "ant-design-vue";
623
692
  import moment from "moment";
@@ -672,6 +741,7 @@ export default defineComponent({
672
741
  FormOutlined,
673
742
  AddSignModal,
674
743
  BlPopover,
744
+ DownOutlined,
675
745
  "a-timeline": Timeline,
676
746
  },
677
747
  directives: {
@@ -1231,6 +1301,40 @@ export default defineComponent({
1231
1301
  return false;
1232
1302
  });
1233
1303
 
1304
+ const moreApprovalActions = computed(() => {
1305
+ const list = [];
1306
+ if (state.detail?.dealerHandle) {
1307
+ list.push("deal");
1308
+ }
1309
+ if (state.detail?.approverHandle) {
1310
+ if (canAddSign.value) {
1311
+ list.push("addSign");
1312
+ }
1313
+ if (state.detail?.process_now > 1) {
1314
+ list.push("back");
1315
+ }
1316
+ if (canEdit.value) {
1317
+ list.push("edit");
1318
+ }
1319
+ }
1320
+ if (state.detail?.revoke == 1) {
1321
+ list.push("urging", "revoke");
1322
+ }
1323
+ return list;
1324
+ });
1325
+
1326
+ const approvalActionCount = computed(() => {
1327
+ let count = moreApprovalActions.value.length;
1328
+ if (state.detail?.approverHandle) {
1329
+ count += 2;
1330
+ }
1331
+ return count;
1332
+ });
1333
+
1334
+ const collapseApprovalActions = computed(() => {
1335
+ return state.detail?.approverHandle && approvalActionCount.value > 4;
1336
+ });
1337
+
1234
1338
  const handleRequest = (emitObj) => {
1235
1339
  emit("request", emitObj);
1236
1340
  };
@@ -1300,6 +1404,8 @@ export default defineComponent({
1300
1404
  handleAddSign,
1301
1405
  handleAddSignSuccess,
1302
1406
  canAddSign,
1407
+ moreApprovalActions,
1408
+ collapseApprovalActions,
1303
1409
  handleRequest,
1304
1410
  detailRef,
1305
1411
  isAllButton,
@@ -17,8 +17,8 @@ export default {
17
17
  "common.button.confirm": "Confirm",
18
18
  "common.button.submit": "Submit",
19
19
  "common.button.whole": "All",
20
- "common.tenant.lower": "tenant",
21
- "common.tenant.cap": "Tenant",
20
+ "common.tenant.lower": "customer",
21
+ "common.tenant.cap": "Customer",
22
22
  "common.action.collapse": "Collapse",
23
23
  "common.action.expand": "Expand",
24
24
  "common.switch.enabled": "Enabled",
@@ -17,8 +17,8 @@ export default {
17
17
  "common.button.confirm": "確認",
18
18
  "common.button.submit": "送信",
19
19
  "common.button.whole": "すべて",
20
- "common.tenant.lower": "入居者",
21
- "common.tenant.cap": "入居者",
20
+ "common.tenant.lower": "顧客",
21
+ "common.tenant.cap": "顧客",
22
22
  "common.action.collapse": "折りたたむ",
23
23
  "common.action.expand": "展開",
24
24
  "common.switch.enabled": "有効",
@@ -1,12 +1,12 @@
1
- import antdEnUS from 'ant-design-vue/es/locale-provider/en_US'
2
- import momentEU from 'moment/locale/eu'
3
-
4
- const components = {
5
- antLocale: antdEnUS,
6
- momentName: 'eu',
7
- momentLocale: momentEU
8
- }
9
-
10
- export default {
11
- ...components,
12
- }
1
+ import antdEnUS from 'ant-design-vue/es/locale-provider/en_US'
2
+ import momentEN from 'moment/locale/en';
3
+
4
+ const components = {
5
+ antLocale: antdEnUS,
6
+ momentName: 'en',
7
+ momentLocale: momentEN
8
+ }
9
+
10
+ export default {
11
+ ...components,
12
+ }
@@ -17,7 +17,7 @@
17
17
  "CustomTable.index.074786-18": "擴充欄位",
18
18
  "CustomTable.index.074786-19": "清單設定",
19
19
  "CustomTable.index.074786-22": "匯入檔案",
20
- "CustomTable.index.074786-31": "匯出成功,請等待檔案生成",
20
+ "CustomTable.index.074786-31": "匯出成功,請等待檔案產生",
21
21
  "CustomTable.index.074786-32": "共{0}筆",
22
22
  "modules.AddAttachments.831666-0": "新增{0}",
23
23
  "modules.AddAttachments.831666-1": "{0}名稱",
@@ -27,7 +27,7 @@
27
27
  "modules.AddAttachments.831666-5": "資料夾",
28
28
  "modules.AddAttachments.831666-6": "檔案",
29
29
  "modules.AddAttachments.831666-7": "新增成功",
30
- "modules.MultipleAddAttachments.414571-0": "批量上傳",
30
+ "modules.MultipleAddAttachments.414571-0": "批次上傳",
31
31
  "modules.MultipleAddAttachments.414571-1": "線上預覽",
32
32
  "modules.MultipleAddAttachments.414571-2": "您確定取消嗎?",
33
33
  "modules.MultipleAddAttachments.414571-3": "請選擇檔案並等待上傳完成後儲存!",
@@ -39,13 +39,13 @@
39
39
  "AttachmentInfo.index.559728-1": "新增附件",
40
40
  "AttachmentInfo.index.559728-2": "新增資料夾",
41
41
  "AttachmentInfo.index.559728-3": "上傳檔案",
42
- "AttachmentInfo.index.559728-4": "批量上傳",
42
+ "AttachmentInfo.index.559728-4": "批次上傳",
43
43
  "AttachmentInfo.index.559728-5": "線上預覽",
44
44
  "AttachmentInfo.index.559728-6": "置頂",
45
45
  "AttachmentInfo.index.559728-7": "下載",
46
46
  "AttachmentInfo.index.559728-8": "首頁",
47
47
  "AttachmentInfo.index.559728-9": "置頂成功",
48
- "AttachmentInfo.index.559728-10": "未返回檔案路徑,無法下載",
48
+ "AttachmentInfo.index.559728-10": "未取得檔案路徑,無法下載",
49
49
  "AttachmentInfo.index.559728-11": "確認刪除此檔案或資料夾(刪除資料夾則該資料夾目錄下的檔案將全部刪除)?",
50
50
  "AttachmentInfo.index.559728-12": "刪除成功",
51
51
  "AttachmentInfo.index.559728-13": "檔名",
@@ -58,7 +58,7 @@
58
58
  "BlTextTranslationModal.index.007091-1": "請輸入預設名稱",
59
59
  "BlTextTranslationModal.index.007091-2": "請輸入{0}",
60
60
  "BlTextTranslationModal.index.007091-3": "新增其他語種版本",
61
- "BlTextTranslationModal.index.007091-4": "在機構端或使用者端檢視此欄位時,系統會依目前設定的語言顯示內容。若該語言的名稱為空,則顯示預設名稱。",
61
+ "BlTextTranslationModal.index.007091-4": "在管理端或一般使用者端檢視此欄位時,系統會依目前設定的語言顯示內容。若該語言的名稱為空,則顯示預設名稱。",
62
62
  "CheckedHousingResources.index.396661-0": "{0}名稱",
63
63
  "CheckedHousingResources.index.396661-1": "租賃面積",
64
64
  "CheckedHousingResources.index.396661-2": "總面積",
@@ -83,7 +83,7 @@
83
83
  "ChooseBuildings.index.297751-0": "全選",
84
84
  "ChooseBuildings.index.297751-1": "部分樓層",
85
85
  "ChooseBuildings.index.297751-2": "全部樓層",
86
- "ChooseBuildings.index.297751-3": "該案場下暫未新增棟別",
86
+ "ChooseBuildings.index.297751-3": "此案場尚未新增棟別",
87
87
  "ChooseBuildings.index.297751-4": "棟別清單",
88
88
  "ChooseBuildings.index.297751-5": "集合清單",
89
89
  "ChooseBuildings.index.297751-6": "案場清單",
@@ -92,8 +92,8 @@
92
92
  "ChooseHousingResources.index.643917-1": "不能跨案場選擇{0}!",
93
93
  "ChooseHousingResources.index.643917-2": "不能跨棟別選擇{0}!",
94
94
  "ChooseHousingResources.index.643917-3": "不能跨樓層選擇{0}!",
95
- "ChooseHousingResources.index.643917-4": "當前{0}可租面積為0,請選擇其他{1}",
96
- "ChooseHousingResources.index.643917-5": "未查找到該{0}",
95
+ "ChooseHousingResources.index.643917-4": "目前{0}可租面積為0,請選擇其他{1}",
96
+ "ChooseHousingResources.index.643917-5": "找不到該{0}",
97
97
  "ChooseOrgMember.index.484656-0": "全選",
98
98
  "ChooseOrgMember.index.484656-1": "尚未啟用",
99
99
  "ChooseOrgMember.index.484656-2": "目前沒有資料",
@@ -111,23 +111,23 @@
111
111
  "ChooseOrgMember.index.484656-15": "請選擇至少{0}個部門!",
112
112
  "ChooseOrgMember.index.484656-16": "您最多只能選擇{0}個部門!",
113
113
  "ChoosePropertyResources.index.108367-0": "不能跨公司選擇資產!",
114
- "ChoosePropertyResources.index.108367-1": "當前資產已出售,請選擇其他資產",
115
- "ChoosePropertyResources.index.108367-2": "當前資產已出租,請選擇其他資產",
116
- "ChoosePropertyResources.index.108367-3": "當前資產可租面積為0,請選擇其他資產",
117
- "ChoosePropertyResources.index.108367-4": "未查找到該資產",
118
- "ColumnSetting.index.391089-0": "列設定",
119
- "ColumnSetting.index.391089-1": "恢復預設",
120
- "ColumnSetting.index.391089-2": "列名稱",
114
+ "ChoosePropertyResources.index.108367-1": "目前資產已出售,請選擇其他資產",
115
+ "ChoosePropertyResources.index.108367-2": "目前資產已出租,請選擇其他資產",
116
+ "ChoosePropertyResources.index.108367-3": "目前資產可租面積為0,請選擇其他資產",
117
+ "ChoosePropertyResources.index.108367-4": "找不到該資產",
118
+ "ColumnSetting.index.391089-0": "欄位設定",
119
+ "ColumnSetting.index.391089-1": "還原預設值",
120
+ "ColumnSetting.index.391089-2": "欄位名稱",
121
121
  "ColumnSetting.index.391089-3": "寬度",
122
122
  "ColumnSetting.index.391089-5": "固定",
123
123
  "ColumnSetting.index.391089-6": "排序",
124
- "ColumnSetting.index.391089-7": "至少保留一項表格列",
125
- "ColumnSetting.index.391089-9": "是否確認要恢復預設?",
124
+ "ColumnSetting.index.391089-7": "至少保留一個表格欄位",
125
+ "ColumnSetting.index.391089-9": "確定要還原預設值嗎?",
126
126
  "ColumnSetting.index.391089-10": "無",
127
127
  "ColumnSetting.index.391089-11": "左",
128
128
  "ColumnSetting.index.391089-12": "右",
129
- "CustomColumns.index.325309-0": "自訂顯示",
130
- "CustomColumns.index.325309-1": "恢復預設",
129
+ "CustomColumns.index.325309-0": "自訂欄位顯示",
130
+ "CustomColumns.index.325309-1": "還原預設值",
131
131
  "CustomImport.index.951685-0": "範本下載",
132
132
  "CustomImport.index.951685-1": "點選或將檔案拖曳到此處上傳",
133
133
  "CustomImport.index.951685-2": "支援副檔名:{0}",
@@ -139,16 +139,16 @@
139
139
  "CustomImport.index.951685-9": "匯入成功",
140
140
  "DepartmentPositionForm.index.147974-0": "請選擇人員",
141
141
  "DepartmentPositionForm.index.147974-1": "部門:",
142
- "DepartmentPositionForm.index.147974-3": "崗位:",
143
- "DepartmentPositionModal.index.405695-0": "選擇部門/崗位",
144
- "DepartmentPositionModal.index.405695-1": "由於人員可能因離職、請假、調動等原因頻繁變動,因此系統不採取直接選擇人員的方式,而是採用部門+崗位的雙重設定。日後只要新進員工隸屬於該部門的該崗位,系統就會自動選取,無須手動選擇人員。",
142
+ "DepartmentPositionForm.index.147974-3": "職位:",
143
+ "DepartmentPositionModal.index.405695-0": "選擇部門/職位",
144
+ "DepartmentPositionModal.index.405695-1": "人員可能因離職、請假或調職等原因頻繁變動,因此系統採用部門+職位的雙重設定,無須直接選擇人員。日後只要新進員工隸屬於該部門及職位,系統就會自動選取。",
145
145
  "DepartmentPositionModal.index.405695-2": "選擇部門",
146
- "DepartmentPositionModal.index.405695-3": "選擇崗位",
147
- "DepartmentPositionModal.index.405695-4": "暫無崗位,請先新增崗位",
146
+ "DepartmentPositionModal.index.405695-3": "選擇職位",
147
+ "DepartmentPositionModal.index.405695-4": "尚無職位,請先新增職位",
148
148
  "DepartmentPositionModal.index.405695-5": "人員預覽:",
149
- "DepartmentPositionModal.index.405695-6": "清單顯示目前的人員狀況。之後若部門或崗位的人員有新增、調動、離職等變動,系統取得的人員資料也會自動更新。",
150
- "DepartmentPositionModal.index.405695-7": "暫無人員預覽",
151
- "DepartmentPositionModal.index.405695-8": "請選擇部門和崗位",
149
+ "DepartmentPositionModal.index.405695-6": "清單顯示目前的人員狀況。之後若部門或職位的人員有新增、調職或離職等變動,系統取得的人員資料也會自動更新。",
150
+ "DepartmentPositionModal.index.405695-7": "尚無人員可預覽",
151
+ "DepartmentPositionModal.index.405695-8": "請選擇部門和職位",
152
152
  "utils.constant.921180-0": "預設",
153
153
  "utils.constant.921180-1": "主要",
154
154
  "utils.constant.921180-2": "成功",
@@ -162,7 +162,7 @@
162
162
  "components.AddDictionary.031362-4": "請輸入字典鍵值",
163
163
  "components.AddDictionary.031362-5": "樣式屬性",
164
164
  "components.AddDictionary.031362-6": "請輸入樣式屬性",
165
- "components.AddDictionary.031362-7": "回顯樣式",
165
+ "components.AddDictionary.031362-7": "顯示樣式",
166
166
  "components.AddDictionary.031362-11": "停用",
167
167
  "components.AddDictionary.031362-12": "編輯成功!",
168
168
  "components.AddDictionary.031362-13": "新增成功!",
@@ -173,7 +173,7 @@
173
173
  "DictionarySetting.index.757488-5": "字典鍵值",
174
174
  "ExportComponents.index.921182-0": "資料匯出進度",
175
175
  "ExportComponents.index.921182-1": "正在匯出資料,請耐心等待,請勿關閉視窗…",
176
- "ExportComponents.index.921182-2": "匯出成功,請等待檔案生成",
176
+ "ExportComponents.index.921182-2": "匯出成功,請等待檔案產生",
177
177
  "components.ExtraManageEdit.301828-0": "欄位名稱",
178
178
  "components.ExtraManageEdit.301828-1": "欄位排序",
179
179
  "components.ExtraManageEdit.301828-2": "數字越大越靠前",
@@ -195,9 +195,9 @@
195
195
  "IDCardReader.index.325162-1": "重新讀取",
196
196
  "IDCardReader.index.325162-2": "開始讀取",
197
197
  "IDCardReader.index.325162-3": "正在讀取中,請稍等",
198
- "IDCardReader.index.325162-4": "請勿移動證件或斷開設備",
198
+ "IDCardReader.index.325162-4": "請勿移動證件或中斷裝置連線",
199
199
  "IDCardReader.index.325162-5": "證件類型",
200
- "IDCardReader.index.325162-6": "中國居民身份證",
200
+ "IDCardReader.index.325162-6": "中國居民身分證",
201
201
  "IDCardReader.index.325162-7": "外國人永久居留證",
202
202
  "IDCardReader.index.325162-8": "臺灣居住證",
203
203
  "IDCardReader.index.325162-9": "港澳居住證",
@@ -217,12 +217,12 @@
217
217
  "IDCardReader.index.325162-23": "裝置連線失敗,請檢查裝置或聯絡管理員",
218
218
  "IDCardReader.index.325162-24": "瀏覽器版本過舊,不支援此讀卡機",
219
219
  "IDCardReader.index.325162-25": "讀取成功",
220
- "IDCardReader.index.325162-26": "讀卡器未連接",
220
+ "IDCardReader.index.325162-26": "讀卡機未連接",
221
221
  "ImportFile.index.452353-0": "點選或將檔案拖曳到此處上傳",
222
222
  "ImportFile.index.452353-1": "支援副檔名:{0}",
223
223
  "ImportFile.index.452353-2": "範本下載",
224
224
  "ImportFile.index.452353-3": "匯入檔案",
225
- "ImportFile.index.452353-4": "下載成功,請等待檔案生成",
225
+ "ImportFile.index.452353-4": "下載成功,請等待檔案產生",
226
226
  "ImportFile.index.452353-5": "請先上傳檔案!",
227
227
  "ImportFile.index.452353-6": "上傳成功!",
228
228
  "ImportFile.index.452353-7": "上傳失敗!",
@@ -263,14 +263,14 @@
263
263
  "LinkLibrary.MiniList.891083-6": "確定刪除嗎?",
264
264
  "LinkLibrary.MiniList.891083-7": "刪除成功",
265
265
  "PaySetting.index.371659-0": "{0}付款設定",
266
- "PaySetting.index.371659-1": "啟用的支付",
266
+ "PaySetting.index.371659-1": "已啟用的付款方式",
267
267
  "PaySetting.index.371659-3": "請選擇使用環境",
268
268
  "PaySetting.index.371659-4": "請選擇已啟用的付款設定",
269
269
  "PaySetting.index.371659-5": "請先選擇使用環境",
270
- "PaySetting.index.371659-6": "確認取消新增當前項?",
270
+ "PaySetting.index.371659-6": "確定取消新增此項?",
271
271
  "PaySetting.index.371659-7": "使用環境",
272
272
  "PaySetting.index.371659-8": "付款名稱",
273
- "PaySetting.index.371659-10": "應用棟別",
273
+ "PaySetting.index.371659-10": "適用棟別",
274
274
  "PaySetting.index.371659-11": "請選擇使用環境和付款設定名稱!",
275
275
  "PaySetting.index.371659-12": "新增成功!",
276
276
  "PaySetting.index.371659-15": "刪除成功!",
@@ -280,7 +280,7 @@
280
280
  "PhotoUpload.index.983369-3": "您的瀏覽器不支援此功能,請更換瀏覽器或升級至最新版本",
281
281
  "PreviewImg.index.468831-0": "圖片預覽",
282
282
  "QrcodeModal.index.612016-0": "點選下載",
283
- "QrcodeModal.index.612016-1": "二維碼",
283
+ "QrcodeModal.index.612016-1": "QR Code",
284
284
  "SelectProperty.index.178533-0": "選擇資產",
285
285
  "SelectProperty.index.178533-1": "新增資產",
286
286
  "SelectProperty.index.178533-2": "資產編碼",
@@ -297,7 +297,7 @@
297
297
  "SelectProperty.index.178533-13": "請輸入型號",
298
298
  "SelectProperty.index.178533-16": "共計{0}項",
299
299
  "SelectProperty.index.178533-17": "已選中{0}項",
300
- "SelectProperty.index.178533-18": "設備序號",
300
+ "SelectProperty.index.178533-18": "裝置序號",
301
301
  "TenantComponent.index.898342-0": "可直接輸入名稱搜尋",
302
302
  "UserDetail.index.833219-0": "部門",
303
303
  "UserDetail.index.833219-1": "直屬上級",
@@ -327,7 +327,7 @@
327
327
  "ViewPropertyList.index.954882-2": "資產名稱",
328
328
  "ViewPropertyList.index.954882-3": "品牌",
329
329
  "ViewPropertyList.index.954882-4": "型號",
330
- "ViewPropertyList.index.954882-5": "設備序號",
330
+ "ViewPropertyList.index.954882-5": "裝置序號",
331
331
  "ViewPropertyList.index.954882-6": "購置金額",
332
332
  "ViewPropertyList.index.954882-7": "含稅",
333
333
  "ViewPropertyList.index.954882-8": "元",
@@ -344,7 +344,7 @@
344
344
  "components.ExtraManageEdit.249040-8": "選擇日期類型",
345
345
  "components.ExtraManageEdit.249040-9": "選項內容",
346
346
  "components.ExtraManageEdit.249040-10": "新增選項",
347
- "components.ExtraManageEdit.249040-11": "最多可以選擇的項目數",
347
+ "components.ExtraManageEdit.249040-11": "最多可選的選項數",
348
348
  "components.ExtraManageEdit.249040-12": "最大允許上傳個數",
349
349
  "components.ExtraManageEdit.249040-13": "日期",
350
350
  "components.ExtraManageEdit.249040-14": "日期+時間",
@@ -367,7 +367,7 @@
367
367
  "ExtraManage.index.338036-1": "請輸入欄位名稱",
368
368
  "ExtraManage.index.845270-7": "所屬案場",
369
369
  "modules.ExtraManageEdit.828230-5": "不選擇為通用",
370
- "ExtraFieldsItem.index.243488-0": "點擊或拖拽上傳",
370
+ "ExtraFieldsItem.index.243488-0": "點選或拖曳上傳",
371
371
  "ExtraFieldsItem.index.243488-1": "已超過最大選擇數量",
372
372
  "CustomTable.index.675298-0": "審批流設定",
373
373
  "CustomTable.index.675298-1": "名稱",
@@ -381,12 +381,12 @@
381
381
  "VisitorPage.index.924333-1": "留空則支援所有檔案格式;多個格式請用半形逗號分隔,例如:.doc,.docx,.pdf,.jpg,.jpeg,.png,.xls,.xlsx,.rar,.zip,.gif",
382
382
  "ExtraFieldsItem.index.831918-0": "選擇附件",
383
383
  "ExtraFieldsItem.index.831918-1": "僅支援10MB以內",
384
- "components.ImportResult.699608-0": "導入結果",
385
- "components.ImportResult.699608-1": "導入出錯",
386
- "components.ImportResult.699608-2": "導入成功",
384
+ "components.ImportResult.699608-0": "匯入結果",
385
+ "components.ImportResult.699608-1": "匯入錯誤",
386
+ "components.ImportResult.699608-2": "匯入成功",
387
387
  "components.ImportResult.699608-3": "成功筆數:",
388
388
  "components.ImportResult.699608-4": "失敗筆數:",
389
- "components.ImportResult.699608-5": "下載導入結果",
389
+ "components.ImportResult.699608-5": "下載匯入結果",
390
390
  "village.translate.292926-0": "資料移轉",
391
391
  "village.translate.292926-1": "資料移轉至",
392
392
  "village.translate.292926-2": "選擇公司",
@@ -423,7 +423,7 @@
423
423
  "ApprovalDetail.index.931943-18": "拒絕",
424
424
  "ApprovalDetail.index.931943-19": "催辦",
425
425
  "ApprovalDetail.index.931943-20": "撤銷",
426
- "ApprovalDetail.index.931943-21": "確認撤銷當前審批嗎?",
426
+ "ApprovalDetail.index.931943-21": "確定撤銷目前的審批嗎?",
427
427
  "ApprovalDetail.index.931943-22": "撤銷成功!",
428
428
  "ApprovalDetail.index.931943-23": "催辦成功!",
429
429
  "ApprovalDetail.index.931943-24": "已提交",
@@ -439,7 +439,7 @@
439
439
  "modules.ApprovalSendBack.587880-1": "退回到",
440
440
  "modules.ApprovalSendBack.587880-2": "退回原因",
441
441
  "modules.ApprovalSendBack.587880-3": "請填寫退回原因",
442
- "modules.ApprovalMentionUser.268217-0": "無搜索結果",
442
+ "modules.ApprovalMentionUser.268217-0": "沒有搜尋結果",
443
443
  "modules.ApprovalAddComment.585618-0": "新增評論,可",
444
444
  "modules.ApprovalAddComment.585618-1": "相關人員",
445
445
  "modules.ApprovalAddComment.585618-2": "傳送",
@@ -484,24 +484,24 @@
484
484
  "CustomImport.index.683631-0": "請匯入範本",
485
485
  "CheckedHousingResources.index.885448-0": "房源類型",
486
486
  "CheckedHousingResources.index.885448-1": "經營品牌",
487
- "CheckedHousingResources.index.885448-2": "店鋪名稱",
487
+ "CheckedHousingResources.index.885448-2": "店舖名稱",
488
488
  "CheckedHousingResources.index.074796-0": "選擇品牌",
489
- "BlMobileAnnexUpload.index-0": "查看二維碼",
490
- "BlMobileAnnexUpload.index-1": "手機掃碼上傳",
491
- "QrcodeModal.index.612016-3": "點擊複製",
489
+ "BlMobileAnnexUpload.index-0": "查看 QR Code",
490
+ "BlMobileAnnexUpload.index-1": "使用手機掃碼上傳",
491
+ "QrcodeModal.index.612016-3": "點選複製",
492
492
  "PhotoUpload.index.983369-4": "手機拍照",
493
493
  "modules.ListFieldModal.082665-0": "選項內容不能為空",
494
494
  "CheckedHousingResources.index.863384-0": "單價",
495
495
  "CheckedHousingResources.index.863384-1": "綁定人員",
496
496
  "TenantComponent.index.794262-0": "{0}已被綁定,請勿重複綁定",
497
- "company.user.485542-0": "暫未分配角色",
497
+ "company.user.485542-0": "尚未指派角色",
498
498
  "company.user.485542-1": "團員",
499
499
  "company.user.485542-2": "黨員",
500
500
  "company.user.485542-3": "預備黨員",
501
501
  "company.user.485542-4": "無黨派人士",
502
502
  "company.user.485542-5": "群眾",
503
- "UserDetail.index.833210-0": "無權查看該人員資訊",
504
- "UserDetail.index.833210-1": "發起聊天",
503
+ "UserDetail.index.833210-0": "您沒有權限查看此人員資訊",
504
+ "UserDetail.index.833210-1": "開始聊天",
505
505
  "BlChat.createChatBtn.23456-0": "發起討論",
506
506
  "ColumnSetting.index.875911-0": "儲存為共用設定",
507
507
  "ColumnSetting.index.875911-1": "清單顯示優先順序:個人設定 > 共用範本 > 系統預設",
@@ -509,10 +509,10 @@
509
509
  "villageIotInfo.index.885385-0": "系統內建欄位,無法操作",
510
510
  "ApprovalDetail.index.683625-0": "第三方審批",
511
511
  "ApprovalDetail.index.683625-1": "第三方",
512
- "ApprovalDetail.index.683625-2": "您可以代替目前的使用者完成審批。完成後,頁面會將您顯示為此流程節點的代理人。",
512
+ "ApprovalDetail.index.683625-2": "您可以代替目前的審批人完成審批。完成後,頁面會將您顯示為此流程節點的代理人。",
513
513
  "ApprovalDetail.index.683625-3": "審批需要手寫簽名,但系統尚未記錄您的簽名。首次使用請前往行動裝置完成審批和手寫簽名!",
514
514
  "DepartmentUser.index.555981-0": "清除選項",
515
515
  "DepartmentUser.index.555981-1": "展開",
516
516
  "DepartmentUser.index.555981-2": "收起",
517
- "BlMobileAnnexUpload.index.676543-0": "該二維碼十五分鐘內有效"
517
+ "BlMobileAnnexUpload.index.676543-0": "此 QR Code 於 15 分鐘內有效"
518
518
  }
@@ -58,7 +58,7 @@
58
58
  "BlTextTranslationModal.index.007091-1": "Please enter the default name",
59
59
  "BlTextTranslationModal.index.007091-2": "Please enter {0}",
60
60
  "BlTextTranslationModal.index.007091-3": "Add other language versions",
61
- "BlTextTranslationModal.index.007091-4": "This field uses the current language. If its translation is empty, the default name is shown.",
61
+ "BlTextTranslationModal.index.007091-4": "In the admin portal or user app, this field uses the current language. If its translation is empty, the default name is shown.",
62
62
  "CheckedHousingResources.index.396661-0": "{0} name",
63
63
  "CheckedHousingResources.index.396661-1": "Rental area",
64
64
  "CheckedHousingResources.index.396661-2": "Total area",
@@ -134,7 +134,7 @@
134
134
  "CustomImport.index.951685-4": "Import error",
135
135
  "CustomImport.index.951685-5": "Number of errors: {0}",
136
136
  "CustomImport.index.951685-6": "Download the result file to find import errors",
137
- "CustomImport.index.951685-7": "Download document",
137
+ "CustomImport.index.951685-7": "Download file",
138
138
  "CustomImport.index.951685-8": "Back",
139
139
  "CustomImport.index.951685-9": "Imported",
140
140
  "DepartmentPositionForm.index.147974-0": "Please select staff",
@@ -194,7 +194,7 @@
194
194
  "IDCardReader.index.325162-0": "ID reader",
195
195
  "IDCardReader.index.325162-1": "Read again",
196
196
  "IDCardReader.index.325162-2": "Start reading",
197
- "IDCardReader.index.325162-3": "Reading in progress, please wait",
197
+ "IDCardReader.index.325162-3": "Reading...",
198
198
  "IDCardReader.index.325162-4": "Do not move the ID or disconnect the reader",
199
199
  "IDCardReader.index.325162-5": "ID type",
200
200
  "IDCardReader.index.325162-6": "Chinese Resident Identity Card",
@@ -216,7 +216,7 @@
216
216
  "IDCardReader.index.325162-22": "Reader connected. Click the button above to read the ID",
217
217
  "IDCardReader.index.325162-23": "Connection failed. Check the reader or contact an administrator",
218
218
  "IDCardReader.index.325162-24": "Your browser is too old to support this card reader",
219
- "IDCardReader.index.325162-25": "ID read successfully",
219
+ "IDCardReader.index.325162-25": "ID read",
220
220
  "IDCardReader.index.325162-26": "Card reader not connected",
221
221
  "ImportFile.index.452353-0": "Click or drag the file here to upload",
222
222
  "ImportFile.index.452353-1": "Supported extensions: {0}",
@@ -309,7 +309,7 @@
309
309
  "ViewEnergyList.index.921424-1": "To bind another meter, add it in the relevant meter app and bind it to a room.",
310
310
  "ViewEnergyList.index.921424-3": "Read meter",
311
311
  "ViewEnergyList.index.921424-4": "Meter reading",
312
- "ViewEnergyList.index.921424-6": "Are you sure to reset this {0}?",
312
+ "ViewEnergyList.index.921424-6": "Reset this {0}?",
313
313
  "ViewEnergyList.index.921424-8": "Reminder",
314
314
  "ViewEnergyList.index.921424-9": "No utility price standard is linked. Add one for this location before reading the meter",
315
315
  "ViewEnergyList.index.921424-10": "Got it",
@@ -487,7 +487,7 @@
487
487
  "CheckedHousingResources.index.885448-2": "Shop name",
488
488
  "CheckedHousingResources.index.074796-0": "Select brand",
489
489
  "BlMobileAnnexUpload.index-0": "View QR code",
490
- "BlMobileAnnexUpload.index-1": "Scan to upload via mobile",
490
+ "BlMobileAnnexUpload.index-1": "Scan with your phone to upload",
491
491
  "QrcodeModal.index.612016-3": "Copy",
492
492
  "PhotoUpload.index.983369-4": "Take photo with phone",
493
493
  "modules.ListFieldModal.082665-0": "Option content is required",
@@ -509,7 +509,7 @@
509
509
  "villageIotInfo.index.885385-0": "Built-in system field. It cannot be changed",
510
510
  "ApprovalDetail.index.683625-0": "Third-party approval",
511
511
  "ApprovalDetail.index.683625-1": "Third-party",
512
- "ApprovalDetail.index.683625-2": "You can approve for the current user. You will be shown as the delegate for this step.",
512
+ "ApprovalDetail.index.683625-2": "You can approve on behalf of the current approver. You will be shown as the delegate for this step.",
513
513
  "ApprovalDetail.index.683625-3": "A handwritten signature is required. Use the mobile app for your first approval to save your signature.",
514
514
  "DepartmentUser.index.555981-0": "Clear selection",
515
515
  "DepartmentUser.index.555981-1": "Expand",