worsoft-frontend-codegen-local-mcp 0.1.25 → 0.1.26
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/assets/templates/single_table_dialog/index.tpl +44 -33
- package/mcp_server.js +1833 -1834
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="layout-padding">
|
|
3
3
|
<!-- 功能名称:{{FEATURE_TITLE}} -->
|
|
4
|
-
<
|
|
4
|
+
<el-container class="layout-padding-auto layout-padding-view dict-page-body">
|
|
5
5
|
<el-row>
|
|
6
6
|
<div class="mb8" style="width: 100%">
|
|
7
7
|
<el-button icon="folder-add" type="primary" class="ml10" v-auth="'{{PERMISSION_PREFIX}}_add'" @click="formDialogRef.openDialog()">{{ t('common.addBtn') }}</el-button>
|
|
@@ -11,40 +11,45 @@
|
|
|
11
11
|
</div>
|
|
12
12
|
</el-row>
|
|
13
13
|
|
|
14
|
-
<el-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
<el-table-column type="index" :label="t('common.serial')" width="60" />
|
|
25
|
-
<el-table-column
|
|
26
|
-
v-for="column in visibleTableColumns"
|
|
27
|
-
:key="column.prop"
|
|
28
|
-
:prop="column.prop"
|
|
29
|
-
:label="resolveLabel(column.labelKey, column.fallbackLabel)"
|
|
30
|
-
:min-width="column.width"
|
|
31
|
-
show-overflow-tooltip
|
|
14
|
+
<el-main style="padding: 0; min-height: 0;">
|
|
15
|
+
<el-table
|
|
16
|
+
:data="state.dataList"
|
|
17
|
+
v-loading="state.loading"
|
|
18
|
+
border
|
|
19
|
+
height="100%"
|
|
20
|
+
:cell-style="tableStyle.cellStyle"
|
|
21
|
+
:header-cell-style="tableStyle.headerCellStyle"
|
|
22
|
+
@selection-change="selectionChangeHandle"
|
|
23
|
+
@sort-change="sortChangeHandle"
|
|
32
24
|
>
|
|
33
|
-
<
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
25
|
+
<el-table-column type="selection" width="40" align="center" />
|
|
26
|
+
<el-table-column type="index" :label="t('common.serial')" width="60" />
|
|
27
|
+
<el-table-column
|
|
28
|
+
v-for="column in visibleTableColumns"
|
|
29
|
+
:key="column.prop"
|
|
30
|
+
:prop="column.prop"
|
|
31
|
+
:label="resolveLabel(column.labelKey, column.fallbackLabel)"
|
|
32
|
+
:min-width="column.width"
|
|
33
|
+
show-overflow-tooltip
|
|
34
|
+
>
|
|
35
|
+
<template #default="scope">
|
|
36
|
+
<dict-tag v-if="column.dictType" :options="getDictOptions(column.dictType)" :value="scope.row[column.prop]" />
|
|
37
|
+
<span v-else>{{ scope.row[column.prop] }}</span>
|
|
38
|
+
</template>
|
|
39
|
+
</el-table-column>
|
|
40
|
+
<el-table-column :label="t('common.action')" width="180">
|
|
41
|
+
<template #default="scope">
|
|
42
|
+
<el-button icon="edit-pen" text type="primary" v-auth="'{{PERMISSION_PREFIX}}_edit'" @click="formDialogRef.openDialog(scope.row.{{PK_ATTR}})">{{ t('common.editBtn') }}</el-button>
|
|
43
|
+
<el-button icon="delete" text type="primary" v-auth="'{{PERMISSION_PREFIX}}_del'" @click="handleDelete([scope.row.{{PK_ATTR}}])">{{ t('common.delBtn') }}</el-button>
|
|
44
|
+
</template>
|
|
45
|
+
</el-table-column>
|
|
46
|
+
</el-table>
|
|
47
|
+
</el-main>
|
|
45
48
|
|
|
46
|
-
<
|
|
47
|
-
|
|
49
|
+
<el-footer style="height: auto; padding: 10px 0 0 0; flex-shrink: 0;">
|
|
50
|
+
<pagination @size-change="sizeChangeHandle" @current-change="currentChangeHandle" v-bind="state.pagination" />
|
|
51
|
+
</el-footer>
|
|
52
|
+
</el-container>
|
|
48
53
|
|
|
49
54
|
<form-dialog ref="formDialogRef" @refresh="getDataList(false)" />
|
|
50
55
|
<upload-excel ref="excelUploadRef" :title="t('common.importBtn')" url="/{{API_PATH}}/import" temp-url="/admin/sys-file/local/file/{{FUNCTION_NAME}}.xlsx" @refreshDataList="getDataList" />
|
|
@@ -109,3 +114,9 @@ const handleDelete = async (ids: string[]) => {
|
|
|
109
114
|
}
|
|
110
115
|
};
|
|
111
116
|
</script>
|
|
117
|
+
|
|
118
|
+
<style scoped>
|
|
119
|
+
.dict-page-body {
|
|
120
|
+
min-height: calc(100vh - 140px);
|
|
121
|
+
}
|
|
122
|
+
</style>
|