super-page-designer 2.0.54 → 2.0.58
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/dist/es/components/design/utils/assemblys-config.js +40 -29
- package/dist/es/components/design/views/assemblys/common/common-variable-bind.vue.js +2 -2
- package/dist/es/components/design/views/assemblys/common/common-variable-bind.vue2.js +702 -1
- package/dist/es/components/design/views/assemblys/common/common-variable-bind.vue3.js +1 -702
- package/dist/es/components/design/views/assemblys/data/component/column-config.vue.js +6 -0
- package/dist/es/components/design/views/assemblys/data/component/table-children-column.vue.js +2 -2
- package/dist/es/components/design/views/assemblys/data/table/table-attr-base.vue.js +1 -1
- package/dist/es/components/design/views/assemblys/data/table/table-design.vue.js +1 -1
- package/dist/es/components/design/views/assemblys/data/table/table-design.vue2.js +7 -2
- package/dist/es/components/design/views/assemblys/data/table/tablecolumn-attr-base.vue.js +2 -0
- package/dist/es/components/design/views/assemblys/form/common/data-format.vue.js +1 -1
- package/dist/es/components/design/views/assemblys/form/dept-tree/depttree-attr-base.vue.js +10 -5
- package/dist/es/components/design/views/assemblys/form/dept-tree/depttree-design.vue2.js +8 -4
- package/dist/es/style.css +89 -89
- package/package.json +5 -5
|
@@ -233,7 +233,8 @@ function getTableColumnConf(fieldInfo) {
|
|
|
233
233
|
displayOrder: fieldInfo ? fieldInfo.displayOrder : 1,
|
|
234
234
|
sortable: true,
|
|
235
235
|
alignTittle: "center",
|
|
236
|
-
alignContent: "center"
|
|
236
|
+
alignContent: "center",
|
|
237
|
+
listColumnFixed: "false"
|
|
237
238
|
},
|
|
238
239
|
size: {},
|
|
239
240
|
editLine: { plugType: "" },
|
|
@@ -2584,34 +2585,44 @@ const standardButtonOperations = [
|
|
|
2584
2585
|
{
|
|
2585
2586
|
label: "列表功能",
|
|
2586
2587
|
type: "list",
|
|
2587
|
-
options: [
|
|
2588
|
-
|
|
2589
|
-
|
|
2590
|
-
|
|
2591
|
-
|
|
2592
|
-
|
|
2593
|
-
|
|
2594
|
-
|
|
2595
|
-
|
|
2596
|
-
|
|
2597
|
-
|
|
2598
|
-
|
|
2599
|
-
|
|
2600
|
-
|
|
2601
|
-
|
|
2602
|
-
|
|
2603
|
-
|
|
2604
|
-
|
|
2605
|
-
|
|
2606
|
-
|
|
2607
|
-
|
|
2608
|
-
|
|
2609
|
-
|
|
2610
|
-
|
|
2611
|
-
|
|
2612
|
-
|
|
2613
|
-
|
|
2614
|
-
|
|
2588
|
+
options: [
|
|
2589
|
+
// {
|
|
2590
|
+
// label: '暂存',
|
|
2591
|
+
// value: 'saveList'
|
|
2592
|
+
// },
|
|
2593
|
+
{
|
|
2594
|
+
label: "删除",
|
|
2595
|
+
value: "delete"
|
|
2596
|
+
},
|
|
2597
|
+
{
|
|
2598
|
+
label: "提交",
|
|
2599
|
+
value: "submitList"
|
|
2600
|
+
},
|
|
2601
|
+
{
|
|
2602
|
+
label: "同意",
|
|
2603
|
+
value: "agreeList"
|
|
2604
|
+
},
|
|
2605
|
+
{
|
|
2606
|
+
label: "不同意",
|
|
2607
|
+
value: "disagreeList"
|
|
2608
|
+
},
|
|
2609
|
+
{
|
|
2610
|
+
label: "下载导入模板",
|
|
2611
|
+
value: "downloadTemplate"
|
|
2612
|
+
},
|
|
2613
|
+
{
|
|
2614
|
+
label: "导入",
|
|
2615
|
+
value: "import"
|
|
2616
|
+
},
|
|
2617
|
+
{
|
|
2618
|
+
label: "导出",
|
|
2619
|
+
value: "export"
|
|
2620
|
+
},
|
|
2621
|
+
{
|
|
2622
|
+
label: "查询",
|
|
2623
|
+
value: "search"
|
|
2624
|
+
}
|
|
2625
|
+
]
|
|
2615
2626
|
},
|
|
2616
2627
|
{
|
|
2617
2628
|
label: "列表行编辑功能",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import _sfc_main from "./common-variable-bind.
|
|
2
|
-
import "./common-variable-bind.
|
|
1
|
+
import _sfc_main from "./common-variable-bind.vue2.js";
|
|
2
|
+
import "./common-variable-bind.vue3.js";
|
|
3
3
|
import _export_sfc from "../../../../../_virtual/_plugin-vue_export-helper.js";
|
|
4
4
|
const BindVariable = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-48d27f9e"]]);
|
|
5
5
|
export {
|