cloud-web-corejs 1.0.54-dev.525 → 1.0.54-dev.527
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 +1 -1
- package/src/components/fileLibrary/index.vue +5 -0
- package/src/components/xform/form-designer/form-widget/dialog/searchFormDialog.vue +3 -2
- package/src/components/xform/form-render/indexMixin.js +1 -3495
- package/src/components/xform/utils/formula-util copy 2.js +945 -0
- package/src/components/xform/utils/formula-util copy.js +860 -0
- package/src/utils/request.js +1 -1
- package/src/views/user/company_info/dialog.vue +80 -49
- package/src/views/user/user/edit.vue +687 -456
- package/src/components/xform/form-render/indexMixin copy.js +0 -3462
package/package.json
CHANGED
|
@@ -776,6 +776,11 @@
|
|
|
776
776
|
>
|
|
777
777
|
<el-input v-model="editCategory.fileName" clearable class="all-width" />
|
|
778
778
|
</el-form-item>
|
|
779
|
+
<el-form-item
|
|
780
|
+
:label="$t1('关联编码')"
|
|
781
|
+
>
|
|
782
|
+
<el-input v-model="editCategory.relationCode" clearable class="all-width" />
|
|
783
|
+
</el-form-item>
|
|
779
784
|
</el-form>
|
|
780
785
|
</div>
|
|
781
786
|
<span slot="footer" class="dialog-footer">
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
:dataTableOption="dataTableOption"
|
|
23
23
|
v-bind="formConfig"
|
|
24
24
|
:param="dialogParam"
|
|
25
|
-
class="data-table_height"
|
|
25
|
+
class="data-table_height labMargin"
|
|
26
26
|
/>
|
|
27
27
|
</div>
|
|
28
28
|
<label id="labBtn" class="transverse">
|
|
@@ -463,7 +463,7 @@ export default {
|
|
|
463
463
|
};
|
|
464
464
|
</script>
|
|
465
465
|
|
|
466
|
-
<style scoped>
|
|
466
|
+
<style scoped lang="scss">
|
|
467
467
|
::v-deep .H5 .h5-fixed-bottom-btns {
|
|
468
468
|
bottom: 95px;
|
|
469
469
|
}
|
|
@@ -518,6 +518,7 @@ export default {
|
|
|
518
518
|
}
|
|
519
519
|
}
|
|
520
520
|
}
|
|
521
|
+
::v-deep .labMargin .tree-container{ display: flex;}
|
|
521
522
|
/* ::v-deep .tree-container #labBtn {
|
|
522
523
|
background-color: #f4f6fa;
|
|
523
524
|
position: relative;
|