jobdone-shared-files 1.0.49 → 1.0.51
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/ModuleInfo/LayoutNav.vue +251 -251
- package/ModuleInfo/logo-with-text.svg +22 -22
- package/ModuleInfo/navButton.vue +218 -218
- package/ProjectManagement/projectNavbar.vue +363 -363
- package/ProjectManagement/projectNavbarV2.vue +2 -2
- package/README.md +1 -0
- package/autocompleteSelect.vue +487 -465
- package/common/directives/collapse.js +12 -12
- package/common/directives/popovers.js +10 -10
- package/common/directives/selectPlaceholder.js +52 -52
- package/common/directives/textareaAutoHeight.js +10 -10
- package/common/directives/tooltip.js +10 -10
- package/common/format.js +26 -26
- package/index.js +14 -14
- package/lightboxWithOverview.vue +156 -156
- package/package.json +19 -19
- package/paginate.vue +141 -141
- package/style/css/vue-loading-overlay/index.css +40 -40
- package/style/scss/Common/Animation.scss +9 -9
- package/style/scss/Common/SelectableTable.scss +36 -36
- package/style/scss/Common/Tree.scss +281 -281
- package/style/scss/Common/filepond.scss +31 -31
- package/style/scss/Common/thumbnail-group.scss +14 -14
- package/style/scss/Layout/LayoutBase.scss +1032 -1032
- package/style/scss/Layout/LayoutInnerColumn.scss +263 -263
- package/style/scss/Layout/LayoutProject.scss +126 -126
- package/style/scss/Layout/LayoutSinglePage.scss +17 -17
- package/style/scss/Layout/LayoutTwoColumn.scss +60 -60
- package/style/scss/Settings/_Mixins.scss +232 -232
- package/style/scss/Settings/_MobileVariables.scss +11 -11
- package/style/scss/Settings/_bs-variables-dark.scss +70 -70
- package/style/scss/Settings/_bs-variables.scss +1743 -1743
- package/style/scss/Settings/_color-mode.scss +122 -122
- package/style/scss/Settings/_custom-variables.scss +10 -10
- package/tagEditor.vue +249 -249
- package/tree.vue +71 -71
- package/treeItem.vue +358 -358
- package/treeItemV2.vue +78 -78
- package/treeV2.vue +71 -71
- package/vueLoadingOverlay.vue +74 -74
|
@@ -101,11 +101,11 @@
|
|
|
101
101
|
<b class="me-2">案號</b>
|
|
102
102
|
<span>{{projectInfo?.caseNo}}</span>
|
|
103
103
|
</small>
|
|
104
|
-
<small class="d-flex me-4">
|
|
104
|
+
<small class="d-flex me-4" v-if="rojectInfo?.beginDT && projectInfo?.endDT">
|
|
105
105
|
<b class="me-2">開工/完工日期</b>
|
|
106
106
|
<span>{{formatDate(projectInfo?.beginDT)}} - {{formatDate(projectInfo?.endDT)}}</span>
|
|
107
107
|
</small>
|
|
108
|
-
<small class="d-flex me-4">
|
|
108
|
+
<small class="d-flex me-4" v-if="projectInfo?.approvedWorkingPeriod">
|
|
109
109
|
<b class="me-2">核定工期</b>
|
|
110
110
|
<span>{{projectInfo?.approvedWorkingPeriod}}天</span>
|
|
111
111
|
</small>
|
package/README.md
CHANGED
|
@@ -359,6 +359,7 @@ import OOXX from '../../node_modules/jobdone-shared-files/OOXX.vue';
|
|
|
359
359
|
| 5 | `search-placeholder` | `String` | `''` | 自定義搜尋框的提示文字。如未設定,有選擇內容時會將選擇的內容當成提示文字,而未選擇時則顯示placeholder(參數2)的值 |
|
|
360
360
|
| 6 | `trigger-class` | `String` | `''` | 預覽框與輸入框的樣式CLASS,可用於驗證提示 |
|
|
361
361
|
| 7 | `list-put` | `String`| `'body'` | 列表Dom放置位置 |
|
|
362
|
+
| 8 | `is-unselected-extend-value` | `Array`| `[]` | 如未設定 `null` `undefined` `0` `''` 辯視為未選擇內容 |
|
|
362
363
|
|
|
363
364
|
### 清除按鈕參數
|
|
364
365
|
| # | 參數 Attribute | 型別 Type | 預設值 Default | 選項 Option | 說明 Description |
|