vue2-client 1.5.25 → 1.6.0
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/CHANGELOG.md +5 -0
- package/package.json +1 -1
- package/src/base-client/components/common/CreateQuery/CreateQuery.vue +7 -2
- package/src/base-client/components/common/XAddForm/XAddForm.vue +328 -324
- package/src/base-client/components/common/XForm/XForm.vue +190 -194
- package/src/base-client/components/common/XForm/XFormItem.vue +2 -3
- package/src/base-client/components/common/XFormTable/XFormTable.vue +289 -333
- package/src/base-client/components/common/XFormTable/index.md +105 -97
- package/src/base-client/components/common/XImportExcel/XImportExcel.vue +132 -131
- package/src/base-client/components/common/XTable/XTable.vue +505 -505
- package/src/base-client/components/system/DictionaryDetailsView/DictionaryDetailsView.vue +229 -231
- package/src/pages/system/dictionary/index.vue +7 -4
- package/src/pages/system/monitor/loginInfor/index.vue +7 -4
- package/src/pages/system/monitor/operLog/index.vue +8 -6
- package/src/pages/system/queryParams/index.vue +7 -4
- package/src/pages/system/ticket/index.vue +453 -450
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -219,8 +219,7 @@
|
|
|
219
219
|
</a-button>
|
|
220
220
|
</template>
|
|
221
221
|
<x-form-table
|
|
222
|
-
|
|
223
|
-
:view-mode="true">
|
|
222
|
+
ref="XFormTable">
|
|
224
223
|
</x-form-table>
|
|
225
224
|
</a-modal>
|
|
226
225
|
</a-drawer>
|
|
@@ -591,6 +590,12 @@ export default {
|
|
|
591
590
|
this.$refs.businessCreateForm.validate(valid => {
|
|
592
591
|
if (valid) {
|
|
593
592
|
this.viewHandle(() => {
|
|
593
|
+
this.$nextTick(() => {
|
|
594
|
+
this.$refs.XFormTable.init({
|
|
595
|
+
queryParamsJson: this.result,
|
|
596
|
+
viewMode: true
|
|
597
|
+
})
|
|
598
|
+
})
|
|
594
599
|
this.modelVisible = true
|
|
595
600
|
})
|
|
596
601
|
}
|