├── .babelrc ├── .bk.development.env ├── .bk.env ├── .bk.production.env ├── .browserslistrc ├── .eslintignore ├── .eslintrc.js ├── .github └── ISSUE_TEMPLATE │ ├── -----.md │ └── ---bug-.md ├── .gitignore ├── .npmignore ├── LICENSE.txt ├── Procfile ├── bin ├── post-compile └── pre-compile ├── bk.config.js ├── bkcodeai.json ├── config.json ├── docs ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md ├── develop │ ├── demo_com │ │ └── x-script │ │ │ ├── components │ │ │ ├── button │ │ │ │ ├── button.css │ │ │ │ ├── button.vue │ │ │ │ ├── create-button-hover.css │ │ │ │ └── create-button.css │ │ │ ├── css │ │ │ │ ├── ellipsis.css │ │ │ │ ├── scroller.css │ │ │ │ ├── spinner.svg │ │ │ │ └── variable.css │ │ │ ├── loading │ │ │ │ ├── directive.js │ │ │ │ ├── index.js │ │ │ │ ├── loading.css │ │ │ │ ├── loading.js │ │ │ │ └── loading.vue │ │ │ ├── mixins │ │ │ │ ├── emitter.js │ │ │ │ └── z-index.js │ │ │ ├── popover │ │ │ │ ├── index.js │ │ │ │ ├── popover.css │ │ │ │ └── popover.vue │ │ │ ├── select │ │ │ │ ├── option-all.vue │ │ │ │ ├── option-group.vue │ │ │ │ ├── option.vue │ │ │ │ ├── select.css │ │ │ │ └── select.vue │ │ │ └── utils │ │ │ │ ├── dom.js │ │ │ │ ├── pop-manager.js │ │ │ │ ├── tippy │ │ │ │ ├── index.js │ │ │ │ └── popper.js │ │ │ │ └── z-index-manager.js │ │ │ ├── config.js │ │ │ ├── index.js │ │ │ ├── index.vue │ │ │ └── package.json │ ├── dev_com.md │ └── release_com.md ├── install │ ├── conf.md │ ├── database.md │ ├── dev_install.md │ └── prod_install.md └── resource │ └── img │ └── directory_structure.png ├── forever.json ├── lib ├── client │ ├── index.html │ ├── preview.html │ ├── src │ │ ├── App.vue │ │ ├── api │ │ │ ├── cached-promise.js │ │ │ ├── index.js │ │ │ ├── pureAxios.js │ │ │ ├── request-error.js │ │ │ └── request-queue.js │ │ ├── bk-icon │ │ │ ├── demo.html │ │ │ ├── fonts │ │ │ │ ├── iconcool.eot │ │ │ │ ├── iconcool.svg │ │ │ │ ├── iconcool.ttf │ │ │ │ └── iconcool.woff │ │ │ ├── iconcool.js │ │ │ ├── iconcool.json │ │ │ └── style.css │ │ ├── common │ │ │ ├── ai.js │ │ │ ├── auth.js │ │ │ ├── bkmagic.js │ │ │ ├── bkui-vue-complex.js │ │ │ ├── bus.js │ │ │ ├── chart-color-sets.js │ │ │ ├── component-installer.js │ │ │ ├── constant-en.js │ │ │ ├── constant.js │ │ │ ├── dayjs.js │ │ │ ├── defaultUnit.mixin.js │ │ │ ├── demand-import.js │ │ │ ├── dom.js │ │ │ ├── drag-line.js │ │ │ ├── drag.js │ │ │ ├── element.js │ │ │ ├── fully-import.js │ │ │ ├── http-vue-loader.js │ │ │ ├── json-safe-stringify.js │ │ │ ├── leave-confirm.js │ │ │ ├── parse-function-var.js │ │ │ ├── preload.js │ │ │ ├── targetData.js │ │ │ ├── use-ajax-upload.js │ │ │ ├── use-resource-lock.js │ │ │ ├── util.js │ │ │ ├── vant.js │ │ │ └── watcher.js │ │ ├── components │ │ │ ├── api │ │ │ │ ├── choose-api.vue │ │ │ │ ├── common │ │ │ │ │ ├── scheme-header.tsx │ │ │ │ │ ├── scheme-tab.vue │ │ │ │ │ ├── scheme.css │ │ │ │ │ ├── single-scheme.tsx │ │ │ │ │ └── validate.vue │ │ │ │ ├── create-api-sideslider │ │ │ │ │ ├── basic.vue │ │ │ │ │ ├── header.vue │ │ │ │ │ ├── index.vue │ │ │ │ │ ├── param.vue │ │ │ │ │ ├── response.vue │ │ │ │ │ └── use-form.ts │ │ │ │ ├── edit-scheme │ │ │ │ │ ├── get.vue │ │ │ │ │ ├── header.vue │ │ │ │ │ ├── post.vue │ │ │ │ │ └── response.vue │ │ │ │ ├── use-body-param.vue │ │ │ │ ├── use-query-param.vue │ │ │ │ └── use-scheme │ │ │ │ │ ├── get.vue │ │ │ │ │ ├── header.vue │ │ │ │ │ ├── post.vue │ │ │ │ │ └── response.vue │ │ │ ├── app-header.vue │ │ │ ├── apply-permission │ │ │ │ ├── apply-dialog.vue │ │ │ │ ├── apply-page.vue │ │ │ │ └── ask-permission.vue │ │ │ ├── auth │ │ │ │ ├── button.vue │ │ │ │ ├── component.js │ │ │ │ ├── router-link.vue │ │ │ │ └── style.css │ │ │ ├── changelog-version │ │ │ │ ├── changelog-data.js │ │ │ │ └── index.vue │ │ │ ├── choose-data-table.vue │ │ │ ├── code-viewer │ │ │ │ └── index.vue │ │ │ ├── copy-icon.js │ │ │ ├── dynamic-tag.vue │ │ │ ├── edit-object.vue │ │ │ ├── exception │ │ │ │ └── index.vue │ │ │ ├── field-table │ │ │ │ ├── field-table.css │ │ │ │ └── field-table.tsx │ │ │ ├── filelib │ │ │ │ ├── file-icon.vue │ │ │ │ ├── helper.ts │ │ │ │ ├── list-card.vue │ │ │ │ ├── list-table.vue │ │ │ │ ├── upload.vue │ │ │ │ ├── use-upload-handler.js │ │ │ │ └── use-upload-list.js │ │ │ ├── flow-form-comp │ │ │ │ ├── common │ │ │ │ │ ├── field.js │ │ │ │ │ └── query-str-search-mixin.js │ │ │ │ ├── components │ │ │ │ │ ├── custom-buttons.vue │ │ │ │ │ ├── filters.vue │ │ │ │ │ ├── float-workbench-block.vue │ │ │ │ │ ├── flow-data.vue │ │ │ │ │ ├── form-data.vue │ │ │ │ │ ├── node.vue │ │ │ │ │ ├── search-tag.vue │ │ │ │ │ ├── table-cell-actions.vue │ │ │ │ │ ├── table-cell-detail.vue │ │ │ │ │ ├── table-cell-value.vue │ │ │ │ │ ├── table-fields.vue │ │ │ │ │ ├── table-view.vue │ │ │ │ │ └── ticket-list.vue │ │ │ │ ├── data-manage.vue │ │ │ │ ├── form │ │ │ │ │ ├── components │ │ │ │ │ │ ├── memberSelect.vue │ │ │ │ │ │ └── richTextEditor.vue │ │ │ │ │ ├── condition-mixins.js │ │ │ │ │ ├── constants │ │ │ │ │ │ └── forms.js │ │ │ │ │ ├── dataSourceMixins.js │ │ │ │ │ ├── fieldItem.vue │ │ │ │ │ ├── fields │ │ │ │ │ │ ├── autoNumber.vue │ │ │ │ │ │ ├── checkbox.vue │ │ │ │ │ │ ├── compute.vue │ │ │ │ │ │ ├── customForm.vue │ │ │ │ │ │ ├── customTable.vue │ │ │ │ │ │ ├── date.vue │ │ │ │ │ │ ├── datetime.vue │ │ │ │ │ │ ├── description.vue │ │ │ │ │ │ ├── divider.vue │ │ │ │ │ │ ├── formula.vue │ │ │ │ │ │ ├── imageFile.vue │ │ │ │ │ │ ├── input.vue │ │ │ │ │ │ ├── inputSelect.vue │ │ │ │ │ │ ├── int.vue │ │ │ │ │ │ ├── link.vue │ │ │ │ │ │ ├── member.vue │ │ │ │ │ │ ├── members.vue │ │ │ │ │ │ ├── multiSelect.vue │ │ │ │ │ │ ├── radio.vue │ │ │ │ │ │ ├── rate.vue │ │ │ │ │ │ ├── richText.vue │ │ │ │ │ │ ├── select.vue │ │ │ │ │ │ ├── serial.vue │ │ │ │ │ │ ├── table.vue │ │ │ │ │ │ ├── textarea.vue │ │ │ │ │ │ ├── tree.vue │ │ │ │ │ │ └── upload.vue │ │ │ │ │ ├── index.vue │ │ │ │ │ └── util │ │ │ │ │ │ └── index.js │ │ │ │ └── process-form.vue │ │ │ ├── flow │ │ │ │ ├── constants │ │ │ │ │ ├── nodes.js │ │ │ │ │ └── processor.js │ │ │ │ ├── flow-canvas │ │ │ │ │ ├── flow.js │ │ │ │ │ ├── index.vue │ │ │ │ │ ├── lineCondition.vue │ │ │ │ │ ├── lineConfig.vue │ │ │ │ │ ├── nodeTemplate.vue │ │ │ │ │ ├── palettePanel.vue │ │ │ │ │ └── toolPanel.vue │ │ │ │ └── nodeConfig │ │ │ │ │ ├── components │ │ │ │ │ ├── condition-group.vue │ │ │ │ │ ├── end-condition.vue │ │ │ │ │ ├── form-section.vue │ │ │ │ │ ├── node-actions.vue │ │ │ │ │ └── processors.vue │ │ │ │ │ ├── index.vue │ │ │ │ │ └── nodes │ │ │ │ │ ├── api-node │ │ │ │ │ ├── body-params.vue │ │ │ │ │ ├── debug-api.vue │ │ │ │ │ ├── headers-config.vue │ │ │ │ │ ├── index.vue │ │ │ │ │ ├── query-params.vue │ │ │ │ │ ├── render-param-slot.css │ │ │ │ │ ├── render-param-slot.tsx │ │ │ │ │ ├── response-variable.vue │ │ │ │ │ ├── variable-input-slot.css │ │ │ │ │ ├── variable-input-slot.tsx │ │ │ │ │ └── view-flow-variables.vue │ │ │ │ │ ├── approval-node.vue │ │ │ │ │ ├── data-process-node.vue │ │ │ │ │ └── normal-node │ │ │ │ │ ├── index.vue │ │ │ │ │ └── node-form-setting │ │ │ │ │ ├── breadcrumb-nav.vue │ │ │ │ │ ├── edit-form-panel.vue │ │ │ │ │ ├── index.vue │ │ │ │ │ ├── preview-form-dialog.vue │ │ │ │ │ └── select-form-dialog.vue │ │ │ ├── framework-tag.vue │ │ │ ├── help-doc-detail │ │ │ │ ├── docs-menu.js │ │ │ │ ├── docs │ │ │ │ │ ├── en │ │ │ │ │ │ ├── api.md │ │ │ │ │ │ ├── canvas.md │ │ │ │ │ │ ├── case-table-search.md │ │ │ │ │ │ ├── container.md │ │ │ │ │ │ ├── courses.md │ │ │ │ │ │ ├── custom.md │ │ │ │ │ │ ├── data-manage.md │ │ │ │ │ │ ├── data-operation.md │ │ │ │ │ │ ├── develop.md │ │ │ │ │ │ ├── directive.md │ │ │ │ │ │ ├── file-manage.md │ │ │ │ │ │ ├── form-data-container.md │ │ │ │ │ │ ├── function-using.md │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── interactive.md │ │ │ │ │ │ ├── intro.md │ │ │ │ │ │ ├── layout.md │ │ │ │ │ │ ├── method.md │ │ │ │ │ │ ├── mobile-page.md │ │ │ │ │ │ ├── page-manage.md │ │ │ │ │ │ ├── page-template-manage.md │ │ │ │ │ │ ├── release.md │ │ │ │ │ │ ├── route-manage.md │ │ │ │ │ │ ├── start.md │ │ │ │ │ │ ├── template-page.md │ │ │ │ │ │ ├── template-project.md │ │ │ │ │ │ ├── variable-using.md │ │ │ │ │ │ ├── variable.md │ │ │ │ │ │ └── version.md │ │ │ │ │ ├── index.js │ │ │ │ │ └── zh │ │ │ │ │ │ ├── api.md │ │ │ │ │ │ ├── canvas.md │ │ │ │ │ │ ├── case-table-search.md │ │ │ │ │ │ ├── container.md │ │ │ │ │ │ ├── courses.md │ │ │ │ │ │ ├── custom.md │ │ │ │ │ │ ├── data-manage.md │ │ │ │ │ │ ├── data-operation.md │ │ │ │ │ │ ├── develop.md │ │ │ │ │ │ ├── directive.md │ │ │ │ │ │ ├── file-manage.md │ │ │ │ │ │ ├── form-data-container.md │ │ │ │ │ │ ├── function-using.md │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── interactive.md │ │ │ │ │ │ ├── intro.md │ │ │ │ │ │ ├── layout.md │ │ │ │ │ │ ├── method.md │ │ │ │ │ │ ├── mobile-page.md │ │ │ │ │ │ ├── page-manage.md │ │ │ │ │ │ ├── page-template-manage.md │ │ │ │ │ │ ├── release.md │ │ │ │ │ │ ├── route-manage.md │ │ │ │ │ │ ├── start.md │ │ │ │ │ │ ├── template-page.md │ │ │ │ │ │ ├── template-project.md │ │ │ │ │ │ ├── variable-using.md │ │ │ │ │ │ ├── variable.md │ │ │ │ │ │ └── version.md │ │ │ │ ├── index.css │ │ │ │ └── index.vue │ │ │ ├── help-docs.vue │ │ │ ├── lc-form │ │ │ │ ├── index.vue │ │ │ │ └── item.vue │ │ │ ├── lc-sideslider │ │ │ │ └── index.vue │ │ │ ├── loader │ │ │ │ ├── index.vue │ │ │ │ └── loading │ │ │ │ │ └── index.vue │ │ │ ├── member-selector.vue │ │ │ ├── methods │ │ │ │ ├── choose-function │ │ │ │ │ └── index.vue │ │ │ │ ├── edit-function-dialog │ │ │ │ │ ├── children │ │ │ │ │ │ ├── group.vue │ │ │ │ │ │ └── item.vue │ │ │ │ │ └── index.vue │ │ │ │ ├── forms │ │ │ │ │ ├── create-func-from-market-sideslider.vue │ │ │ │ │ ├── edit-func-form.vue │ │ │ │ │ ├── edit-func-sideslider.vue │ │ │ │ │ ├── edit-market-func-sideslider.vue │ │ │ │ │ ├── form-items │ │ │ │ │ │ ├── api-data.vue │ │ │ │ │ │ ├── children │ │ │ │ │ │ │ ├── body-params.vue │ │ │ │ │ │ │ ├── debug │ │ │ │ │ │ │ │ ├── header.vue │ │ │ │ │ │ │ │ ├── output.vue │ │ │ │ │ │ │ │ ├── param.vue │ │ │ │ │ │ │ │ └── problem.vue │ │ │ │ │ │ │ ├── header-params.vue │ │ │ │ │ │ │ ├── query-params.vue │ │ │ │ │ │ │ ├── render-param-slot.css │ │ │ │ │ │ │ └── render-param-slot.tsx │ │ │ │ │ │ ├── code.vue │ │ │ │ │ │ ├── detail.vue │ │ │ │ │ │ ├── form-item-mixins.js │ │ │ │ │ │ ├── group.vue │ │ │ │ │ │ ├── market-token.vue │ │ │ │ │ │ ├── market.vue │ │ │ │ │ │ ├── monaco.vue │ │ │ │ │ │ ├── name.vue │ │ │ │ │ │ ├── project.vue │ │ │ │ │ │ ├── summary.vue │ │ │ │ │ │ └── variable-mixins.js │ │ │ │ │ ├── form-mixins.js │ │ │ │ │ └── show-func-dialog.vue │ │ │ │ ├── import-function-dialog.vue │ │ │ │ └── label-list.vue │ │ │ ├── minus-icon.vue │ │ │ ├── modifier │ │ │ │ ├── append-select.vue │ │ │ │ ├── border-detail.vue │ │ │ │ ├── distance-container.vue │ │ │ │ ├── distance-item.vue │ │ │ │ ├── font-size-input.vue │ │ │ │ ├── icon-select.vue │ │ │ │ ├── icon-size-input.vue │ │ │ │ ├── margin-style.vue │ │ │ │ ├── size-input.vue │ │ │ │ └── size-unit.vue │ │ │ ├── monaco.vue │ │ │ ├── not-exist.vue │ │ │ ├── novice-guide │ │ │ │ ├── help.png │ │ │ │ └── index.vue │ │ │ ├── patch │ │ │ │ ├── chart │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.vue │ │ │ │ ├── image │ │ │ │ │ ├── image.css │ │ │ │ │ ├── image.vue │ │ │ │ │ └── index.js │ │ │ │ ├── render-html │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.vue │ │ │ │ ├── text │ │ │ │ │ ├── index.js │ │ │ │ │ ├── text.css │ │ │ │ │ └── text.vue │ │ │ │ ├── widget-bk-table │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.vue │ │ │ │ ├── widget-bk-vision │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.vue │ │ │ │ ├── widget-el-table │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.vue │ │ │ │ └── widget-table-column │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.vue │ │ │ ├── plus-icon.vue │ │ │ ├── project-version-selector.vue │ │ │ ├── project │ │ │ │ ├── app-module-select.vue │ │ │ │ ├── create-page-dialog.vue │ │ │ │ ├── edit-route-dialog.vue │ │ │ │ ├── empty-status.vue │ │ │ │ ├── layout-thumb-list.vue │ │ │ │ ├── page-dialog.vue │ │ │ │ ├── page-from-template.vue │ │ │ │ ├── page-preview-thumb.vue │ │ │ │ ├── page-router-select.vue │ │ │ │ ├── select-project.vue │ │ │ │ ├── sort-select.vue │ │ │ │ └── type-select.vue │ │ │ ├── render-nocode │ │ │ │ ├── common │ │ │ │ │ ├── apiScheme.js │ │ │ │ │ ├── form.js │ │ │ │ │ ├── mockFormData.json │ │ │ │ │ └── regexlist.json │ │ │ │ ├── components │ │ │ │ │ ├── component-action-use.js │ │ │ │ │ └── layout │ │ │ │ │ │ ├── components │ │ │ │ │ │ ├── complex.vue │ │ │ │ │ │ ├── empty.vue │ │ │ │ │ │ ├── left-right.vue │ │ │ │ │ │ └── top-bottom.vue │ │ │ │ │ │ └── index.vue │ │ │ │ ├── content-width-mixin.js │ │ │ │ ├── data-manage │ │ │ │ │ ├── components │ │ │ │ │ │ ├── comp-box.vue │ │ │ │ │ │ ├── custom-btns-edit.vue │ │ │ │ │ │ ├── filters.vue │ │ │ │ │ │ ├── operate-setting │ │ │ │ │ │ │ ├── events │ │ │ │ │ │ │ │ └── index.vue │ │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ │ ├── perms │ │ │ │ │ │ │ │ └── index.vue │ │ │ │ │ │ │ └── properties │ │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ └── render-prop.vue │ │ │ │ │ │ │ │ └── index.vue │ │ │ │ │ │ ├── table-col-actions-edit.vue │ │ │ │ │ │ └── table-fields.vue │ │ │ │ │ ├── flow-data │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ └── node.vue │ │ │ │ │ ├── form-data.vue │ │ │ │ │ └── index.vue │ │ │ │ ├── flow │ │ │ │ │ └── index.vue │ │ │ │ ├── form │ │ │ │ │ ├── components │ │ │ │ │ │ ├── form-content │ │ │ │ │ │ │ └── index.vue │ │ │ │ │ │ ├── form-edit │ │ │ │ │ │ │ ├── association-value │ │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ │ └── rateValueRule.vue │ │ │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ │ │ ├── linkage.vue │ │ │ │ │ │ │ │ └── relation-rules.vue │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ ├── computeEdit │ │ │ │ │ │ │ │ │ ├── computeDate.vue │ │ │ │ │ │ │ │ │ ├── computeNumber.vue │ │ │ │ │ │ │ │ │ └── index.vue │ │ │ │ │ │ │ │ └── serialEdit.vue │ │ │ │ │ │ │ ├── conditionGroup.vue │ │ │ │ │ │ │ ├── configDescCompValueDialog.vue │ │ │ │ │ │ │ ├── data-source │ │ │ │ │ │ │ │ ├── custom-data.vue │ │ │ │ │ │ │ │ ├── function-data.vue │ │ │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ │ │ └── worksheet-data.vue │ │ │ │ │ │ │ ├── dataSourceDialog.vue │ │ │ │ │ │ │ ├── default-value.vue │ │ │ │ │ │ │ ├── fieldEdit.vue │ │ │ │ │ │ │ ├── fieldElement.vue │ │ │ │ │ │ │ ├── fieldValue.vue │ │ │ │ │ │ │ ├── readOnlyDialog.vue │ │ │ │ │ │ │ ├── requireDialog.vue │ │ │ │ │ │ │ ├── showTypeDialog.vue │ │ │ │ │ │ │ ├── tableHeaderElement.vue │ │ │ │ │ │ │ └── tableHeaderSetting.vue │ │ │ │ │ │ ├── left-panel │ │ │ │ │ │ │ └── index.vue │ │ │ │ │ │ └── right-panel │ │ │ │ │ │ │ ├── form-setting.vue │ │ │ │ │ │ │ └── index.vue │ │ │ │ │ └── index.vue │ │ │ │ ├── index.vue │ │ │ │ └── markdown │ │ │ │ │ └── index.vue │ │ │ ├── render │ │ │ │ ├── common │ │ │ │ │ ├── constant.js │ │ │ │ │ ├── drag-line.js │ │ │ │ │ └── drag.js │ │ │ │ ├── hooks │ │ │ │ │ └── component-action-use.js │ │ │ │ ├── index.js │ │ │ │ ├── index.postcss │ │ │ │ ├── mobile │ │ │ │ │ ├── area.postcss │ │ │ │ │ ├── common │ │ │ │ │ │ ├── mobile-header-height.js │ │ │ │ │ │ ├── mobile-header │ │ │ │ │ │ │ ├── mobile-header.js │ │ │ │ │ │ │ └── mobile-header.postcss │ │ │ │ │ │ ├── model-list.js │ │ │ │ │ │ ├── model.js │ │ │ │ │ │ └── simulator-mobile │ │ │ │ │ │ │ ├── simulator-mobile.js │ │ │ │ │ │ │ └── simulator-mobile.postcss │ │ │ │ │ ├── edit-area │ │ │ │ │ │ └── edit-area.js │ │ │ │ │ ├── index │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── index.postcss │ │ │ │ │ ├── preview-switch │ │ │ │ │ │ ├── preview-switch.js │ │ │ │ │ │ └── preview-switch.postcss │ │ │ │ │ ├── simulator-area │ │ │ │ │ │ └── simulator-area.js │ │ │ │ │ └── widget │ │ │ │ │ │ └── layout │ │ │ │ │ │ ├── empty-layout │ │ │ │ │ │ ├── empty-layout.js │ │ │ │ │ │ └── empty-layout.postcss │ │ │ │ │ │ ├── index │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── side-layout │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── index.postcss │ │ │ │ │ │ └── tab-bar │ │ │ │ │ │ ├── tab-bar.js │ │ │ │ │ │ └── tab-bar.postcss │ │ │ │ └── pc │ │ │ │ │ ├── components │ │ │ │ │ ├── draggable │ │ │ │ │ │ ├── draggable.js │ │ │ │ │ │ └── draggable.postcss │ │ │ │ │ ├── edit-object │ │ │ │ │ │ ├── edit-object.js │ │ │ │ │ │ └── edit-object.postcss │ │ │ │ │ └── navigation │ │ │ │ │ │ ├── menu-item.js │ │ │ │ │ │ └── menu.js │ │ │ │ │ ├── index │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.postcss │ │ │ │ │ ├── render-component.js │ │ │ │ │ ├── render-slot.js │ │ │ │ │ ├── resolve-component │ │ │ │ │ ├── resolve-component.js │ │ │ │ │ └── resolve-component.postcss │ │ │ │ │ ├── resolve-interactive-component │ │ │ │ │ ├── resolve-interactive-component.js │ │ │ │ │ └── resolve-interactive-component.postcss │ │ │ │ │ ├── tools │ │ │ │ │ ├── hooks │ │ │ │ │ │ ├── use-component-active.js │ │ │ │ │ │ ├── use-component-hover.js │ │ │ │ │ │ ├── use-scroll.js │ │ │ │ │ │ └── use-show-menu.js │ │ │ │ │ ├── lesscode-focus │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── lesscode-loading │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── index.postcss │ │ │ │ │ ├── lesscode-margin │ │ │ │ │ │ ├── hooks │ │ │ │ │ │ │ └── use-margin.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── index.postcss │ │ │ │ │ ├── lesscode-resize │ │ │ │ │ │ ├── hooks │ │ │ │ │ │ │ ├── use-auto-height.js │ │ │ │ │ │ │ ├── use-auto-width.js │ │ │ │ │ │ │ ├── use-full-width.js │ │ │ │ │ │ │ └── use-resize.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── index.postcss │ │ │ │ │ └── lesscode-tool │ │ │ │ │ │ ├── hooks │ │ │ │ │ │ ├── use-active-parent.js │ │ │ │ │ │ ├── use-check-form-engine.js │ │ │ │ │ │ ├── use-copy-paste.js │ │ │ │ │ │ ├── use-remove.js │ │ │ │ │ │ ├── use-save-template.js │ │ │ │ │ │ └── use-slot.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── index.postcss │ │ │ │ │ └── widget │ │ │ │ │ ├── bk-charts │ │ │ │ │ ├── bk-chart-config.js │ │ │ │ │ └── bk-charts.js │ │ │ │ │ ├── bk-lucky-canvas │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.postcss │ │ │ │ │ ├── bk-vision │ │ │ │ │ └── bk-vision.js │ │ │ │ │ ├── block │ │ │ │ │ ├── block.js │ │ │ │ │ └── block.postcss │ │ │ │ │ ├── chart │ │ │ │ │ ├── chart copy.js │ │ │ │ │ ├── chart-base-config.js │ │ │ │ │ ├── chart.js │ │ │ │ │ └── chart.postcss │ │ │ │ │ ├── column │ │ │ │ │ ├── column.js │ │ │ │ │ └── column.postcss │ │ │ │ │ ├── data-manage-container │ │ │ │ │ └── form-data-manage │ │ │ │ │ │ ├── constants.js │ │ │ │ │ │ ├── edit │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── element-box │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ └── index.postcss │ │ │ │ │ │ │ ├── form-data-buttons │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ └── index.postcss │ │ │ │ │ │ │ ├── table-col-setting │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ └── index.postcss │ │ │ │ │ │ │ ├── table-filters │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ └── index.postcss │ │ │ │ │ │ │ └── table │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ └── index.postcss │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── index.postcss │ │ │ │ │ │ └── preview │ │ │ │ │ │ ├── components │ │ │ │ │ │ ├── buttons │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── index.postcss │ │ │ │ │ │ ├── filters │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── index.postcss │ │ │ │ │ │ ├── rich-text-viewer │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ └── table │ │ │ │ │ │ │ ├── cell-value │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── index.postcss │ │ │ │ │ │ │ ├── col-setting │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── index.postcss │ │ │ │ │ │ │ ├── field-view-value │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── index.postcss │ │ │ │ │ │ │ └── row-actions │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── index.postcss │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── index.postcss │ │ │ │ │ ├── flow-manage-container │ │ │ │ │ ├── edit │ │ │ │ │ │ ├── flow-manage-container.postcss │ │ │ │ │ │ └── index.js │ │ │ │ │ └── preview │ │ │ │ │ │ ├── components │ │ │ │ │ │ ├── const.js │ │ │ │ │ │ ├── process-overview.js │ │ │ │ │ │ ├── process-overview.postcss │ │ │ │ │ │ └── task-detail-sideslider │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── index.postcss │ │ │ │ │ │ │ ├── manual-node-form.js │ │ │ │ │ │ │ └── manual-node-form.postcss │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── index.postcss │ │ │ │ │ ├── flow-workbench-container │ │ │ │ │ ├── edit │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── index.postcss │ │ │ │ │ └── preview │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── index.postcss │ │ │ │ │ ├── form-container │ │ │ │ │ └── index.js │ │ │ │ │ ├── form │ │ │ │ │ ├── form-item.js │ │ │ │ │ ├── form-item.postcss │ │ │ │ │ ├── form.js │ │ │ │ │ └── form.postcss │ │ │ │ │ ├── free-layout │ │ │ │ │ ├── free-layout.js │ │ │ │ │ └── free-layout.postcss │ │ │ │ │ ├── grid │ │ │ │ │ ├── grid.js │ │ │ │ │ └── grid.postcss │ │ │ │ │ ├── h5-container │ │ │ │ │ ├── h5-container.js │ │ │ │ │ └── h5-container.postcss │ │ │ │ │ ├── html │ │ │ │ │ └── index.js │ │ │ │ │ ├── layout │ │ │ │ │ ├── components │ │ │ │ │ │ ├── complex │ │ │ │ │ │ │ ├── complex.js │ │ │ │ │ │ │ └── complex.postcss │ │ │ │ │ │ ├── empty │ │ │ │ │ │ │ └── empty.js │ │ │ │ │ │ ├── head-help-menu.js │ │ │ │ │ │ ├── left-right │ │ │ │ │ │ │ ├── left-right.js │ │ │ │ │ │ │ └── left-right.postcss │ │ │ │ │ │ └── top-bottom │ │ │ │ │ │ │ ├── top-bottom.js │ │ │ │ │ │ │ └── top-bottom.postcss │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.postcss │ │ │ │ │ ├── md-editor │ │ │ │ │ ├── md-editor.js │ │ │ │ │ └── md-editor.postcss │ │ │ │ │ ├── patch.css │ │ │ │ │ ├── row │ │ │ │ │ ├── row.js │ │ │ │ │ └── row.postcss │ │ │ │ │ ├── tab │ │ │ │ │ ├── tab.js │ │ │ │ │ └── tab.postcss │ │ │ │ │ ├── table │ │ │ │ │ ├── delete.js │ │ │ │ │ ├── edit.js │ │ │ │ │ ├── edit.postcss │ │ │ │ │ ├── table-column.js │ │ │ │ │ └── table.js │ │ │ │ │ ├── van-picker │ │ │ │ │ └── index.js │ │ │ │ │ └── van-tab │ │ │ │ │ ├── index.js │ │ │ │ │ └── tab.postcss │ │ │ ├── sortable.js │ │ │ ├── src-input │ │ │ │ ├── file-modal.vue │ │ │ │ └── index.vue │ │ │ ├── template │ │ │ │ ├── framework-type-select.vue │ │ │ │ └── save-template-dialog.vue │ │ │ ├── ui │ │ │ │ ├── extra-links.vue │ │ │ │ ├── group.vue │ │ │ │ ├── icon-button-toggle.vue │ │ │ │ ├── layout.vue │ │ │ │ ├── loading.vue │ │ │ │ ├── project-version-tag.vue │ │ │ │ └── select-tab.vue │ │ │ ├── variable │ │ │ │ ├── choose-build-in-variable.vue │ │ │ │ ├── variable-form │ │ │ │ │ ├── index.vue │ │ │ │ │ ├── variable-code.vue │ │ │ │ │ ├── variable-input.vue │ │ │ │ │ ├── variable-json.vue │ │ │ │ │ ├── variable-switcher.vue │ │ │ │ │ ├── variable-upload.vue │ │ │ │ │ └── variable.mixin.js │ │ │ │ ├── variable-select │ │ │ │ │ ├── components │ │ │ │ │ │ ├── expression.vue │ │ │ │ │ │ └── variable.vue │ │ │ │ │ └── index.vue │ │ │ │ └── variable-table.vue │ │ │ └── version-log.vue │ │ ├── css │ │ │ ├── animate.min.css │ │ │ ├── bk-patch.css │ │ │ ├── common.css │ │ │ ├── mixins │ │ │ │ ├── clearfix.css │ │ │ │ ├── ellipsis.css │ │ │ │ ├── scroller.css │ │ │ │ └── transition.css │ │ │ ├── reset.css │ │ │ └── variable.css │ │ ├── directives │ │ │ ├── cursor.js │ │ │ ├── en-class.js │ │ │ ├── en-style.js │ │ │ ├── index.js │ │ │ └── tooltips.js │ │ ├── element-materials │ │ │ ├── core │ │ │ │ ├── Node-history.js │ │ │ │ ├── Node.js │ │ │ │ ├── README.MD │ │ │ │ ├── event.js │ │ │ │ ├── extends │ │ │ │ │ ├── active-clear.js │ │ │ │ │ ├── active.js │ │ │ │ │ ├── append-child.js │ │ │ │ │ ├── clone-node.js │ │ │ │ │ ├── insert-after.js │ │ │ │ │ ├── insert-before.js │ │ │ │ │ ├── merge-render-events.js │ │ │ │ │ ├── paste-node.js │ │ │ │ │ ├── remove-child.js │ │ │ │ │ ├── rerender.js │ │ │ │ │ ├── set-align.js │ │ │ │ │ ├── set-event.js │ │ │ │ │ ├── set-prop.js │ │ │ │ │ ├── set-render-align.js │ │ │ │ │ ├── set-render-directives.js │ │ │ │ │ ├── set-render-events.js │ │ │ │ │ ├── set-render-perms.js │ │ │ │ │ ├── set-render-props.js │ │ │ │ │ ├── set-render-slots.js │ │ │ │ │ ├── set-render-styles.js │ │ │ │ │ ├── set-slot.js │ │ │ │ │ ├── set-style.js │ │ │ │ │ ├── to-json.js │ │ │ │ │ └── toggle-interactive.js │ │ │ │ ├── helper │ │ │ │ │ ├── commands │ │ │ │ │ │ ├── clear-layout.js │ │ │ │ │ │ ├── copy-paste.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── remove.js │ │ │ │ │ ├── decorator.js │ │ │ │ │ ├── find-parent.js │ │ │ │ │ ├── find-related-method.js │ │ │ │ │ ├── find-related-variable.js │ │ │ │ │ ├── flatne-chilren.js │ │ │ │ │ ├── merge-data-to-node.js │ │ │ │ │ ├── transform-props.js │ │ │ │ │ ├── transform-slots.js │ │ │ │ │ ├── utils.js │ │ │ │ │ └── validator.js │ │ │ │ ├── index.js │ │ │ │ ├── menu.js │ │ │ │ ├── page-style.js │ │ │ │ ├── static │ │ │ │ │ ├── create-node.js │ │ │ │ │ ├── custom-container.js │ │ │ │ │ ├── edit-node.js │ │ │ │ │ ├── framework.js │ │ │ │ │ ├── get-active-node.js │ │ │ │ │ ├── get-material.js │ │ │ │ │ ├── get-node-by-id.js │ │ │ │ │ ├── get-nodes-by-type.js │ │ │ │ │ ├── get-root.js │ │ │ │ │ ├── is-interactive-type.js │ │ │ │ │ ├── is-layout-type.js │ │ │ │ │ ├── is-node.js │ │ │ │ │ ├── nav-custom-con.js │ │ │ │ │ ├── parse-data.js │ │ │ │ │ ├── parse-history.js │ │ │ │ │ ├── parse-template.js │ │ │ │ │ ├── reset.js │ │ │ │ │ └── utils.js │ │ │ │ └── widget │ │ │ │ │ └── menu │ │ │ │ │ ├── create-menu.js │ │ │ │ │ └── index.vue │ │ │ ├── materials │ │ │ │ ├── README.md │ │ │ │ ├── vue2 │ │ │ │ │ ├── bk │ │ │ │ │ │ ├── alert │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── animate-number │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── badge │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── big-tree │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── bk-charts-bar │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── bk-charts-bubble │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── bk-charts-line │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── bk-charts-pie │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── bk-charts-radar │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── bk-charts-scatter │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── bk-vision │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── block │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── bread-crumb │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── button │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── card │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── cascade │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── charts-bar │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── charts-line │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── charts-pie │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── checkbox-group │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── checkbox │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── collapse │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── color-picker │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── column │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── data-manage-container │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── date-picker │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── dialog │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── diff │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── divider │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── echarts-bar │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── echarts-line │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── echarts-pie │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── exception │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── flow-manage-container │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── flow-workbench-container │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── form-container │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── form-item │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── form │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── free-layout │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── grid │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── icon │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── image │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── input-textarea │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── link │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── md-editor │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── pagination │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── paragraph │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── popconfirm │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── popover │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── process │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── progress │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── radio-button-group │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── radio-group │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── rate │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── round-progress │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── search-select │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── select │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── sideslider │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── slider │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── steps │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── swiper │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── switcher │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── tab-old │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── tab-panel │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── tab │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── table │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── tag-input │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── text │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── time-picker │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── timeline │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── transfer │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── tree │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── upload │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ └── zoom-image │ │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── element │ │ │ │ │ │ ├── alert │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── avatar │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── badge │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── bread-crumb │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── button │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── card │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── carousel │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── cascade │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── checkbox-group │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── color-picker │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── date-picker │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── icon-list.js │ │ │ │ │ │ ├── image │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── input-number │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── link │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── pagination │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── progress │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── radio-group │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── rate │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── select │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── slider │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── steps │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── switcher │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── tab │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── table │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── tag-input │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── time-picker │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── timeline │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── tooltip │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── transfer │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── tree │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ └── upload │ │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── icon-list.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── vant │ │ │ │ │ │ ├── badge │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── button │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── calendar │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── cell │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── check-box-group │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── circle │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── common.js │ │ │ │ │ │ ├── count-down │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── date-time-picker │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── divider │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── empty │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── field │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── grid │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── h5-container │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── h5-page │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── icon-list.js │ │ │ │ │ │ ├── icon │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── image │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── loading │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── lucky-canvas │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── navbar │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── notice-bar │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── number-keyboard │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── pagination │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── paragraph │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── password-input │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── picker │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── progress │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── radio-group │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── rate │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── search │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── skeleton │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── slider │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── stepper │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── steps │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── switch │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── tab │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── tag │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── tree-select │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── uploader │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── widget-tab-panel │ │ │ │ │ │ └── index.js │ │ │ │ │ │ └── widget-tab │ │ │ │ │ │ └── index.js │ │ │ │ └── vue3 │ │ │ │ │ ├── bk │ │ │ │ │ ├── alert │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── animate-number │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── backtop │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── badge │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── bk-charts-bar │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── bk-charts-bubble │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── bk-charts-line │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── bk-charts-pie │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── bk-charts-radar │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── bk-charts-scatter │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── bk-vision │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── block │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── bread-crumb │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── button │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── card │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── cascader │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── charts-bar │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── charts-line │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── charts-pie │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── checkbox-group │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── checkbox │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── code-diff │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── collapse │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── color-picker │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── column │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── data-manage-container │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── date-picker │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── dialog │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── divider │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── echarts-bar │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── echarts-line │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── echarts-pie │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── exception │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── flow-manage-container │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── flow-workbench-container │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── form-container │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── form-item │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── form │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── free-layout │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── grid │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── icon │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── image │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── input-textarea │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── input │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── link │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── pagination │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── paragraph │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── popover │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── process │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── progress │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── radio-group │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── rate │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── search-select │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── select │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── sideslider │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── slider │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── steps │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── swiper │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── switcher │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── tab-panel │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── tab │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── table │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── tag-input │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── text │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── time-picker │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── timeline │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── transfer │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── tree │ │ │ │ │ │ └── index.js │ │ │ │ │ └── upload │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── icon-list.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── vant │ │ │ │ │ ├── badge │ │ │ │ │ └── index.js │ │ │ │ │ ├── button │ │ │ │ │ └── index.js │ │ │ │ │ ├── calendar │ │ │ │ │ └── index.js │ │ │ │ │ ├── cell │ │ │ │ │ └── index.js │ │ │ │ │ ├── check-box-group │ │ │ │ │ └── index.js │ │ │ │ │ ├── circle │ │ │ │ │ └── index.js │ │ │ │ │ ├── common.js │ │ │ │ │ ├── count-down │ │ │ │ │ └── index.js │ │ │ │ │ ├── date-time-picker │ │ │ │ │ └── index.js │ │ │ │ │ ├── divider │ │ │ │ │ └── index.js │ │ │ │ │ ├── empty │ │ │ │ │ └── index.js │ │ │ │ │ ├── field │ │ │ │ │ └── index.js │ │ │ │ │ ├── grid │ │ │ │ │ └── index.js │ │ │ │ │ ├── h5-container │ │ │ │ │ └── index.js │ │ │ │ │ ├── h5-page │ │ │ │ │ └── index.js │ │ │ │ │ ├── icon │ │ │ │ │ └── index.js │ │ │ │ │ ├── image │ │ │ │ │ └── index.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── loading │ │ │ │ │ └── index.js │ │ │ │ │ ├── lucky-canvas │ │ │ │ │ └── index.js │ │ │ │ │ ├── navbar │ │ │ │ │ └── index.js │ │ │ │ │ ├── notice-bar │ │ │ │ │ └── index.js │ │ │ │ │ ├── number-keyboard │ │ │ │ │ └── index.js │ │ │ │ │ ├── pagination │ │ │ │ │ └── index.js │ │ │ │ │ ├── paragraph │ │ │ │ │ └── index.js │ │ │ │ │ ├── password-input │ │ │ │ │ └── index.js │ │ │ │ │ ├── picker │ │ │ │ │ └── index.js │ │ │ │ │ ├── progress │ │ │ │ │ └── index.js │ │ │ │ │ ├── radio-group │ │ │ │ │ └── index.js │ │ │ │ │ ├── rate │ │ │ │ │ └── index.js │ │ │ │ │ ├── search │ │ │ │ │ └── index.js │ │ │ │ │ ├── skeleton │ │ │ │ │ └── index.js │ │ │ │ │ ├── slider │ │ │ │ │ └── index.js │ │ │ │ │ ├── stepper │ │ │ │ │ └── index.js │ │ │ │ │ ├── steps │ │ │ │ │ └── index.js │ │ │ │ │ ├── switch │ │ │ │ │ └── index.js │ │ │ │ │ ├── tab │ │ │ │ │ └── index.js │ │ │ │ │ ├── tag │ │ │ │ │ └── index.js │ │ │ │ │ ├── tree-select │ │ │ │ │ └── index.js │ │ │ │ │ ├── uploader │ │ │ │ │ └── index.js │ │ │ │ │ ├── widget-tab-panel │ │ │ │ │ └── index.js │ │ │ │ │ └── widget-tab │ │ │ │ │ └── index.js │ │ │ └── modifier │ │ │ │ ├── component │ │ │ │ ├── align │ │ │ │ │ └── index.vue │ │ │ │ ├── data-manage-container │ │ │ │ │ └── index.vue │ │ │ │ ├── directives │ │ │ │ │ └── index.vue │ │ │ │ ├── events │ │ │ │ │ ├── children │ │ │ │ │ │ ├── choose-flow-action.vue │ │ │ │ │ │ ├── describe-function │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ ├── render-type.vue │ │ │ │ │ │ │ │ └── render-wrapper.vue │ │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ │ ├── render-ai.vue │ │ │ │ │ │ │ ├── render-component.vue │ │ │ │ │ │ │ ├── render-link.vue │ │ │ │ │ │ │ ├── render-method.vue │ │ │ │ │ │ │ └── render-variable.vue │ │ │ │ │ │ ├── plus-event.vue │ │ │ │ │ │ └── render-event.vue │ │ │ │ │ └── index.vue │ │ │ │ ├── form-container │ │ │ │ │ ├── components │ │ │ │ │ │ ├── data-source.vue │ │ │ │ │ │ ├── operate-actions.vue │ │ │ │ │ │ ├── prop-group.vue │ │ │ │ │ │ └── row-layout.vue │ │ │ │ │ └── index.vue │ │ │ │ ├── form │ │ │ │ │ ├── components │ │ │ │ │ │ ├── form-button-setting.vue │ │ │ │ │ │ ├── form-helper.js │ │ │ │ │ │ ├── form-item-edit.vue │ │ │ │ │ │ ├── form-item-validate.vue │ │ │ │ │ │ └── init-form.vue │ │ │ │ │ └── index.vue │ │ │ │ ├── gird │ │ │ │ │ └── index.vue │ │ │ │ ├── h5-page │ │ │ │ │ └── index.vue │ │ │ │ ├── index.vue │ │ │ │ ├── layout │ │ │ │ │ └── index.vue │ │ │ │ ├── perms │ │ │ │ │ ├── components │ │ │ │ │ │ └── select-action.vue │ │ │ │ │ └── index.vue │ │ │ │ ├── props │ │ │ │ │ ├── components │ │ │ │ │ │ ├── render-prop.vue │ │ │ │ │ │ └── strategy │ │ │ │ │ │ │ ├── boolean.vue │ │ │ │ │ │ │ ├── chart-color-set.vue │ │ │ │ │ │ │ ├── checkbox.vue │ │ │ │ │ │ │ ├── collapse.vue │ │ │ │ │ │ │ ├── color.vue │ │ │ │ │ │ │ ├── data-source.vue │ │ │ │ │ │ │ ├── el-props.vue │ │ │ │ │ │ │ ├── float.vue │ │ │ │ │ │ │ ├── free-layout-item.vue │ │ │ │ │ │ │ ├── function.vue │ │ │ │ │ │ │ ├── html.vue │ │ │ │ │ │ │ ├── icon.vue │ │ │ │ │ │ │ ├── json-view.vue │ │ │ │ │ │ │ ├── list.vue │ │ │ │ │ │ │ ├── number.vue │ │ │ │ │ │ │ ├── option.vue │ │ │ │ │ │ │ ├── pagination.vue │ │ │ │ │ │ │ ├── radio-button.vue │ │ │ │ │ │ │ ├── radio.vue │ │ │ │ │ │ │ ├── remote-example.vue │ │ │ │ │ │ │ ├── remote.vue │ │ │ │ │ │ │ ├── request-select.vue │ │ │ │ │ │ │ ├── route-list.vue │ │ │ │ │ │ │ ├── select.vue │ │ │ │ │ │ │ ├── size.vue │ │ │ │ │ │ │ ├── src.vue │ │ │ │ │ │ │ ├── string.vue │ │ │ │ │ │ │ ├── table-column.vue │ │ │ │ │ │ │ ├── table-data-source.vue │ │ │ │ │ │ │ ├── text.vue │ │ │ │ │ │ │ ├── textarea.vue │ │ │ │ │ │ │ ├── value-key-item.vue │ │ │ │ │ │ │ ├── value-key-option.vue │ │ │ │ │ │ │ └── van-icon.vue │ │ │ │ │ └── index.vue │ │ │ │ ├── slots │ │ │ │ │ ├── components │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ └── select-key.vue │ │ │ │ │ │ ├── data-source.vue │ │ │ │ │ │ ├── list │ │ │ │ │ │ │ ├── bk │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ ├── config.js │ │ │ │ │ │ │ ├── element │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ │ └── vant │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── remote.vue │ │ │ │ │ │ ├── select-data-source.vue │ │ │ │ │ │ ├── select-remote.vue │ │ │ │ │ │ ├── slot-html.vue │ │ │ │ │ │ ├── table.vue │ │ │ │ │ │ ├── text.vue │ │ │ │ │ │ └── textarea.vue │ │ │ │ │ ├── index.vue │ │ │ │ │ ├── render-config │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── vue2 │ │ │ │ │ │ │ ├── bk │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ ├── element │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ └── vant │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ └── vue3 │ │ │ │ │ │ │ ├── bk │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ └── vant │ │ │ │ │ │ │ └── index.js │ │ │ │ │ └── render-slot.vue │ │ │ │ ├── styles │ │ │ │ │ ├── common │ │ │ │ │ │ └── util.js │ │ │ │ │ ├── index.vue │ │ │ │ │ ├── layout │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ └── item.vue │ │ │ │ │ └── strategy │ │ │ │ │ │ ├── background.vue │ │ │ │ │ │ ├── border.vue │ │ │ │ │ │ ├── custom-style.vue │ │ │ │ │ │ ├── font.vue │ │ │ │ │ │ ├── margin-padding.vue │ │ │ │ │ │ ├── margin.vue │ │ │ │ │ │ ├── min-width.vue │ │ │ │ │ │ ├── opacity.vue │ │ │ │ │ │ ├── padding.vue │ │ │ │ │ │ ├── pointer.vue │ │ │ │ │ │ ├── position.vue │ │ │ │ │ │ └── size.vue │ │ │ │ ├── tab │ │ │ │ │ └── index.vue │ │ │ │ └── utils │ │ │ │ │ ├── encodeRegexp.js │ │ │ │ │ ├── get-default-value-by-type.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── is-empty.js │ │ │ │ │ └── to-pascal.js │ │ │ │ ├── form-editor-container │ │ │ │ ├── components │ │ │ │ │ ├── data-manage-container-element │ │ │ │ │ │ ├── events │ │ │ │ │ │ │ └── index.vue │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ ├── perms │ │ │ │ │ │ │ └── index.vue │ │ │ │ │ │ └── properties │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ └── render-prop.vue │ │ │ │ │ │ │ └── index.vue │ │ │ │ │ └── form-container-element │ │ │ │ │ │ └── index.vue │ │ │ │ └── index.vue │ │ │ │ ├── index.vue │ │ │ │ ├── page │ │ │ │ ├── components │ │ │ │ │ ├── children │ │ │ │ │ │ ├── page-route-setting.vue │ │ │ │ │ │ └── page-style-setting.vue │ │ │ │ │ ├── page-func.vue │ │ │ │ │ └── page-setting.vue │ │ │ │ └── index.vue │ │ │ │ └── template │ │ │ │ ├── complex-side │ │ │ │ └── index.vue │ │ │ │ ├── complex-top │ │ │ │ └── index.vue │ │ │ │ ├── editor │ │ │ │ ├── menu │ │ │ │ │ ├── edit.vue │ │ │ │ │ └── index.vue │ │ │ │ └── prop │ │ │ │ │ ├── color-options.js │ │ │ │ │ └── index.vue │ │ │ │ ├── help-menu │ │ │ │ └── index.tsx │ │ │ │ ├── index.vue │ │ │ │ ├── info.vue │ │ │ │ ├── mobile-side-menu │ │ │ │ └── index.tsx │ │ │ │ ├── mobile-tab-bar │ │ │ │ ├── index.tsx │ │ │ │ └── mobile-base-template.tsx │ │ │ │ ├── side-menu │ │ │ │ └── index.tsx │ │ │ │ └── top-menu │ │ │ │ ├── base-menu-template.css │ │ │ │ ├── base-menu-template.tsx │ │ │ │ └── index.tsx │ │ ├── form-engine │ │ │ ├── fields │ │ │ │ ├── auto-counting │ │ │ │ │ └── index.js │ │ │ │ ├── checkbox │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.postcss │ │ │ │ ├── compute │ │ │ │ │ └── index.js │ │ │ │ ├── date │ │ │ │ │ └── index.js │ │ │ │ ├── datetime │ │ │ │ │ └── index.js │ │ │ │ ├── description │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.postcss │ │ │ │ ├── divider │ │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ ├── index.postcss │ │ │ │ ├── input │ │ │ │ │ └── index.js │ │ │ │ ├── int │ │ │ │ │ └── index.js │ │ │ │ ├── link │ │ │ │ │ └── index.js │ │ │ │ ├── member │ │ │ │ │ └── index.js │ │ │ │ ├── radio │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.postcss │ │ │ │ ├── rate │ │ │ │ │ └── index.js │ │ │ │ ├── rich-text │ │ │ │ │ └── index.js │ │ │ │ ├── select │ │ │ │ │ └── index.js │ │ │ │ ├── table │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.postcss │ │ │ │ └── textarea │ │ │ │ │ └── index.js │ │ │ ├── layout │ │ │ │ ├── index.js │ │ │ │ └── index.postcss │ │ │ ├── material │ │ │ │ ├── group-item.vue │ │ │ │ ├── index.vue │ │ │ │ └── materials.js │ │ │ ├── renderer │ │ │ │ ├── index.js │ │ │ │ └── index.postcss │ │ │ ├── setter │ │ │ │ ├── common │ │ │ │ │ ├── condition-edit.vue │ │ │ │ │ ├── default-value.vue │ │ │ │ │ ├── rich-text-value-editor.vue │ │ │ │ │ └── setter-form-item.vue │ │ │ │ ├── components │ │ │ │ │ ├── auto-counting-config │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ └── counting-rules-dialog.vue │ │ │ │ │ │ └── index.vue │ │ │ │ │ ├── computed-config │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── compute-date.vue │ │ │ │ │ │ │ ├── compute-number.vue │ │ │ │ │ │ │ └── formula-dialog.vue │ │ │ │ │ │ └── index.vue │ │ │ │ │ ├── data-source │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── custom-data.vue │ │ │ │ │ │ │ ├── function-data.vue │ │ │ │ │ │ │ └── worksheet-data.vue │ │ │ │ │ │ └── index.vue │ │ │ │ │ ├── date-dimension │ │ │ │ │ │ └── index.vue │ │ │ │ │ ├── divider-config │ │ │ │ │ │ └── index.vue │ │ │ │ │ ├── hidden │ │ │ │ │ │ └── index.vue │ │ │ │ │ ├── key │ │ │ │ │ │ └── index.vue │ │ │ │ │ ├── label-tips │ │ │ │ │ │ └── index.vue │ │ │ │ │ ├── name │ │ │ │ │ │ └── index.vue │ │ │ │ │ ├── placeholder │ │ │ │ │ │ └── index.vue │ │ │ │ │ ├── readonly │ │ │ │ │ │ └── index.vue │ │ │ │ │ ├── required │ │ │ │ │ │ └── index.vue │ │ │ │ │ ├── table-config │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ └── header-config-item.vue │ │ │ │ │ │ └── index.vue │ │ │ │ │ ├── val-linkage-rules │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── linkage.vue │ │ │ │ │ │ │ ├── rate-value-rule.vue │ │ │ │ │ │ │ └── relation-rules.vue │ │ │ │ │ │ └── index.vue │ │ │ │ │ ├── validate │ │ │ │ │ │ └── index.vue │ │ │ │ │ └── value │ │ │ │ │ │ └── index.vue │ │ │ │ ├── index.vue │ │ │ │ └── setters.js │ │ │ └── utils │ │ │ │ ├── condition-parser.js │ │ │ │ ├── data-source.js │ │ │ │ └── index.js │ │ ├── hooks │ │ │ ├── use-custom-validate.js │ │ │ ├── use-datasource.js │ │ │ └── use-resource.js │ │ ├── images │ │ │ ├── 403.png │ │ │ ├── 404.png │ │ │ ├── 500.png │ │ │ ├── Magicbox.png │ │ │ ├── TQOS.png │ │ │ ├── ai-logo.png │ │ │ ├── ai-user.png │ │ │ ├── angular.png │ │ │ ├── back_top.png │ │ │ ├── banner-en.png │ │ │ ├── banner.png │ │ │ ├── bs.png │ │ │ ├── building.png │ │ │ ├── component-preview.png │ │ │ ├── debug.png │ │ │ ├── deploy.png │ │ │ ├── diy.png │ │ │ ├── empty-event.png │ │ │ ├── feedback.png │ │ │ ├── flow-page-img.png │ │ │ ├── footer-bg.png │ │ │ ├── form.png │ │ │ ├── frame.png │ │ │ ├── game.png │ │ │ ├── gpu-product.png │ │ │ ├── guilian.png │ │ │ ├── help │ │ │ │ ├── en │ │ │ │ │ ├── api-01.png │ │ │ │ │ ├── api-02.png │ │ │ │ │ ├── api-03.png │ │ │ │ │ ├── canvas-comp.png │ │ │ │ │ ├── canvas-drag.png │ │ │ │ │ ├── canvas-icon.png │ │ │ │ │ ├── canvas-pagefunc.png │ │ │ │ │ ├── canvas-pagesetting.png │ │ │ │ │ ├── case-table1.png │ │ │ │ │ ├── case-table2.png │ │ │ │ │ ├── case-table3.png │ │ │ │ │ ├── case-table5.png │ │ │ │ │ ├── case-table7.png │ │ │ │ │ ├── case-table9.png │ │ │ │ │ ├── component-create.png │ │ │ │ │ ├── component-upload.png │ │ │ │ │ ├── component-use.png │ │ │ │ │ ├── container-block1.png │ │ │ │ │ ├── container-block2.png │ │ │ │ │ ├── container-block3.png │ │ │ │ │ ├── container-freelayout.png │ │ │ │ │ ├── container-grid.png │ │ │ │ │ ├── container-total.png │ │ │ │ │ ├── create-page.png │ │ │ │ │ ├── create-proj.png │ │ │ │ │ ├── data-manage-01.png │ │ │ │ │ ├── data-manage-02.png │ │ │ │ │ ├── data-manage-03.png │ │ │ │ │ ├── data-manage-04.png │ │ │ │ │ ├── data-manage-05.png │ │ │ │ │ ├── data-manage-06.png │ │ │ │ │ ├── data-manage-07.png │ │ │ │ │ ├── data-manage-08.png │ │ │ │ │ ├── data-manage-09.png │ │ │ │ │ ├── data-manage-10.png │ │ │ │ │ ├── data-manage-11.png │ │ │ │ │ ├── data-operation-01.png │ │ │ │ │ ├── data-operation-02.png │ │ │ │ │ ├── data-operation-03.png │ │ │ │ │ ├── data-operation-04.png │ │ │ │ │ ├── data-operation-05.png │ │ │ │ │ ├── data-operation-06.png │ │ │ │ │ ├── data-operation-07.png │ │ │ │ │ ├── develop2.png │ │ │ │ │ ├── directive-cur-tab.png │ │ │ │ │ ├── directive-for-img.png │ │ │ │ │ ├── directive-for-paragraph.png │ │ │ │ │ ├── directive-for-preview.png │ │ │ │ │ ├── directive-for.png │ │ │ │ │ ├── directive-if-preview.png │ │ │ │ │ ├── directive-if.png │ │ │ │ │ ├── directive-prop.png │ │ │ │ │ ├── directive-tab.png │ │ │ │ │ ├── filemanage-delorcopy.png │ │ │ │ │ ├── filemanage-pick.png │ │ │ │ │ ├── filemanage-pickdoc.png │ │ │ │ │ ├── filemanage-pickuse.png │ │ │ │ │ ├── filemanage-upload.png │ │ │ │ │ ├── form-data-container-01.png │ │ │ │ │ ├── form-data-container-02.png │ │ │ │ │ ├── form-data-container-03-2.png │ │ │ │ │ ├── form-data-container-03.png │ │ │ │ │ ├── form-data-container-04.png │ │ │ │ │ ├── form-data-container-05.png │ │ │ │ │ ├── form-data-container-06.png │ │ │ │ │ ├── form-data-container-07.png │ │ │ │ │ ├── form-data-container-08.png │ │ │ │ │ ├── form-data-container-09.png │ │ │ │ │ ├── function-using-01.png │ │ │ │ │ ├── function-using-02.png │ │ │ │ │ ├── function-using-03.png │ │ │ │ │ ├── function-using-04.png │ │ │ │ │ ├── function-using-05.png │ │ │ │ │ ├── function-using-06.png │ │ │ │ │ ├── interactive-1.png │ │ │ │ │ ├── interactive-2.png │ │ │ │ │ ├── interactive-3.png │ │ │ │ │ ├── interactive-4.png │ │ │ │ │ ├── interactive-5.png │ │ │ │ │ ├── interactive-6.png │ │ │ │ │ ├── interactive-7.png │ │ │ │ │ ├── interactive-8.png │ │ │ │ │ ├── layout-add1.png │ │ │ │ │ ├── layout-add2.png │ │ │ │ │ ├── layout-change.png │ │ │ │ │ ├── layout-modify-con.png │ │ │ │ │ ├── layout-use.png │ │ │ │ │ ├── media │ │ │ │ │ │ └── 17168668712027 │ │ │ │ │ │ │ ├── 17168725346892.jpg │ │ │ │ │ │ │ ├── 17168725520542.jpg │ │ │ │ │ │ │ ├── 17168725738364.jpg │ │ │ │ │ │ │ └── 17168727190183.jpg │ │ │ │ │ ├── method-01.png │ │ │ │ │ ├── method-method.png │ │ │ │ │ ├── mobile-1.png │ │ │ │ │ ├── mobile-2.png │ │ │ │ │ ├── mobile-3.png │ │ │ │ │ ├── mobile-4.png │ │ │ │ │ ├── mobile-5.png │ │ │ │ │ ├── mobile-6.png │ │ │ │ │ ├── mobile-7.png │ │ │ │ │ ├── mobile-8.png │ │ │ │ │ ├── page-manage-1.png │ │ │ │ │ ├── page-manage-2.png │ │ │ │ │ ├── page1.png │ │ │ │ │ ├── page2.png │ │ │ │ │ ├── page5.png │ │ │ │ │ ├── page6.png │ │ │ │ │ ├── page8.png │ │ │ │ │ ├── pagetemplate-from1.png │ │ │ │ │ ├── pagetemplate-from2.png │ │ │ │ │ ├── pagetemplate-from3.png │ │ │ │ │ ├── pagetemplate-import.png │ │ │ │ │ ├── pagetemplate-use-canvas.png │ │ │ │ │ ├── pagetemplate-use-create1.png │ │ │ │ │ ├── pagetemplate-use-create2.png │ │ │ │ │ ├── project-list.png │ │ │ │ │ ├── project-template.png │ │ │ │ │ ├── release-data.png │ │ │ │ │ ├── release-log.png │ │ │ │ │ ├── release-paas.png │ │ │ │ │ ├── release-result.png │ │ │ │ │ ├── routemanage-addsubroute.png │ │ │ │ │ ├── routemanage-bindroute.png │ │ │ │ │ ├── routemanage-createpage.png │ │ │ │ │ ├── routemanage-entry.png │ │ │ │ │ ├── routemanage-layoutroute.png │ │ │ │ │ ├── routemanage-modifyroute.png │ │ │ │ │ ├── routemanage-modifyroute2.png │ │ │ │ │ ├── routemanage-rebindroute.png │ │ │ │ │ ├── variable-in-method2.png │ │ │ │ │ ├── variable-method.png │ │ │ │ │ ├── variable-using-01.png │ │ │ │ │ ├── variable-using-02.png │ │ │ │ │ ├── variable-using-03.png │ │ │ │ │ ├── variable-using-04.png │ │ │ │ │ ├── variable-using-05.png │ │ │ │ │ ├── variable-using-06.png │ │ │ │ │ ├── variable-using-07.png │ │ │ │ │ ├── variable-using-08.png │ │ │ │ │ ├── variable-using-09.png │ │ │ │ │ ├── variable-using-10.png │ │ │ │ │ ├── version-archiving.png │ │ │ │ │ ├── version-create.png │ │ │ │ │ ├── version-cur.png │ │ │ │ │ ├── version-entry.png │ │ │ │ │ ├── version-list.png │ │ │ │ │ ├── version-release.png │ │ │ │ │ └── version-releasever.png │ │ │ │ └── zh │ │ │ │ │ ├── api-01.png │ │ │ │ │ ├── api-02.png │ │ │ │ │ ├── api-03.png │ │ │ │ │ ├── canvas-comp.png │ │ │ │ │ ├── canvas-drag.png │ │ │ │ │ ├── canvas-icon.png │ │ │ │ │ ├── canvas-pagefunc.png │ │ │ │ │ ├── canvas-pagesetting.png │ │ │ │ │ ├── case-table1.png │ │ │ │ │ ├── case-table10.png │ │ │ │ │ ├── case-table2.png │ │ │ │ │ ├── case-table3.png │ │ │ │ │ ├── case-table4.png │ │ │ │ │ ├── case-table5.png │ │ │ │ │ ├── case-table6.png │ │ │ │ │ ├── case-table7.png │ │ │ │ │ ├── case-table8.png │ │ │ │ │ ├── case-table9.png │ │ │ │ │ ├── component-create.png │ │ │ │ │ ├── component-upload.png │ │ │ │ │ ├── component-use.png │ │ │ │ │ ├── container-block1.png │ │ │ │ │ ├── container-block2.png │ │ │ │ │ ├── container-block3.png │ │ │ │ │ ├── container-freelayout.png │ │ │ │ │ ├── container-grid.png │ │ │ │ │ ├── container-total.png │ │ │ │ │ ├── create-page.png │ │ │ │ │ ├── create-proj.png │ │ │ │ │ ├── data-manage-01.png │ │ │ │ │ ├── data-manage-02.png │ │ │ │ │ ├── data-manage-03.png │ │ │ │ │ ├── data-manage-04.png │ │ │ │ │ ├── data-manage-05.png │ │ │ │ │ ├── data-manage-06.png │ │ │ │ │ ├── data-manage-07.png │ │ │ │ │ ├── data-manage-08.png │ │ │ │ │ ├── data-manage-09.png │ │ │ │ │ ├── data-manage-10.png │ │ │ │ │ ├── data-manage-11.png │ │ │ │ │ ├── data-operation-01.png │ │ │ │ │ ├── data-operation-02.png │ │ │ │ │ ├── data-operation-03.png │ │ │ │ │ ├── data-operation-04.png │ │ │ │ │ ├── data-operation-05.png │ │ │ │ │ ├── data-operation-06.png │ │ │ │ │ ├── data-operation-07.png │ │ │ │ │ ├── develop1.png │ │ │ │ │ ├── develop2.png │ │ │ │ │ ├── directive-cur-tab.png │ │ │ │ │ ├── directive-for-img.png │ │ │ │ │ ├── directive-for-paragraph.png │ │ │ │ │ ├── directive-for-preview.png │ │ │ │ │ ├── directive-for.png │ │ │ │ │ ├── directive-if-preview.png │ │ │ │ │ ├── directive-if.png │ │ │ │ │ ├── directive-prop.png │ │ │ │ │ ├── directive-tab.png │ │ │ │ │ ├── filemanage-delorcopy.png │ │ │ │ │ ├── filemanage-pick.png │ │ │ │ │ ├── filemanage-pickdoc.png │ │ │ │ │ ├── filemanage-pickuse.png │ │ │ │ │ ├── filemanage-upload.png │ │ │ │ │ ├── form-data-container-01.png │ │ │ │ │ ├── form-data-container-02.png │ │ │ │ │ ├── form-data-container-03-2.png │ │ │ │ │ ├── form-data-container-03.png │ │ │ │ │ ├── form-data-container-04.png │ │ │ │ │ ├── form-data-container-05.png │ │ │ │ │ ├── form-data-container-06.png │ │ │ │ │ ├── form-data-container-07.png │ │ │ │ │ ├── form-data-container-08.png │ │ │ │ │ ├── form-data-container-09.png │ │ │ │ │ ├── function-using-01.png │ │ │ │ │ ├── function-using-02.png │ │ │ │ │ ├── function-using-03.png │ │ │ │ │ ├── function-using-04.png │ │ │ │ │ ├── function-using-05.png │ │ │ │ │ ├── function-using-06.png │ │ │ │ │ ├── interactive-1.png │ │ │ │ │ ├── interactive-2.png │ │ │ │ │ ├── interactive-3.png │ │ │ │ │ ├── interactive-4.png │ │ │ │ │ ├── interactive-5.png │ │ │ │ │ ├── interactive-6.png │ │ │ │ │ ├── interactive-7.png │ │ │ │ │ ├── interactive-8.png │ │ │ │ │ ├── layout-add1.png │ │ │ │ │ ├── layout-add2.png │ │ │ │ │ ├── layout-change.png │ │ │ │ │ ├── layout-modify-con.png │ │ │ │ │ ├── layout-use.png │ │ │ │ │ ├── media │ │ │ │ │ └── 17168668712027 │ │ │ │ │ │ ├── 17168724549240.jpg │ │ │ │ │ │ ├── 17168724794286.jpg │ │ │ │ │ │ ├── 17168725201892.jpg │ │ │ │ │ │ ├── 17168725346892.jpg │ │ │ │ │ │ ├── 17168725520542.jpg │ │ │ │ │ │ ├── 17168725738364.jpg │ │ │ │ │ │ ├── 17168725867105.jpg │ │ │ │ │ │ ├── 17168726001070.jpg │ │ │ │ │ │ └── 17168727190183.jpg │ │ │ │ │ ├── method-01.png │ │ │ │ │ ├── method-dir-use.png │ │ │ │ │ ├── method-dir.png │ │ │ │ │ ├── method-event.png │ │ │ │ │ ├── method-lifecycle.png │ │ │ │ │ ├── method-method.png │ │ │ │ │ ├── method-remote.png │ │ │ │ │ ├── mobile-1.png │ │ │ │ │ ├── mobile-2.png │ │ │ │ │ ├── mobile-3.png │ │ │ │ │ ├── mobile-4.png │ │ │ │ │ ├── mobile-5.png │ │ │ │ │ ├── mobile-6.png │ │ │ │ │ ├── mobile-7.png │ │ │ │ │ ├── mobile-8.png │ │ │ │ │ ├── page-list.png │ │ │ │ │ ├── page-manage-1.png │ │ │ │ │ ├── page-manage-2.png │ │ │ │ │ ├── page1.png │ │ │ │ │ ├── page11.png │ │ │ │ │ ├── page2.png │ │ │ │ │ ├── page3.png │ │ │ │ │ ├── page4.png │ │ │ │ │ ├── page5.png │ │ │ │ │ ├── page6.png │ │ │ │ │ ├── page7.png │ │ │ │ │ ├── page8.png │ │ │ │ │ ├── pagetemplate-from1.png │ │ │ │ │ ├── pagetemplate-from2.png │ │ │ │ │ ├── pagetemplate-from3.png │ │ │ │ │ ├── pagetemplate-import.png │ │ │ │ │ ├── pagetemplate-use-canvas.png │ │ │ │ │ ├── pagetemplate-use-create1.png │ │ │ │ │ ├── pagetemplate-use-create2.png │ │ │ │ │ ├── project-list.png │ │ │ │ │ ├── project-template.png │ │ │ │ │ ├── release-data.png │ │ │ │ │ ├── release-log.png │ │ │ │ │ ├── release-paas.png │ │ │ │ │ ├── release-result.png │ │ │ │ │ ├── routemanage-addsubroute.png │ │ │ │ │ ├── routemanage-bindroute.png │ │ │ │ │ ├── routemanage-createpage.png │ │ │ │ │ ├── routemanage-entry.png │ │ │ │ │ ├── routemanage-layoutroute.png │ │ │ │ │ ├── routemanage-modifyroute.png │ │ │ │ │ ├── routemanage-modifyroute2.png │ │ │ │ │ ├── routemanage-rebindroute.png │ │ │ │ │ ├── variable-directive.png │ │ │ │ │ ├── variable-in-method1.png │ │ │ │ │ ├── variable-in-method2.png │ │ │ │ │ ├── variable-in-method3.png │ │ │ │ │ ├── variable-in-method4.png │ │ │ │ │ ├── variable-method.png │ │ │ │ │ ├── variable-prop.png │ │ │ │ │ ├── variable-using-01.png │ │ │ │ │ ├── variable-using-02.png │ │ │ │ │ ├── variable-using-03.png │ │ │ │ │ ├── variable-using-04.png │ │ │ │ │ ├── variable-using-05.png │ │ │ │ │ ├── variable-using-06.png │ │ │ │ │ ├── variable-using-07.png │ │ │ │ │ ├── variable-using-08.png │ │ │ │ │ ├── variable-using-09.png │ │ │ │ │ ├── variable-using-10.png │ │ │ │ │ ├── version-archiving.png │ │ │ │ │ ├── version-create.png │ │ │ │ │ ├── version-cur.png │ │ │ │ │ ├── version-entry.png │ │ │ │ │ ├── version-list.png │ │ │ │ │ ├── version-release.png │ │ │ │ │ └── version-releasever.png │ │ │ ├── home-bg.png │ │ │ ├── homeBg.jpg │ │ │ ├── hongbao.png │ │ │ ├── kendo.png │ │ │ ├── layout.png │ │ │ ├── layout │ │ │ │ ├── preview-complex-s.png │ │ │ │ ├── preview-complex.png │ │ │ │ ├── preview-left-right-s.png │ │ │ │ ├── preview-left-right.png │ │ │ │ ├── preview-mobile-bottom-s.png │ │ │ │ ├── preview-mobile-bottom.png │ │ │ │ ├── preview-mobile-side-s.png │ │ │ │ ├── preview-mobile-side.png │ │ │ │ ├── preview-top-bottom-s.png │ │ │ │ └── preview-top-bottom.png │ │ │ ├── lock.svg │ │ │ ├── logo-name.png │ │ │ ├── logo.png │ │ │ ├── magic.png │ │ │ ├── no-permission.svg │ │ │ ├── notify-type-icons │ │ │ │ ├── mail.svg │ │ │ │ ├── rtx.svg │ │ │ │ ├── sms.svg │ │ │ │ ├── voice.svg │ │ │ │ └── weixin.svg │ │ │ ├── page-demo.png │ │ │ ├── phone.png │ │ │ ├── point.png │ │ │ ├── portal.png │ │ │ ├── preview-error.png │ │ │ ├── process.png │ │ │ ├── qq.png │ │ │ ├── react.png │ │ │ ├── resource.png │ │ │ ├── svg │ │ │ │ ├── add-line.svg │ │ │ │ ├── bk-logo.svg │ │ │ │ ├── bk-text.svg │ │ │ │ ├── drag.svg │ │ │ │ ├── icon-border-all.svg │ │ │ │ ├── icon-border-s.svg │ │ │ │ ├── icon-border-x.svg │ │ │ │ ├── icon-border-y.svg │ │ │ │ ├── icon-border-z.svg │ │ │ │ ├── icon-radius-s.svg │ │ │ │ ├── icon-radius-ys.svg │ │ │ │ ├── icon-radius-yx.svg │ │ │ │ ├── icon-radius-zs.svg │ │ │ │ ├── loading.svg │ │ │ │ ├── right-down.svg │ │ │ │ ├── right-up.svg │ │ │ │ ├── stretch.svg │ │ │ │ └── up-down-extend.svg │ │ │ ├── vue.png │ │ │ └── wx-work.png │ │ ├── locales │ │ │ ├── i18n.js │ │ │ ├── lang │ │ │ │ ├── en.json │ │ │ │ └── zh-cn.json │ │ │ ├── temp-func │ │ │ │ ├── en.json │ │ │ │ └── zh-cn.json │ │ │ └── version-log │ │ │ │ ├── en.json │ │ │ │ └── zh-cn.json │ │ ├── main.js │ │ ├── preview │ │ │ ├── children │ │ │ │ ├── 404 │ │ │ │ │ ├── 404.css │ │ │ │ │ └── 404.js │ │ │ │ ├── app │ │ │ │ │ ├── app.css │ │ │ │ │ └── app.js │ │ │ │ ├── bk-error │ │ │ │ │ ├── bk-error.css │ │ │ │ │ └── bk-error.js │ │ │ │ └── home │ │ │ │ │ └── home.js │ │ │ ├── component.js │ │ │ ├── index.js │ │ │ ├── overlay.js │ │ │ ├── render.js │ │ │ ├── router.js │ │ │ ├── store.js │ │ │ └── style.js │ │ ├── router │ │ │ └── index.js │ │ ├── shim.d.ts │ │ ├── store │ │ │ ├── index.js │ │ │ └── modules │ │ │ │ ├── ai.js │ │ │ │ ├── api.js │ │ │ │ ├── components.js │ │ │ │ ├── data-source.js │ │ │ │ ├── drag.js │ │ │ │ ├── file.js │ │ │ │ ├── flow │ │ │ │ ├── index.js │ │ │ │ ├── task.js │ │ │ │ └── tpl.js │ │ │ │ ├── function-market.js │ │ │ │ ├── functions.js │ │ │ │ ├── iam.js │ │ │ │ ├── icon-manage.js │ │ │ │ ├── layout.js │ │ │ │ ├── logs.js │ │ │ │ ├── member.js │ │ │ │ ├── nocode │ │ │ │ ├── data-manage.js │ │ │ │ ├── flow.js │ │ │ │ ├── form-setting.js │ │ │ │ ├── form.js │ │ │ │ ├── index.js │ │ │ │ ├── markdown.js │ │ │ │ └── node-config.js │ │ │ │ ├── page-template.js │ │ │ │ ├── page.js │ │ │ │ ├── platform-config.js │ │ │ │ ├── project-version.js │ │ │ │ ├── project.js │ │ │ │ ├── release.js │ │ │ │ ├── resource-lock.js │ │ │ │ ├── route.js │ │ │ │ ├── saas-backend.js │ │ │ │ ├── third-part-db.js │ │ │ │ ├── variable.js │ │ │ │ └── vue-code.js │ │ └── views │ │ │ ├── edit-nocode │ │ │ ├── components │ │ │ │ ├── action-tool │ │ │ │ │ ├── components │ │ │ │ │ │ ├── clear.vue │ │ │ │ │ │ └── code-and-json.vue │ │ │ │ │ └── index.vue │ │ │ │ ├── header-operate │ │ │ │ │ ├── data-manage-operate.vue │ │ │ │ │ ├── form-page-operate.vue │ │ │ │ │ ├── index.vue │ │ │ │ │ └── save.vue │ │ │ │ ├── more-actions │ │ │ │ │ ├── data-manage-operate.vue │ │ │ │ │ ├── form-page-operate.vue │ │ │ │ │ └── index.vue │ │ │ │ ├── operation-area │ │ │ │ │ └── index.vue │ │ │ │ └── operation-select │ │ │ │ │ └── index.vue │ │ │ ├── index.vue │ │ │ └── preview-mixin.js │ │ │ ├── help │ │ │ └── index.vue │ │ │ ├── home │ │ │ └── index.vue │ │ │ ├── index.vue │ │ │ ├── index │ │ │ ├── components │ │ │ │ ├── action-tool │ │ │ │ │ ├── children │ │ │ │ │ │ ├── code-and-json-dialog.vue │ │ │ │ │ │ └── page-variable.vue │ │ │ │ │ ├── components │ │ │ │ │ │ ├── canvas-guide.vue │ │ │ │ │ │ ├── clear-canvas.vue │ │ │ │ │ │ ├── code-and-json.vue │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── use-canvas-lock.js │ │ │ │ │ │ │ ├── use-preview-img.js │ │ │ │ │ │ │ └── use-save.js │ │ │ │ │ │ ├── menu-item.vue │ │ │ │ │ │ ├── preview.vue │ │ │ │ │ │ ├── quick-operation.vue │ │ │ │ │ │ ├── save-as-template.vue │ │ │ │ │ │ ├── save-canvas.vue │ │ │ │ │ │ ├── show-function.vue │ │ │ │ │ │ └── show-variable.vue │ │ │ │ │ └── index.vue │ │ │ │ ├── draw-layout │ │ │ │ │ └── index.vue │ │ │ │ ├── header-operate │ │ │ │ │ ├── common │ │ │ │ │ │ ├── use-canvas-lock.js │ │ │ │ │ │ ├── use-preview-img.js │ │ │ │ │ │ ├── use-save-form-container.js │ │ │ │ │ │ └── use-save.js │ │ │ │ │ ├── index.vue │ │ │ │ │ ├── page-setting.vue │ │ │ │ │ ├── preview.vue │ │ │ │ │ └── save.vue │ │ │ │ ├── material-panel │ │ │ │ │ ├── components │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── group-box │ │ │ │ │ │ │ │ ├── hacker.js │ │ │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ │ │ ├── render-component.vue │ │ │ │ │ │ │ │ ├── render-custom-component.vue │ │ │ │ │ │ │ │ ├── render-icon.vue │ │ │ │ │ │ │ │ └── render-template.vue │ │ │ │ │ │ │ ├── search-box │ │ │ │ │ │ │ │ └── index.vue │ │ │ │ │ │ │ └── select-tab │ │ │ │ │ │ │ │ └── index.vue │ │ │ │ │ │ ├── panel-ai │ │ │ │ │ │ │ ├── children │ │ │ │ │ │ │ │ └── page-info.vue │ │ │ │ │ │ │ ├── hooks │ │ │ │ │ │ │ │ ├── use-base.js │ │ │ │ │ │ │ │ ├── use-component.js │ │ │ │ │ │ │ │ ├── use-data-source.js │ │ │ │ │ │ │ │ ├── use-icon.js │ │ │ │ │ │ │ │ ├── use-method.js │ │ │ │ │ │ │ │ └── use-page.js │ │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ │ └── system-prompt.txt │ │ │ │ │ │ ├── panel-component │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ ├── render-base-component.vue │ │ │ │ │ │ │ │ ├── render-custom-component.vue │ │ │ │ │ │ │ │ ├── render-icon.vue │ │ │ │ │ │ │ │ └── select-base-component.vue │ │ │ │ │ │ │ └── index.vue │ │ │ │ │ │ ├── panel-form-engine │ │ │ │ │ │ │ └── index.vue │ │ │ │ │ │ ├── panel-icon │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ ├── render-offcial-icon.vue │ │ │ │ │ │ │ │ └── render-project-icon.vue │ │ │ │ │ │ │ └── index.vue │ │ │ │ │ │ ├── panel-template │ │ │ │ │ │ │ └── index.vue │ │ │ │ │ │ ├── panel-tree │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ └── tree │ │ │ │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ │ │ │ ├── transition.js │ │ │ │ │ │ │ │ │ ├── tree-item.vue │ │ │ │ │ │ │ │ │ ├── tree-node.js │ │ │ │ │ │ │ │ │ └── utils.js │ │ │ │ │ │ │ └── index.vue │ │ │ │ │ │ └── select-panel │ │ │ │ │ │ │ └── index.vue │ │ │ │ │ └── index.vue │ │ │ │ ├── modifier-panel │ │ │ │ │ └── index.vue │ │ │ │ ├── operation-area │ │ │ │ │ ├── components │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── background-color.vue │ │ │ │ │ │ │ └── min-width.vue │ │ │ │ │ │ ├── page-function.vue │ │ │ │ │ │ ├── page-json.vue │ │ │ │ │ │ ├── page-setting.vue │ │ │ │ │ │ ├── page-variable.vue │ │ │ │ │ │ └── source-code.vue │ │ │ │ │ └── index.vue │ │ │ │ ├── operation-select │ │ │ │ │ └── index.vue │ │ │ │ ├── page-list │ │ │ │ │ └── index.vue │ │ │ │ └── utils │ │ │ │ │ ├── index.js │ │ │ │ │ └── sync-variable-value.js │ │ │ └── index.vue │ │ │ ├── preview │ │ │ ├── preview-backend-api.vue │ │ │ ├── preview-mobile.vue │ │ │ ├── preview-template.vue │ │ │ └── swagger-ui.css │ │ │ ├── project │ │ │ ├── api-manage │ │ │ │ ├── children │ │ │ │ │ ├── category.vue │ │ │ │ │ └── list.vue │ │ │ │ └── index.vue │ │ │ ├── app-perm-model │ │ │ │ ├── app-perm-model-sideslider.vue │ │ │ │ └── index.vue │ │ │ ├── auth-manage │ │ │ │ └── index.vue │ │ │ ├── backend-module │ │ │ │ ├── children │ │ │ │ │ ├── backend │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── canvas-tools.vue │ │ │ │ │ │ │ ├── common.js │ │ │ │ │ │ │ ├── render-child-node.vue │ │ │ │ │ │ │ ├── render-header.vue │ │ │ │ │ │ │ ├── render-nodes.vue │ │ │ │ │ │ │ ├── render-parent-node.vue │ │ │ │ │ │ │ ├── render-sideslider.vue │ │ │ │ │ │ │ └── update-node-dialog.vue │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ └── x6-render-vue │ │ │ │ │ │ │ ├── node.js │ │ │ │ │ │ │ ├── registry.js │ │ │ │ │ │ │ └── view.js │ │ │ │ │ └── category.vue │ │ │ │ └── index.vue │ │ │ ├── basic.vue │ │ │ ├── component-manage │ │ │ │ ├── all │ │ │ │ │ ├── components │ │ │ │ │ │ ├── operation.vue │ │ │ │ │ │ ├── render-category.vue │ │ │ │ │ │ └── render-list.vue │ │ │ │ │ └── index.vue │ │ │ │ ├── index.vue │ │ │ │ ├── public-category.vue │ │ │ │ ├── public-scope.vue │ │ │ │ └── useing │ │ │ │ │ └── index.vue │ │ │ ├── data-source-manage │ │ │ │ ├── data-operation │ │ │ │ │ ├── children │ │ │ │ │ │ ├── ai-sql-input.vue │ │ │ │ │ │ ├── json-query │ │ │ │ │ │ │ ├── children │ │ │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ │ │ ├── select-bk-base-table.vue │ │ │ │ │ │ │ │ │ ├── select-condition.vue │ │ │ │ │ │ │ │ │ ├── select-enable.vue │ │ │ │ │ │ │ │ │ ├── select-field.vue │ │ │ │ │ │ │ │ │ ├── select-join.vue │ │ │ │ │ │ │ │ │ ├── select-table-field.vue │ │ │ │ │ │ │ │ │ ├── select-table.vue │ │ │ │ │ │ │ │ │ ├── select-type.vue │ │ │ │ │ │ │ │ │ ├── select-value.vue │ │ │ │ │ │ │ │ │ └── select-wrapper.vue │ │ │ │ │ │ │ │ ├── composables │ │ │ │ │ │ │ │ │ └── validate.ts │ │ │ │ │ │ │ │ ├── render-group.vue │ │ │ │ │ │ │ │ ├── render-limit.vue │ │ │ │ │ │ │ │ ├── render-order.vue │ │ │ │ │ │ │ │ ├── render-table.vue │ │ │ │ │ │ │ │ └── render-where.vue │ │ │ │ │ │ │ └── index.vue │ │ │ │ │ │ ├── query-history.vue │ │ │ │ │ │ ├── query-result.vue │ │ │ │ │ │ ├── sql-query.vue │ │ │ │ │ │ └── system-sql-prompt.txt │ │ │ │ │ └── index.vue │ │ │ │ └── data-table │ │ │ │ │ ├── common │ │ │ │ │ ├── confirm-dialog.vue │ │ │ │ │ ├── export.vue │ │ │ │ │ ├── field-table.tsx │ │ │ │ │ ├── header.tsx │ │ │ │ │ ├── import.vue │ │ │ │ │ ├── info-table.vue │ │ │ │ │ ├── show-column-table.vue │ │ │ │ │ └── use-download-demo.ts │ │ │ │ │ ├── data-manage │ │ │ │ │ ├── index.vue │ │ │ │ │ ├── render-api.vue │ │ │ │ │ ├── render-data.vue │ │ │ │ │ ├── render-function.vue │ │ │ │ │ └── render-struct.vue │ │ │ │ │ ├── index.vue │ │ │ │ │ └── table-design │ │ │ │ │ ├── composables │ │ │ │ │ └── table-info.ts │ │ │ │ │ ├── create-table.vue │ │ │ │ │ ├── edit-table.vue │ │ │ │ │ ├── show-table.vue │ │ │ │ │ ├── table-list │ │ │ │ │ ├── index.vue │ │ │ │ │ ├── list │ │ │ │ │ │ └── index.vue │ │ │ │ │ └── third-part-db │ │ │ │ │ │ ├── components │ │ │ │ │ │ ├── render-aside.vue │ │ │ │ │ │ ├── render-main.vue │ │ │ │ │ │ └── render-sideslider.vue │ │ │ │ │ │ └── index.vue │ │ │ │ │ └── update-record.vue │ │ │ ├── file-manage │ │ │ │ └── index.vue │ │ │ ├── flow-manage-old │ │ │ │ ├── create-ticket-page-edit │ │ │ │ │ └── index.vue │ │ │ │ ├── edit │ │ │ │ │ ├── advanced-config.vue │ │ │ │ │ ├── components │ │ │ │ │ │ ├── flow-selector.vue │ │ │ │ │ │ └── generate-data-manage-page.vue │ │ │ │ │ ├── flow-config.vue │ │ │ │ │ └── index.vue │ │ │ │ ├── index.vue │ │ │ │ ├── list │ │ │ │ │ ├── archived-list.vue │ │ │ │ │ ├── create-flow-dialog.vue │ │ │ │ │ └── flow-list.vue │ │ │ │ └── node-utils.js │ │ │ ├── flow-manage │ │ │ │ ├── index.vue │ │ │ │ ├── tpl-edit │ │ │ │ │ ├── canvas │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ ├── node-detail │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ ├── form-section.vue │ │ │ │ │ │ │ │ ├── node-name.vue │ │ │ │ │ │ │ │ └── node-processor.vue │ │ │ │ │ │ │ ├── data-processing-node │ │ │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ │ │ └── processing-rule-edit.vue │ │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ │ └── manual-node │ │ │ │ │ │ │ │ ├── form-binding-config │ │ │ │ │ │ │ │ ├── bound-detail.vue │ │ │ │ │ │ │ │ ├── create-binding.vue │ │ │ │ │ │ │ │ ├── form-container-render-comp.js │ │ │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ │ │ ├── page-bound-editor.vue │ │ │ │ │ │ │ │ ├── preview-form-dialog.vue │ │ │ │ │ │ │ │ └── select-form-dialog.vue │ │ │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ │ │ └── node-fields-canvas │ │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ ├── breadcrumb-nav.vue │ │ │ │ │ │ │ │ ├── json-view-btn.vue │ │ │ │ │ │ │ │ └── save-btn.vue │ │ │ │ │ │ │ │ ├── fields-canvas.vue │ │ │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ │ │ ├── materials.vue │ │ │ │ │ │ │ │ └── modifiers.vue │ │ │ │ │ │ └── render-graph │ │ │ │ │ │ │ ├── constants.js │ │ │ │ │ │ │ ├── dnd.vue │ │ │ │ │ │ │ ├── graph.vue │ │ │ │ │ │ │ ├── node.vue │ │ │ │ │ │ │ ├── registry.js │ │ │ │ │ │ │ └── tools.vue │ │ │ │ │ ├── components │ │ │ │ │ │ ├── flow-selector.vue │ │ │ │ │ │ └── tags-viewer.vue │ │ │ │ │ ├── config │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ └── notify-type-config.vue │ │ │ │ │ ├── debug │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ ├── manual-node.js │ │ │ │ │ │ └── node-operate-sideslider.vue │ │ │ │ │ └── index.vue │ │ │ │ └── tpl-list │ │ │ │ │ ├── archived-list.vue │ │ │ │ │ ├── create-flow-dialog.vue │ │ │ │ │ └── index.vue │ │ │ ├── function-manage │ │ │ │ ├── children │ │ │ │ │ ├── group.vue │ │ │ │ │ └── list.vue │ │ │ │ └── index.vue │ │ │ ├── index.vue │ │ │ ├── layout │ │ │ │ ├── components │ │ │ │ │ └── layout-dialog.vue │ │ │ │ └── index.vue │ │ │ ├── logs.vue │ │ │ ├── member-manage.vue │ │ │ ├── member.vue │ │ │ ├── page-manage │ │ │ │ ├── children │ │ │ │ │ ├── create-page-entry.vue │ │ │ │ │ ├── flow-page-preview.vue │ │ │ │ │ ├── form-manage-page.vue │ │ │ │ │ ├── menu-header.vue │ │ │ │ │ ├── page-content-header.vue │ │ │ │ │ ├── page-menu-item.vue │ │ │ │ │ ├── page-operate-dialog.vue │ │ │ │ │ └── use-page-operation.js │ │ │ │ └── index.vue │ │ │ ├── project-data.js │ │ │ ├── release │ │ │ │ ├── components │ │ │ │ │ ├── completed-info.vue │ │ │ │ │ ├── completed-log.vue │ │ │ │ │ ├── deploy-log │ │ │ │ │ │ ├── deploy-stage │ │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ │ ├── render-process-item.vue │ │ │ │ │ │ │ └── render-status-item.vue │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ ├── render-deploy-stage.vue │ │ │ │ │ │ ├── render-skip-stage.vue │ │ │ │ │ │ └── render-stage.vue │ │ │ │ │ ├── deploy-timeline │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ └── round-loading │ │ │ │ │ │ │ └── index.vue │ │ │ │ │ ├── deploying-type.vue │ │ │ │ │ ├── release-action.vue │ │ │ │ │ ├── running-info.vue │ │ │ │ │ └── running-log.vue │ │ │ │ ├── history.vue │ │ │ │ ├── index.vue │ │ │ │ ├── package.vue │ │ │ │ ├── publish-mixin.js │ │ │ │ └── publish.vue │ │ │ ├── router-manage │ │ │ │ ├── children │ │ │ │ │ ├── bind-route-form.vue │ │ │ │ │ └── bind-route-selector.vue │ │ │ │ ├── index.vue │ │ │ │ └── route-list.vue │ │ │ ├── template-manage │ │ │ │ ├── components │ │ │ │ │ ├── render-category.vue │ │ │ │ │ ├── render-template.vue │ │ │ │ │ ├── template-edit-dialog.vue │ │ │ │ │ ├── template-import-dialog.vue │ │ │ │ │ └── template-mixin.js │ │ │ │ └── index.vue │ │ │ ├── variable-manage.vue │ │ │ └── version-manage │ │ │ │ ├── children │ │ │ │ └── form-sideslider.vue │ │ │ │ └── index.vue │ │ │ ├── status │ │ │ ├── 403.vue │ │ │ ├── 404.vue │ │ │ └── non-exist-project.vue │ │ │ └── system │ │ │ ├── components │ │ │ ├── create-empty-project-dialog.vue │ │ │ ├── download-dialog.vue │ │ │ ├── export-dialog.vue │ │ │ ├── project-form.vue │ │ │ ├── project-intro.vue │ │ │ ├── set-template-dialog.vue │ │ │ └── template-dialog.vue │ │ │ ├── function-market.vue │ │ │ ├── health.vue │ │ │ ├── index.vue │ │ │ ├── operation │ │ │ ├── index.vue │ │ │ └── stats │ │ │ │ ├── chart-mixin.js │ │ │ │ ├── comp │ │ │ │ ├── dim-comp.vue │ │ │ │ ├── dim-time.vue │ │ │ │ └── index.vue │ │ │ │ ├── export-button.vue │ │ │ │ ├── func │ │ │ │ ├── dim-func.vue │ │ │ │ ├── dim-time.vue │ │ │ │ └── index.vue │ │ │ │ ├── project │ │ │ │ ├── dim-project.vue │ │ │ │ ├── dim-time.vue │ │ │ │ └── index.vue │ │ │ │ ├── shared-mixin.js │ │ │ │ ├── table-list-mixin.js │ │ │ │ └── user │ │ │ │ ├── dim-time.vue │ │ │ │ ├── dim-user.vue │ │ │ │ └── index.vue │ │ │ ├── project-manage │ │ │ ├── children │ │ │ │ ├── list-card.vue │ │ │ │ ├── list-table.vue │ │ │ │ ├── project-template-list.vue │ │ │ │ └── show-project-template.vue │ │ │ └── index.vue │ │ │ └── template-market.vue │ ├── static │ │ ├── bk-lesscode-component-vue2.zip │ │ ├── bk-lesscode-component-vue3.zip │ │ ├── images │ │ │ ├── favion.png │ │ │ ├── firstswiper.jpg │ │ │ ├── icon │ │ │ │ ├── error.svg │ │ │ │ ├── failed.svg │ │ │ │ ├── loading.svg │ │ │ │ ├── normal.svg │ │ │ │ ├── off.svg │ │ │ │ ├── pending.svg │ │ │ │ ├── success.svg │ │ │ │ ├── unknown.svg │ │ │ │ ├── waiting.svg │ │ │ │ └── warning.svg │ │ │ ├── logo.png │ │ │ └── secondswiper.jpg │ │ └── login_success.html │ └── typings │ │ ├── global.d.ts │ │ └── shims-vue.d.ts ├── server │ ├── app.browser.js │ ├── conf │ │ ├── bk-repo.js.example │ │ ├── data-base.js.example │ │ ├── data-source.js.example │ │ ├── db-migrate.json.example │ │ ├── encrypt-secret-key.js.example │ │ ├── flow.js.example │ │ ├── http.js.example │ │ ├── iam.js.example │ │ ├── npm.js.example │ │ └── v3.js.example │ ├── controller │ │ ├── ai.js │ │ ├── api.js │ │ ├── bkvision.js │ │ ├── component-category.js │ │ ├── component-favourite.js │ │ ├── component.js │ │ ├── custom-business.js │ │ ├── data-source.js │ │ ├── db-migration-helper.js │ │ ├── file.js │ │ ├── flow.js │ │ ├── function-market.js │ │ ├── function.js │ │ ├── health.js │ │ ├── iam-migration-helper.js │ │ ├── iam.js │ │ ├── layout.js │ │ ├── logs.js │ │ ├── mock-data.js │ │ ├── no-code.js │ │ ├── nocode-form.js │ │ ├── notice-center.js │ │ ├── open-api.js │ │ ├── operation.js │ │ ├── page-template-category.js │ │ ├── page-template.js │ │ ├── page.js │ │ ├── project-code.js │ │ ├── project-version.js │ │ ├── project.js │ │ ├── release.js │ │ ├── resource-lock.js │ │ ├── route.js │ │ ├── saas-backend.js │ │ ├── saas-module-story.js │ │ ├── third-part-db.js │ │ ├── user.js │ │ ├── variable.js │ │ └── vue-code.js │ ├── custom-global.js │ ├── decorator │ │ ├── authorization │ │ │ └── index.js │ │ ├── check │ │ │ └── index.js │ │ ├── controller │ │ │ ├── index.js │ │ │ ├── params.js │ │ │ └── router.js │ │ ├── index.js │ │ └── send │ │ │ └── index.js │ ├── initResources │ │ ├── custom-comp │ │ │ ├── index.js │ │ │ └── resources │ │ │ │ ├── banner-container │ │ │ │ ├── config.json │ │ │ │ ├── index.iife.min.js │ │ │ │ └── index.umd.min.js │ │ │ │ ├── calendar │ │ │ │ ├── config.json │ │ │ │ ├── index.iife.min.js │ │ │ │ └── index.umd.min.js │ │ │ │ ├── descriptions │ │ │ │ ├── config.json │ │ │ │ ├── index.iife.min.js │ │ │ │ └── index.umd.min.js │ │ │ │ ├── digitizing-tablet │ │ │ │ ├── config.json │ │ │ │ ├── index.iife.min.js │ │ │ │ └── index.umd.min.js │ │ │ │ ├── excel-diff │ │ │ │ ├── config.json │ │ │ │ ├── index.iife.min.js │ │ │ │ └── index.umd.min.js │ │ │ │ ├── info-form │ │ │ │ ├── config.json │ │ │ │ ├── index.iife.min.js │ │ │ │ └── index.umd.min.js │ │ │ │ ├── info-img │ │ │ │ ├── config.json │ │ │ │ ├── index.iife.min.js │ │ │ │ └── index.umd.min.js │ │ │ │ ├── md-editor │ │ │ │ ├── config.json │ │ │ │ ├── index.iife.min.js │ │ │ │ └── index.umd.min.js │ │ │ │ ├── normal-iframe │ │ │ │ ├── config.json │ │ │ │ ├── index.iife.min.js │ │ │ │ └── index.umd.min.js │ │ │ │ ├── progress-panel │ │ │ │ ├── config.json │ │ │ │ ├── index.iife.min.js │ │ │ │ └── index.umd.min.js │ │ │ │ └── publicity-page-graphic │ │ │ │ ├── config.json │ │ │ │ ├── index.iife.min.js │ │ │ │ └── index.umd.min.js │ │ ├── function │ │ │ ├── index.js │ │ │ └── resources │ │ │ │ └── market-func-1.json │ │ ├── index.js │ │ ├── inner-project │ │ │ └── index.js │ │ ├── offcial-project │ │ │ └── index.js │ │ └── page-template │ │ │ ├── index.js │ │ │ └── resources │ │ │ ├── mobile-template-itemshow.json │ │ │ ├── mobile-template-tabchange.json │ │ │ ├── template-announcement.json │ │ │ ├── template-banner.json │ │ │ ├── template-footer.json │ │ │ ├── template-form.json │ │ │ ├── template-nav-horizontal.json │ │ │ ├── template-nopermission.json │ │ │ ├── template-product-feature.json │ │ │ ├── template-step.json │ │ │ ├── template-tab-simplified.json │ │ │ ├── template-tab.json │ │ │ ├── template-table-customcol.json │ │ │ ├── template-table-demo.json │ │ │ ├── template-table-displaycol.json │ │ │ ├── template-table-filtersort.json │ │ │ ├── template-table-localpagination.json │ │ │ ├── template-table-nopagination.json │ │ │ ├── template-table-search.json │ │ │ └── template-tree.json │ ├── locales │ │ ├── en.json │ │ └── zh-cn.json │ ├── logger.js │ ├── middleware │ │ ├── auth.js │ │ ├── error.js │ │ ├── http.js │ │ ├── json-send.js │ │ ├── operation-logger.js │ │ └── request-context.js │ ├── model │ │ ├── common.js │ │ ├── comp-favourite.js │ │ ├── comp-share.js │ │ ├── component-category.js │ │ ├── component.js │ │ ├── entities │ │ │ ├── ai-prompt.js │ │ │ ├── api-category.js │ │ │ ├── api-domains.js │ │ │ ├── api-migration.js │ │ │ ├── api.js │ │ │ ├── base.js │ │ │ ├── comp-category.js │ │ │ ├── comp-favourite.js │ │ │ ├── comp-share.js │ │ │ ├── comp.js │ │ │ ├── data-table-modify-record.js │ │ │ ├── data-table.js │ │ │ ├── file.js │ │ │ ├── flow-task.js │ │ │ ├── flow-tpl.js │ │ │ ├── flow.js │ │ │ ├── form.js │ │ │ ├── func-api.js │ │ │ ├── func-func.js │ │ │ ├── func-group.js │ │ │ ├── func-market.js │ │ │ ├── func-variable.js │ │ │ ├── func.js │ │ │ ├── iam-app-perm-action.js │ │ │ ├── iam-app-perm.js │ │ │ ├── iam-migration.js │ │ │ ├── layout-inst.js │ │ │ ├── layout.js │ │ │ ├── operate-log.js │ │ │ ├── page-comp.js │ │ │ ├── page-func.js │ │ │ ├── page-route.js │ │ │ ├── page-template-category.js │ │ │ ├── page-template.js │ │ │ ├── page-variable.js │ │ │ ├── page.js │ │ │ ├── perm.js │ │ │ ├── platform-admin.js │ │ │ ├── preview-db.js │ │ │ ├── project-bkflow-space.js │ │ │ ├── project-comp.js │ │ │ ├── project-favourite.js │ │ │ ├── project-func-group.js │ │ │ ├── project-func-market.js │ │ │ ├── project-page.js │ │ │ ├── project-version.js │ │ │ ├── project.js │ │ │ ├── query-record.js │ │ │ ├── release-version.js │ │ │ ├── role-perm.js │ │ │ ├── role.js │ │ │ ├── route.js │ │ │ ├── saas-backend.js │ │ │ ├── saas-module-story.js │ │ │ ├── third-part-db.js │ │ │ ├── token.js │ │ │ ├── user-project-role.js │ │ │ ├── user.js │ │ │ ├── variable-func.js │ │ │ ├── variable-variable.js │ │ │ ├── variable.js │ │ │ ├── version.js │ │ │ └── white-list.js │ │ ├── iam-app-perm.js │ │ ├── iam.js │ │ ├── layout.js │ │ ├── migrations │ │ │ ├── 20210329081322-init-sql.js │ │ │ ├── 20210329113820-update-sql.js │ │ │ ├── 20210426083005-update-sql.js │ │ │ ├── 20210510035758-update-sql.js │ │ │ ├── 20210524075300-update-sql.js │ │ │ ├── 20210613024623-update-sql.js │ │ │ ├── 20210706115827-update-sql.js │ │ │ ├── 20210816073030-update-sql.js │ │ │ ├── 20210819140603-update-sql.js │ │ │ ├── 20210820022936-update-sql.js │ │ │ ├── 20210902025823-update-sql.js │ │ │ ├── 20211014084206-update-sql.js │ │ │ ├── 20211103024457-update-sql.js │ │ │ ├── 20211109090310-update-sql.js │ │ │ ├── 20211124155657-update-sql.js │ │ │ ├── 20211201021005-update-sql.js │ │ │ ├── 20220316035357-update-sql.js │ │ │ ├── 20220330034705-update-sql.js │ │ │ ├── 20220418081737-update-sql.js │ │ │ ├── 20220514154840-update-sql.js │ │ │ ├── 20220516063846-update-sql.js │ │ │ ├── 20220518022855-update-sql.js │ │ │ ├── 20220525114335-update-sql.js │ │ │ ├── 20220603122851-update-sql.js │ │ │ ├── 20220610155110-update-sql.js │ │ │ ├── 20220615124909-update-sql.js │ │ │ ├── 20220621041055-update-sql.js │ │ │ ├── 20220630080700-update-sql.js │ │ │ ├── 20220707034530-update-sql.js │ │ │ ├── 20220712130047-update-sql.js │ │ │ ├── 20220726101427-update-sql.js │ │ │ ├── 20220811062039-update-sql.js │ │ │ ├── 20220818125209-update-sql.js │ │ │ ├── 20220823034939-update-sql.js │ │ │ ├── 20220823073549-update-sql.js │ │ │ ├── 20220909092005-update-sql.js │ │ │ ├── 20220923024122-update-sql.js │ │ │ ├── 20221004102006-update-sql.js │ │ │ ├── 20230106064941-update-sql.js │ │ │ ├── 20230423023610-update-sql.js │ │ │ ├── 20230713034122-update-sql.js │ │ │ ├── 20230801022041-update-sql.js │ │ │ ├── 20230808030455-update-sql.js │ │ │ ├── 20231012080912-update-sql.js │ │ │ ├── 20231013071824-update-sql.js │ │ │ ├── 20231123063316-update-sql.js │ │ │ ├── 20231211080837-update-sql.js │ │ │ ├── 20231226063946-update-sql.js │ │ │ ├── 20240129064134-update-sql.js │ │ │ ├── 20240304032126-update-sql.js │ │ │ ├── 20240318084807-update-sql.js │ │ │ ├── 20240413154532-update-sql.js │ │ │ ├── 20240902162632-update-sql.js │ │ │ ├── 20241022151118-update-sql-up.js │ │ │ ├── 20250905024602-update-sql.js │ │ │ └── sqls │ │ │ │ ├── 20210329081322-init-sql-down.sql │ │ │ │ ├── 20210329081322-init-sql-up.sql │ │ │ │ ├── 20210329113820-update-sql-down.sql │ │ │ │ ├── 20210329113820-update-sql-up.sql │ │ │ │ ├── 20210426083005-update-sql-down.sql │ │ │ │ ├── 20210426083005-update-sql-up.sql │ │ │ │ ├── 20210510035758-update-sql-down.sql │ │ │ │ ├── 20210510035758-update-sql-up.sql │ │ │ │ ├── 20210524075300-update-sql-down.sql │ │ │ │ ├── 20210524075300-update-sql-up.sql │ │ │ │ ├── 20210613024623-update-sql-down.sql │ │ │ │ ├── 20210613024623-update-sql-up.sql │ │ │ │ ├── 20210706115827-update-sql-down.sql │ │ │ │ ├── 20210706115827-update-sql-up.sql │ │ │ │ ├── 20210816073030-update-sql-down.sql │ │ │ │ ├── 20210816073030-update-sql-up.sql │ │ │ │ ├── 20210819140603-update-sql-down.sql │ │ │ │ ├── 20210819140603-update-sql-up.sql │ │ │ │ ├── 20210820022936-update-sql-down.sql │ │ │ │ ├── 20210820022936-update-sql-up.sql │ │ │ │ ├── 20210902025823-update-sql-down.sql │ │ │ │ ├── 20210902025823-update-sql-up.sql │ │ │ │ ├── 20211014084206-update-sql-down.sql │ │ │ │ ├── 20211014084206-update-sql-up.sql │ │ │ │ ├── 20211103024457-update-sql-down.sql │ │ │ │ ├── 20211103024457-update-sql-up.sql │ │ │ │ ├── 20211109090310-update-sql-down.sql │ │ │ │ ├── 20211109090310-update-sql-up.sql │ │ │ │ ├── 20211124155657-update-sql-down.sql │ │ │ │ ├── 20211124155657-update-sql-up.sql │ │ │ │ ├── 20211201021005-update-sql-down.sql │ │ │ │ ├── 20211201021005-update-sql-up.sql │ │ │ │ ├── 20220316035357-update-sql-down.sql │ │ │ │ ├── 20220316035357-update-sql-up.sql │ │ │ │ ├── 20220330034705-update-sql-down.sql │ │ │ │ ├── 20220330034705-update-sql-up.sql │ │ │ │ ├── 20220418081737-update-sql-down.sql │ │ │ │ ├── 20220418081737-update-sql-up.sql │ │ │ │ ├── 20220514154840-update-sql-down.sql │ │ │ │ ├── 20220514154840-update-sql-up.sql │ │ │ │ ├── 20220516063846-update-sql-down.sql │ │ │ │ ├── 20220516063846-update-sql-up.sql │ │ │ │ ├── 20220518022855-update-sql-down.sql │ │ │ │ ├── 20220518022855-update-sql-up.sql │ │ │ │ ├── 20220525114335-update-sql-down.sql │ │ │ │ ├── 20220525114335-update-sql-up.sql │ │ │ │ ├── 20220603122851-update-sql-down.sql │ │ │ │ ├── 20220603122851-update-sql-up.sql │ │ │ │ ├── 20220610155110-update-sql-down.sql │ │ │ │ ├── 20220610155110-update-sql-up.sql │ │ │ │ ├── 20220615124909-update-sql-down.sql │ │ │ │ ├── 20220615124909-update-sql-up.sql │ │ │ │ ├── 20220621041055-update-sql-down.sql │ │ │ │ ├── 20220621041055-update-sql-up.sql │ │ │ │ ├── 20220630080700-update-sql-down.sql │ │ │ │ ├── 20220630080700-update-sql-up.sql │ │ │ │ ├── 20220707034530-update-sql-down.sql │ │ │ │ ├── 20220707034530-update-sql-up.sql │ │ │ │ ├── 20220712130047-update-sql-down.sql │ │ │ │ ├── 20220712130047-update-sql-up.sql │ │ │ │ ├── 20220726101427-update-sql-down.sql │ │ │ │ ├── 20220726101427-update-sql-up.sql │ │ │ │ ├── 20220811062039-update-sql-down.sql │ │ │ │ ├── 20220811062039-update-sql-up.sql │ │ │ │ ├── 20220818125209-update-sql-down.sql │ │ │ │ ├── 20220818125209-update-sql-up.sql │ │ │ │ ├── 20220823034939-update-sql-down.sql │ │ │ │ ├── 20220823034939-update-sql-up.sql │ │ │ │ ├── 20220823073549-update-sql-down.sql │ │ │ │ ├── 20220823073549-update-sql-up.sql │ │ │ │ ├── 20220909092005-update-sql-down.sql │ │ │ │ ├── 20220909092005-update-sql-up.sql │ │ │ │ ├── 20220923024122-update-sql-down.sql │ │ │ │ ├── 20220923024122-update-sql-up.sql │ │ │ │ ├── 20221004102006-update-sql-down.sql │ │ │ │ ├── 20221004102006-update-sql-up.sql │ │ │ │ ├── 20230106064941-update-sql-down.sql │ │ │ │ ├── 20230106064941-update-sql-up.sql │ │ │ │ ├── 20230423023610-update-sql-down.sql │ │ │ │ ├── 20230423023610-update-sql-up.sql │ │ │ │ ├── 20230713034122-update-sql-down.sql │ │ │ │ ├── 20230713034122-update-sql-up.sql │ │ │ │ ├── 20230801022041-update-sql-down.sql │ │ │ │ ├── 20230801022041-update-sql-up.sql │ │ │ │ ├── 20230808030455-update-sql-down.sql │ │ │ │ ├── 20230808030455-update-sql-up.sql │ │ │ │ ├── 20231012080912-update-sql-down.sql │ │ │ │ ├── 20231012080912-update-sql-up.sql │ │ │ │ ├── 20231013071824-update-sql-down.sql │ │ │ │ ├── 20231013071824-update-sql-up.sql │ │ │ │ ├── 20231123063316-update-sql-down.sql │ │ │ │ ├── 20231123063316-update-sql-up.sql │ │ │ │ ├── 20231211080837-update-sql-down.sql │ │ │ │ ├── 20231211080837-update-sql-up.sql │ │ │ │ ├── 20231226063946-update-sql-down.sql │ │ │ │ ├── 20231226063946-update-sql-up.sql │ │ │ │ ├── 20240129064134-update-sql-down.sql │ │ │ │ ├── 20240129064134-update-sql-up.sql │ │ │ │ ├── 20240304032126-update-sql-down.sql │ │ │ │ ├── 20240304032126-update-sql-up.sql │ │ │ │ ├── 20240318084807-update-sql-down.sql │ │ │ │ ├── 20240318084807-update-sql-up.sql │ │ │ │ ├── 20240413154532-update-sql-down.sql │ │ │ │ ├── 20240413154532-update-sql-up.sql │ │ │ │ ├── 20240902162632-update-sql-down.sql │ │ │ │ ├── 20240902162632-update-sql-up.sql │ │ │ │ ├── 20241022151118-update-sql-down.sql │ │ │ │ ├── 20241022151118-update-sql-up.sql │ │ │ │ ├── 20250905024602-update-sql-down.sql │ │ │ │ └── 20250905024602-update-sql-up.sql │ │ ├── operate-log.js │ │ ├── page-comp.js │ │ ├── page-template-category.js │ │ ├── page-template.js │ │ ├── page.js │ │ ├── project-code.js │ │ ├── project-version.js │ │ ├── project.js │ │ ├── release-version.js │ │ ├── route.js │ │ ├── sql │ │ │ ├── 20200707 │ │ │ │ └── initial.sql │ │ │ ├── 20200909 │ │ │ │ ├── update.sql │ │ │ │ └── updateFunctionCode.js │ │ │ ├── 20200914 │ │ │ │ └── update.sql │ │ │ ├── 20200922 │ │ │ │ └── update.sql │ │ │ ├── 20200924 │ │ │ │ └── update.sql │ │ │ ├── 20200927 │ │ │ │ └── update.sql │ │ │ ├── 20201014 │ │ │ │ └── update.sql │ │ │ ├── 20201015 │ │ │ │ └── update.sql │ │ │ ├── 20201019 │ │ │ │ └── update.sql │ │ │ ├── 20201020 │ │ │ │ └── update.sql │ │ │ ├── 20201026 │ │ │ │ └── update.sql │ │ │ ├── 20201027 │ │ │ │ └── update.sql │ │ │ ├── 20201109 │ │ │ │ └── update.sql │ │ │ ├── 20201114 │ │ │ │ └── update.sql │ │ │ ├── 20201126 │ │ │ │ └── update.sql │ │ │ ├── 20201128 │ │ │ │ └── update.sql │ │ │ ├── 20201202 │ │ │ │ └── update.sql │ │ │ ├── 20201214 │ │ │ │ └── update.sql │ │ │ ├── 20201215 │ │ │ │ └── update.sql │ │ │ ├── 20201217 │ │ │ │ └── update.sql │ │ │ ├── 20201221 │ │ │ │ └── update.sql │ │ │ ├── 20210125 │ │ │ │ └── update.sql │ │ │ ├── 20210413 │ │ │ │ └── update.sql │ │ │ ├── 20210512 │ │ │ │ └── update.sql │ │ │ ├── 20210604 │ │ │ │ └── update.sql │ │ │ ├── 20210706 │ │ │ │ └── update.sql │ │ │ ├── 20210816 │ │ │ │ └── update.sql │ │ │ ├── 20210901 │ │ │ │ └── update.sql │ │ │ ├── 20210908 │ │ │ │ └── update.sql │ │ │ ├── 20211014 │ │ │ │ └── update.sql │ │ │ ├── 20211031 │ │ │ │ └── update.sql │ │ │ ├── 20211109 │ │ │ │ └── update.sql │ │ │ ├── 20211124 │ │ │ │ └── update.sql │ │ │ ├── 20211201 │ │ │ │ └── update.sql │ │ │ ├── 20220316 │ │ │ │ └── update.sql │ │ │ ├── 20220330 │ │ │ │ └── update.sql │ │ │ ├── 20220418 │ │ │ │ └── update.sql │ │ │ ├── 20220516 │ │ │ │ └── update.sql │ │ │ ├── 20220613 │ │ │ │ └── update.sql │ │ │ ├── 20220707 │ │ │ │ └── update.sql │ │ │ ├── 20220726 │ │ │ │ └── update.sql │ │ │ ├── 20220923 │ │ │ │ └── update.sql │ │ │ ├── 20221004 │ │ │ │ └── update.sql │ │ │ ├── 20200903-v0.0.5 │ │ │ │ └── update.sql │ │ │ └── 20201016-v0.0.7 │ │ │ │ └── update.sql │ │ ├── user.js │ │ ├── variable-relation.js │ │ ├── variable.js │ │ ├── version.js │ │ └── vue-code.js │ ├── project-template │ │ ├── data-base-template.js │ │ ├── data-migration-template.js │ │ ├── entity-template.js │ │ ├── router-template.js │ │ ├── vue2 │ │ │ ├── project-init-code │ │ │ │ ├── .babelrc │ │ │ │ ├── .bk.development.env │ │ │ │ ├── .bk.env │ │ │ │ ├── .bk.production.env │ │ │ │ ├── .browserslistrc │ │ │ │ ├── .eslintignore │ │ │ │ ├── .eslintrc.js │ │ │ │ ├── .gitignore │ │ │ │ ├── .npmignore │ │ │ │ ├── .npmrc │ │ │ │ ├── README.md │ │ │ │ ├── app_desc.yaml │ │ │ │ ├── bin │ │ │ │ │ ├── post-compile │ │ │ │ │ ├── pre-compile │ │ │ │ │ └── pre-heroku │ │ │ │ ├── bk.config.js │ │ │ │ ├── jsconfig.json │ │ │ │ ├── lib │ │ │ │ │ ├── client │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ ├── App.vue │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ ├── cached-promise.js │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ ├── pureAxios.js │ │ │ │ │ │ │ │ └── request-queue.js │ │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ │ ├── auth.js │ │ │ │ │ │ │ │ ├── bkmagic.js │ │ │ │ │ │ │ │ ├── bkui-vue-complex.js │ │ │ │ │ │ │ │ ├── bus.js │ │ │ │ │ │ │ │ ├── component-installer.js │ │ │ │ │ │ │ │ ├── demand-import.js │ │ │ │ │ │ │ │ ├── element.js │ │ │ │ │ │ │ │ ├── fully-import.js │ │ │ │ │ │ │ │ ├── preload.js │ │ │ │ │ │ │ │ ├── util.js │ │ │ │ │ │ │ │ └── vant.js │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ ├── apply-permission │ │ │ │ │ │ │ │ │ ├── apply-dialog.vue │ │ │ │ │ │ │ │ │ ├── apply-page.vue │ │ │ │ │ │ │ │ │ └── ask-permission.vue │ │ │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ │ │ └── button.vue │ │ │ │ │ │ │ │ ├── bk-lucky-canvas │ │ │ │ │ │ │ │ │ └── index.vue │ │ │ │ │ │ │ │ ├── data-manage-container │ │ │ │ │ │ │ │ │ ├── constants.js │ │ │ │ │ │ │ │ │ └── form-data-manage │ │ │ │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ │ │ ├── buttons │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ └── index.postcss │ │ │ │ │ │ │ │ │ │ ├── filters │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ └── index.postcss │ │ │ │ │ │ │ │ │ │ ├── rich-text-viewer │ │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ │ └── table │ │ │ │ │ │ │ │ │ │ │ ├── cell-value │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ └── index.postcss │ │ │ │ │ │ │ │ │ │ │ ├── col-setting │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ └── index.postcss │ │ │ │ │ │ │ │ │ │ │ ├── field-view-value │ │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ ├── index.postcss │ │ │ │ │ │ │ │ │ │ │ └── row-actions │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ └── index.postcss │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ └── index.postcss │ │ │ │ │ │ │ │ ├── edit-object.vue │ │ │ │ │ │ │ │ ├── exception │ │ │ │ │ │ │ │ │ └── index.vue │ │ │ │ │ │ │ │ ├── flow-form-comp │ │ │ │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ │ │ │ ├── field.js │ │ │ │ │ │ │ │ │ │ └── query-str-search-mixin.js │ │ │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ │ │ ├── custom-buttons.vue │ │ │ │ │ │ │ │ │ │ ├── filters.vue │ │ │ │ │ │ │ │ │ │ ├── float-workbench-block.vue │ │ │ │ │ │ │ │ │ │ ├── flow-data.vue │ │ │ │ │ │ │ │ │ │ ├── form-data.vue │ │ │ │ │ │ │ │ │ │ ├── node.vue │ │ │ │ │ │ │ │ │ │ ├── search-tag.vue │ │ │ │ │ │ │ │ │ │ ├── table-cell-actions.vue │ │ │ │ │ │ │ │ │ │ ├── table-cell-detail.vue │ │ │ │ │ │ │ │ │ │ ├── table-cell-value.vue │ │ │ │ │ │ │ │ │ │ ├── table-fields.vue │ │ │ │ │ │ │ │ │ │ ├── table-view.vue │ │ │ │ │ │ │ │ │ │ └── ticket-list.vue │ │ │ │ │ │ │ │ │ ├── data-manage.vue │ │ │ │ │ │ │ │ │ ├── form │ │ │ │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ │ │ │ ├── memberSelect.vue │ │ │ │ │ │ │ │ │ │ │ └── richTextEditor.vue │ │ │ │ │ │ │ │ │ │ ├── condition-mixins.js │ │ │ │ │ │ │ │ │ │ ├── constants │ │ │ │ │ │ │ │ │ │ │ └── forms.js │ │ │ │ │ │ │ │ │ │ ├── dataSourceMixins.js │ │ │ │ │ │ │ │ │ │ ├── fieldItem.vue │ │ │ │ │ │ │ │ │ │ ├── fields │ │ │ │ │ │ │ │ │ │ │ ├── autoNumber.vue │ │ │ │ │ │ │ │ │ │ │ ├── checkbox.vue │ │ │ │ │ │ │ │ │ │ │ ├── compute.vue │ │ │ │ │ │ │ │ │ │ │ ├── customForm.vue │ │ │ │ │ │ │ │ │ │ │ ├── customTable.vue │ │ │ │ │ │ │ │ │ │ │ ├── date.vue │ │ │ │ │ │ │ │ │ │ │ ├── datetime.vue │ │ │ │ │ │ │ │ │ │ │ ├── description.vue │ │ │ │ │ │ │ │ │ │ │ ├── divider.vue │ │ │ │ │ │ │ │ │ │ │ ├── formula.vue │ │ │ │ │ │ │ │ │ │ │ ├── imageFile.vue │ │ │ │ │ │ │ │ │ │ │ ├── input.vue │ │ │ │ │ │ │ │ │ │ │ ├── inputSelect.vue │ │ │ │ │ │ │ │ │ │ │ ├── int.vue │ │ │ │ │ │ │ │ │ │ │ ├── link.vue │ │ │ │ │ │ │ │ │ │ │ ├── member.vue │ │ │ │ │ │ │ │ │ │ │ ├── members.vue │ │ │ │ │ │ │ │ │ │ │ ├── multiSelect.vue │ │ │ │ │ │ │ │ │ │ │ ├── radio.vue │ │ │ │ │ │ │ │ │ │ │ ├── rate.vue │ │ │ │ │ │ │ │ │ │ │ ├── richText.vue │ │ │ │ │ │ │ │ │ │ │ ├── select.vue │ │ │ │ │ │ │ │ │ │ │ ├── serial.vue │ │ │ │ │ │ │ │ │ │ │ ├── table.vue │ │ │ │ │ │ │ │ │ │ │ ├── textarea.vue │ │ │ │ │ │ │ │ │ │ │ ├── tree.vue │ │ │ │ │ │ │ │ │ │ │ └── upload.vue │ │ │ │ │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ └── process-form.vue │ │ │ │ │ │ │ │ ├── flow-manage-container │ │ │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ │ │ ├── const.js │ │ │ │ │ │ │ │ │ │ ├── process-overview.js │ │ │ │ │ │ │ │ │ │ ├── process-overview.postcss │ │ │ │ │ │ │ │ │ │ └── task-detail-sideslider │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ ├── index.postcss │ │ │ │ │ │ │ │ │ │ │ ├── manual-node-form.js │ │ │ │ │ │ │ │ │ │ │ └── manual-node-form.postcss │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ └── index.postcss │ │ │ │ │ │ │ │ ├── flow-workbench-container │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ └── index.postcss │ │ │ │ │ │ │ │ ├── form-engine │ │ │ │ │ │ │ │ │ ├── fields │ │ │ │ │ │ │ │ │ │ ├── auto-counting │ │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ │ ├── checkbox │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ └── index.postcss │ │ │ │ │ │ │ │ │ │ ├── compute │ │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ │ ├── date │ │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ │ ├── datetime │ │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ │ ├── description │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ └── index.postcss │ │ │ │ │ │ │ │ │ │ ├── divider │ │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ ├── index.postcss │ │ │ │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ │ ├── int │ │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ │ ├── link │ │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ │ ├── member │ │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ │ ├── radio │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ └── index.postcss │ │ │ │ │ │ │ │ │ │ ├── rate │ │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ │ ├── rich-text │ │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ │ ├── select │ │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ │ ├── table │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ └── index.postcss │ │ │ │ │ │ │ │ │ │ └── textarea │ │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ ├── renderer │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ └── index.postcss │ │ │ │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ │ │ │ ├── condition-parser.js │ │ │ │ │ │ │ │ │ │ ├── data-source.js │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ ├── html.vue │ │ │ │ │ │ │ │ └── patch │ │ │ │ │ │ │ │ │ ├── bkCharts │ │ │ │ │ │ │ │ │ ├── bk-chart-config.js │ │ │ │ │ │ │ │ │ └── index.vue │ │ │ │ │ │ │ │ │ ├── chart.vue │ │ │ │ │ │ │ │ │ ├── vant-widget │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ └── widget-van-picker.vue │ │ │ │ │ │ │ │ │ ├── widget-bk-table.vue │ │ │ │ │ │ │ │ │ ├── widget-bk-vision.vue │ │ │ │ │ │ │ │ │ └── widget-table-column.js │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── animate.min.css │ │ │ │ │ │ │ │ ├── app.css │ │ │ │ │ │ │ │ ├── bk-patch.css │ │ │ │ │ │ │ │ ├── common.css │ │ │ │ │ │ │ │ ├── mixins │ │ │ │ │ │ │ │ │ ├── clearfix.css │ │ │ │ │ │ │ │ │ ├── create-label.css │ │ │ │ │ │ │ │ │ ├── ellipsis.css │ │ │ │ │ │ │ │ │ └── scroller.css │ │ │ │ │ │ │ │ ├── reset.css │ │ │ │ │ │ │ │ └── variable.css │ │ │ │ │ │ │ ├── directives │ │ │ │ │ │ │ │ └── cursor.js │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ ├── 403.png │ │ │ │ │ │ │ │ ├── 404.png │ │ │ │ │ │ │ │ ├── 500.png │ │ │ │ │ │ │ │ ├── building.png │ │ │ │ │ │ │ │ ├── lock.svg │ │ │ │ │ │ │ │ └── no-permission.svg │ │ │ │ │ │ │ ├── locales │ │ │ │ │ │ │ │ ├── i18n.js │ │ │ │ │ │ │ │ └── lang │ │ │ │ │ │ │ │ │ ├── en.json │ │ │ │ │ │ │ │ │ └── zh-cn.json │ │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ │ ├── mixins │ │ │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ │ │ ├── router │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ ├── store │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ │ │ ├── example.js │ │ │ │ │ │ │ │ │ ├── iam.js │ │ │ │ │ │ │ │ │ └── variable.js │ │ │ │ │ │ │ └── views │ │ │ │ │ │ │ │ ├── 404.vue │ │ │ │ │ │ │ │ └── index.vue │ │ │ │ │ │ └── static │ │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── favicon.png │ │ │ │ │ │ │ └── icon │ │ │ │ │ │ │ ├── error.svg │ │ │ │ │ │ │ ├── failed.svg │ │ │ │ │ │ │ ├── loading.svg │ │ │ │ │ │ │ ├── normal.svg │ │ │ │ │ │ │ ├── pending.svg │ │ │ │ │ │ │ ├── success.svg │ │ │ │ │ │ │ ├── unknown.svg │ │ │ │ │ │ │ ├── waiting.svg │ │ │ │ │ │ │ └── warning.svg │ │ │ │ │ ├── server │ │ │ │ │ │ ├── app.browser.js │ │ │ │ │ │ ├── conf │ │ │ │ │ │ │ ├── apigw.js │ │ │ │ │ │ │ ├── iam.js │ │ │ │ │ │ │ ├── open-api.json │ │ │ │ │ │ │ ├── third-part-db.js │ │ │ │ │ │ │ └── token.js │ │ │ │ │ │ ├── controller │ │ │ │ │ │ │ ├── bkvision.js │ │ │ │ │ │ │ ├── custom-business.js │ │ │ │ │ │ │ ├── data-source.js │ │ │ │ │ │ │ ├── flow.js │ │ │ │ │ │ │ ├── form.js │ │ │ │ │ │ │ ├── iam.js │ │ │ │ │ │ │ ├── mock-data.js │ │ │ │ │ │ │ ├── open-api.js │ │ │ │ │ │ │ └── user.js │ │ │ │ │ │ ├── custom-global.js │ │ │ │ │ │ ├── decorator │ │ │ │ │ │ │ ├── controller │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ ├── params.js │ │ │ │ │ │ │ │ └── router.js │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── send │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── logger.js │ │ │ │ │ │ ├── middleware │ │ │ │ │ │ │ ├── error.js │ │ │ │ │ │ │ ├── http.js │ │ │ │ │ │ │ ├── json-send.js │ │ │ │ │ │ │ └── request-context.js │ │ │ │ │ │ ├── model │ │ │ │ │ │ │ ├── entities │ │ │ │ │ │ │ │ ├── base.js │ │ │ │ │ │ │ │ └── flow-task.js │ │ │ │ │ │ │ └── migrations │ │ │ │ │ │ │ │ ├── 1729578720000-flow-task.js │ │ │ │ │ │ │ │ └── sql │ │ │ │ │ │ │ │ └── 1729578720000-flow-task.sql │ │ │ │ │ │ ├── router │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── service │ │ │ │ │ │ │ ├── bk-base.js │ │ │ │ │ │ │ ├── data-service.js │ │ │ │ │ │ │ ├── data-source.js │ │ │ │ │ │ │ ├── form.js │ │ │ │ │ │ │ └── open-api.js │ │ │ │ │ │ ├── util.js │ │ │ │ │ │ └── util │ │ │ │ │ │ │ ├── flow │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ ├── http │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ └── validate-url.js │ │ │ │ │ └── shared │ │ │ │ │ │ ├── constant.js │ │ │ │ │ │ ├── data-source │ │ │ │ │ │ └── constant.js │ │ │ │ │ │ ├── form │ │ │ │ │ │ └── validate.js │ │ │ │ │ │ ├── no-code │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── page-route │ │ │ │ │ │ └── info.json │ │ │ │ │ │ └── util.js │ │ │ │ ├── package.json │ │ │ │ ├── postcss.config.js │ │ │ │ └── scripts │ │ │ │ │ └── dev.js │ │ │ └── router-template.js │ │ └── vue3 │ │ │ ├── project-init-code │ │ │ ├── .babelrc │ │ │ ├── .bk.development.env │ │ │ ├── .bk.env │ │ │ ├── .bk.production.env │ │ │ ├── .browserslistrc │ │ │ ├── .eslintignore │ │ │ ├── .eslintrc.js │ │ │ ├── .gitignore │ │ │ ├── .npmignore │ │ │ ├── .npmrc │ │ │ ├── README.md │ │ │ ├── app_desc.yaml │ │ │ ├── bin │ │ │ │ ├── post-compile │ │ │ │ ├── pre-compile │ │ │ │ └── pre-heroku │ │ │ ├── bk.config.js │ │ │ ├── jsconfig.json │ │ │ ├── lib │ │ │ │ ├── client │ │ │ │ │ ├── index.html │ │ │ │ │ ├── src │ │ │ │ │ │ ├── App.vue │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ ├── cached-promise.js │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── pureAxios.js │ │ │ │ │ │ │ └── request-queue.js │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── auth.js │ │ │ │ │ │ │ ├── bkmagic.js │ │ │ │ │ │ │ ├── bus.js │ │ │ │ │ │ │ ├── component-installer.js │ │ │ │ │ │ │ ├── fully-import.js │ │ │ │ │ │ │ ├── preload.js │ │ │ │ │ │ │ └── util.js │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── apply-permission │ │ │ │ │ │ │ │ ├── apply-dialog.vue │ │ │ │ │ │ │ │ ├── apply-page.vue │ │ │ │ │ │ │ │ └── ask-permission.vue │ │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ │ └── button.vue │ │ │ │ │ │ │ ├── bk-lucky-canvas │ │ │ │ │ │ │ │ └── index.vue │ │ │ │ │ │ │ ├── data-manage-container │ │ │ │ │ │ │ │ ├── constants.js │ │ │ │ │ │ │ │ └── form-data-manage │ │ │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ │ ├── buttons │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ └── index.postcss │ │ │ │ │ │ │ │ │ ├── filters │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ └── index.postcss │ │ │ │ │ │ │ │ │ ├── rich-text-viewer │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ └── table │ │ │ │ │ │ │ │ │ │ ├── cell-value │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ └── index.postcss │ │ │ │ │ │ │ │ │ │ ├── col-setting │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ └── index.postcss │ │ │ │ │ │ │ │ │ │ ├── field-view-value │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ ├── index.postcss │ │ │ │ │ │ │ │ │ │ └── row-actions │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ └── index.postcss │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ └── index.postcss │ │ │ │ │ │ │ ├── edit-object │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ └── index.postcss │ │ │ │ │ │ │ ├── exception │ │ │ │ │ │ │ │ └── index.vue │ │ │ │ │ │ │ ├── flow-form-comp │ │ │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ │ │ ├── field.js │ │ │ │ │ │ │ │ │ └── query-str-search-mixin.js │ │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ │ ├── custom-buttons.vue │ │ │ │ │ │ │ │ │ ├── filters.vue │ │ │ │ │ │ │ │ │ ├── float-workbench-block.vue │ │ │ │ │ │ │ │ │ ├── flow-data.vue │ │ │ │ │ │ │ │ │ ├── form-data.vue │ │ │ │ │ │ │ │ │ ├── node.vue │ │ │ │ │ │ │ │ │ ├── search-tag.vue │ │ │ │ │ │ │ │ │ ├── table-cell-actions.vue │ │ │ │ │ │ │ │ │ ├── table-cell-detail.vue │ │ │ │ │ │ │ │ │ ├── table-cell-value.vue │ │ │ │ │ │ │ │ │ ├── table-fields.vue │ │ │ │ │ │ │ │ │ ├── table-view.vue │ │ │ │ │ │ │ │ │ └── ticket-list.vue │ │ │ │ │ │ │ │ ├── data-manage.vue │ │ │ │ │ │ │ │ ├── form │ │ │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ │ │ ├── memberSelect.vue │ │ │ │ │ │ │ │ │ │ └── richTextEditor.vue │ │ │ │ │ │ │ │ │ ├── condition-mixins.js │ │ │ │ │ │ │ │ │ ├── constants │ │ │ │ │ │ │ │ │ │ └── forms.js │ │ │ │ │ │ │ │ │ ├── dataSourceMixins.js │ │ │ │ │ │ │ │ │ ├── fieldItem.vue │ │ │ │ │ │ │ │ │ ├── fields │ │ │ │ │ │ │ │ │ │ ├── autoNumber.vue │ │ │ │ │ │ │ │ │ │ ├── checkbox.vue │ │ │ │ │ │ │ │ │ │ ├── compute.vue │ │ │ │ │ │ │ │ │ │ ├── customForm.vue │ │ │ │ │ │ │ │ │ │ ├── customTable.vue │ │ │ │ │ │ │ │ │ │ ├── date.vue │ │ │ │ │ │ │ │ │ │ ├── datetime.vue │ │ │ │ │ │ │ │ │ │ ├── description.vue │ │ │ │ │ │ │ │ │ │ ├── divider.vue │ │ │ │ │ │ │ │ │ │ ├── formula.vue │ │ │ │ │ │ │ │ │ │ ├── imageFile.vue │ │ │ │ │ │ │ │ │ │ ├── input.vue │ │ │ │ │ │ │ │ │ │ ├── inputSelect.vue │ │ │ │ │ │ │ │ │ │ ├── int.vue │ │ │ │ │ │ │ │ │ │ ├── link.vue │ │ │ │ │ │ │ │ │ │ ├── member.vue │ │ │ │ │ │ │ │ │ │ ├── members.vue │ │ │ │ │ │ │ │ │ │ ├── multiSelect.vue │ │ │ │ │ │ │ │ │ │ ├── radio.vue │ │ │ │ │ │ │ │ │ │ ├── rate.vue │ │ │ │ │ │ │ │ │ │ ├── richText.vue │ │ │ │ │ │ │ │ │ │ ├── select.vue │ │ │ │ │ │ │ │ │ │ ├── serial.vue │ │ │ │ │ │ │ │ │ │ ├── table.vue │ │ │ │ │ │ │ │ │ │ ├── textarea.vue │ │ │ │ │ │ │ │ │ │ ├── tree.vue │ │ │ │ │ │ │ │ │ │ └── upload.vue │ │ │ │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ └── process-form.vue │ │ │ │ │ │ │ ├── flow-manage-container │ │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ │ ├── const.js │ │ │ │ │ │ │ │ │ ├── process-overview.js │ │ │ │ │ │ │ │ │ ├── process-overview.postcss │ │ │ │ │ │ │ │ │ └── task-detail-sideslider │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ ├── index.postcss │ │ │ │ │ │ │ │ │ │ ├── manual-node-form.js │ │ │ │ │ │ │ │ │ │ └── manual-node-form.postcss │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ └── index.postcss │ │ │ │ │ │ │ ├── flow-workbench-container │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ └── index.postcss │ │ │ │ │ │ │ ├── form-engine │ │ │ │ │ │ │ │ ├── fields │ │ │ │ │ │ │ │ │ ├── auto-counting │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ ├── checkbox │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ └── index.postcss │ │ │ │ │ │ │ │ │ ├── compute │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ ├── date │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ ├── datetime │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ ├── description │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ └── index.postcss │ │ │ │ │ │ │ │ │ ├── divider │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ ├── index.postcss │ │ │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ ├── int │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ ├── link │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ ├── member │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ ├── radio │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ └── index.postcss │ │ │ │ │ │ │ │ │ ├── rate │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ ├── rich-text │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ ├── select │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ ├── table │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ └── index.postcss │ │ │ │ │ │ │ │ │ └── textarea │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ ├── renderer │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ └── index.postcss │ │ │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ │ │ ├── condition-parser.js │ │ │ │ │ │ │ │ │ ├── data-source.js │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ ├── html.js │ │ │ │ │ │ │ └── patch │ │ │ │ │ │ │ │ ├── bkCharts │ │ │ │ │ │ │ │ ├── bk-chart-config.js │ │ │ │ │ │ │ │ └── index.vue │ │ │ │ │ │ │ │ ├── chart.vue │ │ │ │ │ │ │ │ ├── widget-bk-table.vue │ │ │ │ │ │ │ │ ├── widget-bk-vision.vue │ │ │ │ │ │ │ │ ├── widget-table-column.js │ │ │ │ │ │ │ │ └── widget-van-picker.vue │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── animate.min.css │ │ │ │ │ │ │ ├── app.css │ │ │ │ │ │ │ ├── bk-patch.css │ │ │ │ │ │ │ ├── common.css │ │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ │ ├── iconcool.eot │ │ │ │ │ │ │ │ ├── iconcool.svg │ │ │ │ │ │ │ │ ├── iconcool.ttf │ │ │ │ │ │ │ │ └── iconcool.woff │ │ │ │ │ │ │ ├── iconfont.css │ │ │ │ │ │ │ ├── mixins │ │ │ │ │ │ │ │ ├── clearfix.css │ │ │ │ │ │ │ │ ├── create-label.css │ │ │ │ │ │ │ │ ├── ellipsis.css │ │ │ │ │ │ │ │ └── scroller.css │ │ │ │ │ │ │ ├── reset.css │ │ │ │ │ │ │ └── variable.css │ │ │ │ │ │ ├── directives │ │ │ │ │ │ │ └── cursor.js │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── 403.png │ │ │ │ │ │ │ ├── 404.png │ │ │ │ │ │ │ ├── 500.png │ │ │ │ │ │ │ ├── building.png │ │ │ │ │ │ │ ├── lock.svg │ │ │ │ │ │ │ └── no-permission.svg │ │ │ │ │ │ ├── locales │ │ │ │ │ │ │ ├── i18n.js │ │ │ │ │ │ │ └── lang │ │ │ │ │ │ │ │ ├── en.json │ │ │ │ │ │ │ │ └── zh-cn.json │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ ├── mixins │ │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ │ ├── router │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── store │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ │ ├── example.js │ │ │ │ │ │ │ │ ├── iam.js │ │ │ │ │ │ │ │ └── variable.js │ │ │ │ │ │ └── views │ │ │ │ │ │ │ ├── 404.vue │ │ │ │ │ │ │ └── index.vue │ │ │ │ │ └── static │ │ │ │ │ │ └── images │ │ │ │ │ │ ├── favicon.png │ │ │ │ │ │ └── icon │ │ │ │ │ │ ├── error.svg │ │ │ │ │ │ ├── failed.svg │ │ │ │ │ │ ├── loading.svg │ │ │ │ │ │ ├── normal.svg │ │ │ │ │ │ ├── pending.svg │ │ │ │ │ │ ├── success.svg │ │ │ │ │ │ ├── unknown.svg │ │ │ │ │ │ ├── waiting.svg │ │ │ │ │ │ └── warning.svg │ │ │ │ ├── server │ │ │ │ │ ├── app.browser.js │ │ │ │ │ ├── conf │ │ │ │ │ │ ├── apigw.js │ │ │ │ │ │ ├── iam.js │ │ │ │ │ │ ├── open-api.json │ │ │ │ │ │ ├── third-part-db.js │ │ │ │ │ │ └── token.js │ │ │ │ │ ├── controller │ │ │ │ │ │ ├── bkvision.js │ │ │ │ │ │ ├── custom-business.js │ │ │ │ │ │ ├── data-source.js │ │ │ │ │ │ ├── flow.js │ │ │ │ │ │ ├── form.js │ │ │ │ │ │ ├── iam.js │ │ │ │ │ │ ├── mock-data.js │ │ │ │ │ │ ├── open-api.js │ │ │ │ │ │ └── user.js │ │ │ │ │ ├── custom-global.js │ │ │ │ │ ├── decorator │ │ │ │ │ │ ├── controller │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── params.js │ │ │ │ │ │ │ └── router.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── send │ │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── logger.js │ │ │ │ │ ├── middleware │ │ │ │ │ │ ├── error.js │ │ │ │ │ │ ├── http.js │ │ │ │ │ │ ├── json-send.js │ │ │ │ │ │ └── request-context.js │ │ │ │ │ ├── model │ │ │ │ │ │ ├── entities │ │ │ │ │ │ │ ├── base.js │ │ │ │ │ │ │ └── flow-task.js │ │ │ │ │ │ └── migrations │ │ │ │ │ │ │ ├── 1729578720000-flow-task.js │ │ │ │ │ │ │ └── sql │ │ │ │ │ │ │ └── 1729578720000-flow-task.sql │ │ │ │ │ ├── router │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── service │ │ │ │ │ │ ├── bk-base.js │ │ │ │ │ │ ├── data-service.js │ │ │ │ │ │ ├── data-source.js │ │ │ │ │ │ ├── form.js │ │ │ │ │ │ └── open-api.js │ │ │ │ │ ├── util.js │ │ │ │ │ └── util │ │ │ │ │ │ ├── flow │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── http │ │ │ │ │ │ └── index.js │ │ │ │ │ │ └── validate-url.js │ │ │ │ └── shared │ │ │ │ │ ├── constant.js │ │ │ │ │ ├── data-source │ │ │ │ │ └── constant.js │ │ │ │ │ ├── form │ │ │ │ │ └── validate.js │ │ │ │ │ ├── no-code │ │ │ │ │ └── index.js │ │ │ │ │ ├── page-route │ │ │ │ │ └── info.json │ │ │ │ │ └── util.js │ │ │ ├── package.json │ │ │ ├── postcss.config.js │ │ │ └── scripts │ │ │ │ └── dev.js │ │ │ └── router-template.js │ ├── router │ │ ├── component-category.js │ │ ├── component-favourite.js │ │ ├── component.js │ │ ├── health.js │ │ ├── iam.js │ │ ├── index.js │ │ ├── layout.js │ │ ├── logs.js │ │ ├── mock-data.js │ │ ├── open-api.config.js │ │ ├── open-api.js │ │ ├── operation.js │ │ ├── page-template-category.js │ │ ├── page-template.js │ │ ├── page.js │ │ ├── project-code.js │ │ ├── project-version.js │ │ ├── project.js │ │ ├── release.js │ │ ├── route.js │ │ ├── user.js │ │ ├── variable.js │ │ └── vue-code.js │ ├── service │ │ ├── business │ │ │ ├── ai.js │ │ │ ├── api.js │ │ │ ├── bk-base.js │ │ │ ├── data-source.js │ │ │ ├── data-table.js │ │ │ ├── file.js │ │ │ ├── flow.js │ │ │ ├── function.js │ │ │ ├── layout.js │ │ │ ├── no-code.js │ │ │ ├── nocode-form.js │ │ │ ├── notice-center.js │ │ │ ├── open-api.js │ │ │ ├── page-template.js │ │ │ ├── page.js │ │ │ ├── preview-db-service.js │ │ │ ├── project-version.js │ │ │ ├── project.js │ │ │ ├── release-version.js │ │ │ ├── route.js │ │ │ ├── saas_builder.js │ │ │ ├── template.js │ │ │ ├── token.js │ │ │ ├── v3-service.js │ │ │ └── variable.js │ │ └── common │ │ │ ├── ai.js │ │ │ ├── code-formatter.js │ │ │ ├── data-service.js │ │ │ ├── db-engine-service.js │ │ │ ├── online-db-service.js │ │ │ ├── operation-logger.js │ │ │ ├── project-auth.js │ │ │ └── user-info.js │ ├── system-conf │ │ ├── apigw-docs.zip │ │ ├── demo-page-code.js │ │ ├── eslint-config.js │ │ ├── logger-path.js │ │ ├── open-api.json │ │ ├── operate-log.js │ │ ├── perm.js │ │ └── system.js │ ├── test.js │ ├── util.js │ └── utils │ │ ├── constant.js │ │ ├── file-service │ │ └── index.js │ │ ├── flow │ │ └── index.js │ │ ├── http │ │ └── index.js │ │ ├── lc-compose.js │ │ ├── npm │ │ ├── index.js │ │ └── templates │ │ │ ├── npm.md │ │ │ └── tnpm.md │ │ └── validate-url.js └── shared │ ├── api │ ├── constant.js │ ├── helper.js │ └── index.js │ ├── constant.js │ ├── custom-error.js │ ├── data-source │ ├── constant.js │ ├── data-parse │ │ ├── common.js │ │ ├── data-parser │ │ │ ├── json-parser.js │ │ │ ├── sql-parser.js │ │ │ └── xlsx-parser.js │ │ ├── index.js │ │ └── struct-parser │ │ │ ├── json-parser.js │ │ │ ├── sql-parser.js │ │ │ └── xlsx-parser.js │ ├── helper.js │ ├── index.js │ └── sql-builder.js │ ├── flow │ ├── constant.js │ └── index.js │ ├── form-field-protocol-transform │ └── index.js │ ├── form │ └── index.js │ ├── function │ ├── constant.js │ ├── helper.js │ └── index.js │ ├── index.js │ ├── no-code │ ├── constant.js │ ├── helper.js │ ├── index.js │ ├── parseItsmApiScheme.js │ └── validate.js │ ├── page-code │ ├── common │ │ ├── modelMethods.js │ │ └── utils.js │ ├── index.js │ ├── script │ │ ├── index.js │ │ ├── vue2 │ │ │ ├── components.js │ │ │ ├── computed.js │ │ │ ├── data.js │ │ │ ├── handle-var-and-func.js │ │ │ ├── import.js │ │ │ ├── index.js │ │ │ ├── lifeCycle.js │ │ │ ├── methods.js │ │ │ ├── mixins.js │ │ │ └── watch.js │ │ └── vue3 │ │ │ └── index.js │ ├── style │ │ ├── default-style │ │ │ ├── common-style.js │ │ │ ├── index.js │ │ │ ├── mobile-style.js │ │ │ └── pc-style.js │ │ ├── index.js │ │ ├── nav-style │ │ │ ├── index.js │ │ │ ├── mobile-nav.js │ │ │ └── pc-nav.js │ │ ├── page-setting-style │ │ │ └── index.js │ │ └── vant3.style.css │ └── template │ │ ├── index.js │ │ ├── navigation │ │ ├── index.js │ │ ├── mobile-navigation.js │ │ └── web-navigation.js │ │ ├── nocode-page │ │ └── index.js │ │ └── page │ │ ├── component │ │ ├── index.js │ │ ├── special-type-flag.js │ │ └── special-type │ │ │ ├── bk-flow.js │ │ │ ├── bk-tree.js │ │ │ ├── chart.js │ │ │ ├── md.js │ │ │ ├── p.js │ │ │ ├── self-closing-tag.js │ │ │ ├── table.js │ │ │ └── widget-form.js │ │ ├── directive.js │ │ ├── event.js │ │ ├── index.js │ │ ├── layout │ │ ├── help-menu-layout.js │ │ ├── i18-layout.js │ │ ├── index.js │ │ └── mobile-layout.js │ │ ├── prop.js │ │ ├── slot.js │ │ └── style.js │ ├── rem.js │ ├── route │ ├── helper.js │ └── index.js │ ├── security │ └── property-injection-guard.js │ ├── util.js │ └── variable │ ├── constant.js │ ├── helper.js │ └── index.js ├── package.json ├── postcss.config.js ├── readme.md ├── scripts ├── dev.js └── mark-dowm │ ├── markdown-it-replace.js │ ├── md-highlight.js │ ├── md-hljs.js │ ├── md-loader-option.js │ └── strip-tags.js └── tsconfig.json /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/.babelrc -------------------------------------------------------------------------------- /.bk.development.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/.bk.development.env -------------------------------------------------------------------------------- /.bk.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/.bk.env -------------------------------------------------------------------------------- /.bk.production.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/.bk.production.env -------------------------------------------------------------------------------- /.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/-----.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/.github/ISSUE_TEMPLATE/-----.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/---bug-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/.github/ISSUE_TEMPLATE/---bug-.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: npm run online 2 | -------------------------------------------------------------------------------- /bin/post-compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/bin/post-compile -------------------------------------------------------------------------------- /bin/pre-compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/bin/pre-compile -------------------------------------------------------------------------------- /bk.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/bk.config.js -------------------------------------------------------------------------------- /bkcodeai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/bkcodeai.json -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/config.json -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/docs/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /docs/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/docs/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /docs/develop/demo_com/x-script/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/docs/develop/demo_com/x-script/config.js -------------------------------------------------------------------------------- /docs/develop/demo_com/x-script/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/docs/develop/demo_com/x-script/index.js -------------------------------------------------------------------------------- /docs/develop/demo_com/x-script/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/docs/develop/demo_com/x-script/index.vue -------------------------------------------------------------------------------- /docs/develop/demo_com/x-script/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/docs/develop/demo_com/x-script/package.json -------------------------------------------------------------------------------- /docs/develop/dev_com.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/docs/develop/dev_com.md -------------------------------------------------------------------------------- /docs/develop/release_com.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/docs/develop/release_com.md -------------------------------------------------------------------------------- /docs/install/conf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/docs/install/conf.md -------------------------------------------------------------------------------- /docs/install/database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/docs/install/database.md -------------------------------------------------------------------------------- /docs/install/dev_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/docs/install/dev_install.md -------------------------------------------------------------------------------- /docs/install/prod_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/docs/install/prod_install.md -------------------------------------------------------------------------------- /docs/resource/img/directory_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/docs/resource/img/directory_structure.png -------------------------------------------------------------------------------- /forever.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/forever.json -------------------------------------------------------------------------------- /lib/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/index.html -------------------------------------------------------------------------------- /lib/client/preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/preview.html -------------------------------------------------------------------------------- /lib/client/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/App.vue -------------------------------------------------------------------------------- /lib/client/src/api/cached-promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/api/cached-promise.js -------------------------------------------------------------------------------- /lib/client/src/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/api/index.js -------------------------------------------------------------------------------- /lib/client/src/api/pureAxios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/api/pureAxios.js -------------------------------------------------------------------------------- /lib/client/src/api/request-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/api/request-error.js -------------------------------------------------------------------------------- /lib/client/src/api/request-queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/api/request-queue.js -------------------------------------------------------------------------------- /lib/client/src/bk-icon/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/bk-icon/demo.html -------------------------------------------------------------------------------- /lib/client/src/bk-icon/fonts/iconcool.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/bk-icon/fonts/iconcool.eot -------------------------------------------------------------------------------- /lib/client/src/bk-icon/fonts/iconcool.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/bk-icon/fonts/iconcool.svg -------------------------------------------------------------------------------- /lib/client/src/bk-icon/fonts/iconcool.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/bk-icon/fonts/iconcool.ttf -------------------------------------------------------------------------------- /lib/client/src/bk-icon/fonts/iconcool.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/bk-icon/fonts/iconcool.woff -------------------------------------------------------------------------------- /lib/client/src/bk-icon/iconcool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/bk-icon/iconcool.js -------------------------------------------------------------------------------- /lib/client/src/bk-icon/iconcool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/bk-icon/iconcool.json -------------------------------------------------------------------------------- /lib/client/src/bk-icon/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/bk-icon/style.css -------------------------------------------------------------------------------- /lib/client/src/common/ai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/common/ai.js -------------------------------------------------------------------------------- /lib/client/src/common/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/common/auth.js -------------------------------------------------------------------------------- /lib/client/src/common/bkmagic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/common/bkmagic.js -------------------------------------------------------------------------------- /lib/client/src/common/bkui-vue-complex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/common/bkui-vue-complex.js -------------------------------------------------------------------------------- /lib/client/src/common/bus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/common/bus.js -------------------------------------------------------------------------------- /lib/client/src/common/chart-color-sets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/common/chart-color-sets.js -------------------------------------------------------------------------------- /lib/client/src/common/component-installer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/common/component-installer.js -------------------------------------------------------------------------------- /lib/client/src/common/constant-en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/common/constant-en.js -------------------------------------------------------------------------------- /lib/client/src/common/constant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/common/constant.js -------------------------------------------------------------------------------- /lib/client/src/common/dayjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/common/dayjs.js -------------------------------------------------------------------------------- /lib/client/src/common/defaultUnit.mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/common/defaultUnit.mixin.js -------------------------------------------------------------------------------- /lib/client/src/common/demand-import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/common/demand-import.js -------------------------------------------------------------------------------- /lib/client/src/common/dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/common/dom.js -------------------------------------------------------------------------------- /lib/client/src/common/drag-line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/common/drag-line.js -------------------------------------------------------------------------------- /lib/client/src/common/drag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/common/drag.js -------------------------------------------------------------------------------- /lib/client/src/common/element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/common/element.js -------------------------------------------------------------------------------- /lib/client/src/common/fully-import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/common/fully-import.js -------------------------------------------------------------------------------- /lib/client/src/common/http-vue-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/common/http-vue-loader.js -------------------------------------------------------------------------------- /lib/client/src/common/json-safe-stringify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/common/json-safe-stringify.js -------------------------------------------------------------------------------- /lib/client/src/common/leave-confirm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/common/leave-confirm.js -------------------------------------------------------------------------------- /lib/client/src/common/parse-function-var.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/common/parse-function-var.js -------------------------------------------------------------------------------- /lib/client/src/common/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/common/preload.js -------------------------------------------------------------------------------- /lib/client/src/common/targetData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/common/targetData.js -------------------------------------------------------------------------------- /lib/client/src/common/use-ajax-upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/common/use-ajax-upload.js -------------------------------------------------------------------------------- /lib/client/src/common/use-resource-lock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/common/use-resource-lock.js -------------------------------------------------------------------------------- /lib/client/src/common/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/common/util.js -------------------------------------------------------------------------------- /lib/client/src/common/vant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/common/vant.js -------------------------------------------------------------------------------- /lib/client/src/common/watcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/common/watcher.js -------------------------------------------------------------------------------- /lib/client/src/components/api/choose-api.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/api/choose-api.vue -------------------------------------------------------------------------------- /lib/client/src/components/api/common/scheme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/api/common/scheme.css -------------------------------------------------------------------------------- /lib/client/src/components/app-header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/app-header.vue -------------------------------------------------------------------------------- /lib/client/src/components/auth/button.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/auth/button.vue -------------------------------------------------------------------------------- /lib/client/src/components/auth/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/auth/component.js -------------------------------------------------------------------------------- /lib/client/src/components/auth/router-link.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/auth/router-link.vue -------------------------------------------------------------------------------- /lib/client/src/components/auth/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/auth/style.css -------------------------------------------------------------------------------- /lib/client/src/components/choose-data-table.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/choose-data-table.vue -------------------------------------------------------------------------------- /lib/client/src/components/code-viewer/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/code-viewer/index.vue -------------------------------------------------------------------------------- /lib/client/src/components/copy-icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/copy-icon.js -------------------------------------------------------------------------------- /lib/client/src/components/dynamic-tag.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/dynamic-tag.vue -------------------------------------------------------------------------------- /lib/client/src/components/edit-object.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/edit-object.vue -------------------------------------------------------------------------------- /lib/client/src/components/exception/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/exception/index.vue -------------------------------------------------------------------------------- /lib/client/src/components/filelib/file-icon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/filelib/file-icon.vue -------------------------------------------------------------------------------- /lib/client/src/components/filelib/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/filelib/helper.ts -------------------------------------------------------------------------------- /lib/client/src/components/filelib/list-card.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/filelib/list-card.vue -------------------------------------------------------------------------------- /lib/client/src/components/filelib/upload.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/filelib/upload.vue -------------------------------------------------------------------------------- /lib/client/src/components/framework-tag.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/framework-tag.vue -------------------------------------------------------------------------------- /lib/client/src/components/help-docs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/help-docs.vue -------------------------------------------------------------------------------- /lib/client/src/components/lc-form/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/lc-form/index.vue -------------------------------------------------------------------------------- /lib/client/src/components/lc-form/item.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/lc-form/item.vue -------------------------------------------------------------------------------- /lib/client/src/components/loader/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/loader/index.vue -------------------------------------------------------------------------------- /lib/client/src/components/member-selector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/member-selector.vue -------------------------------------------------------------------------------- /lib/client/src/components/minus-icon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/minus-icon.vue -------------------------------------------------------------------------------- /lib/client/src/components/monaco.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/monaco.vue -------------------------------------------------------------------------------- /lib/client/src/components/not-exist.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/not-exist.vue -------------------------------------------------------------------------------- /lib/client/src/components/novice-guide/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/novice-guide/help.png -------------------------------------------------------------------------------- /lib/client/src/components/patch/chart/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/patch/chart/index.js -------------------------------------------------------------------------------- /lib/client/src/components/patch/chart/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/patch/chart/index.vue -------------------------------------------------------------------------------- /lib/client/src/components/patch/image/image.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/patch/image/image.css -------------------------------------------------------------------------------- /lib/client/src/components/patch/image/image.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/patch/image/image.vue -------------------------------------------------------------------------------- /lib/client/src/components/patch/image/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/patch/image/index.js -------------------------------------------------------------------------------- /lib/client/src/components/patch/text/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/patch/text/index.js -------------------------------------------------------------------------------- /lib/client/src/components/patch/text/text.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/patch/text/text.css -------------------------------------------------------------------------------- /lib/client/src/components/patch/text/text.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/patch/text/text.vue -------------------------------------------------------------------------------- /lib/client/src/components/plus-icon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/plus-icon.vue -------------------------------------------------------------------------------- /lib/client/src/components/render/common/constant.js: -------------------------------------------------------------------------------- 1 | export const NOTICE_TYPE = { 2 | LAYOUT_CHANGE: 'layout_change' 3 | } 4 | -------------------------------------------------------------------------------- /lib/client/src/components/render/common/drag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/render/common/drag.js -------------------------------------------------------------------------------- /lib/client/src/components/render/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/render/index.js -------------------------------------------------------------------------------- /lib/client/src/components/render/index.postcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/render/index.postcss -------------------------------------------------------------------------------- /lib/client/src/components/render/pc/widget/bk-lucky-canvas/index.postcss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/client/src/components/render/pc/widget/data-manage-container/form-data-manage/preview/components/table/index.postcss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/client/src/components/sortable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/sortable.js -------------------------------------------------------------------------------- /lib/client/src/components/src-input/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/src-input/index.vue -------------------------------------------------------------------------------- /lib/client/src/components/ui/extra-links.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/ui/extra-links.vue -------------------------------------------------------------------------------- /lib/client/src/components/ui/group.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/ui/group.vue -------------------------------------------------------------------------------- /lib/client/src/components/ui/layout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/ui/layout.vue -------------------------------------------------------------------------------- /lib/client/src/components/ui/loading.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/ui/loading.vue -------------------------------------------------------------------------------- /lib/client/src/components/ui/select-tab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/ui/select-tab.vue -------------------------------------------------------------------------------- /lib/client/src/components/version-log.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/components/version-log.vue -------------------------------------------------------------------------------- /lib/client/src/css/animate.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/css/animate.min.css -------------------------------------------------------------------------------- /lib/client/src/css/bk-patch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/css/bk-patch.css -------------------------------------------------------------------------------- /lib/client/src/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/css/common.css -------------------------------------------------------------------------------- /lib/client/src/css/mixins/clearfix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/css/mixins/clearfix.css -------------------------------------------------------------------------------- /lib/client/src/css/mixins/ellipsis.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/css/mixins/ellipsis.css -------------------------------------------------------------------------------- /lib/client/src/css/mixins/scroller.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/css/mixins/scroller.css -------------------------------------------------------------------------------- /lib/client/src/css/mixins/transition.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/css/mixins/transition.css -------------------------------------------------------------------------------- /lib/client/src/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/css/reset.css -------------------------------------------------------------------------------- /lib/client/src/css/variable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/css/variable.css -------------------------------------------------------------------------------- /lib/client/src/directives/cursor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/directives/cursor.js -------------------------------------------------------------------------------- /lib/client/src/directives/en-class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/directives/en-class.js -------------------------------------------------------------------------------- /lib/client/src/directives/en-style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/directives/en-style.js -------------------------------------------------------------------------------- /lib/client/src/directives/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/directives/index.js -------------------------------------------------------------------------------- /lib/client/src/directives/tooltips.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/directives/tooltips.js -------------------------------------------------------------------------------- /lib/client/src/element-materials/core/Node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/element-materials/core/Node.js -------------------------------------------------------------------------------- /lib/client/src/element-materials/core/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/element-materials/core/README.MD -------------------------------------------------------------------------------- /lib/client/src/element-materials/core/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/element-materials/core/event.js -------------------------------------------------------------------------------- /lib/client/src/element-materials/core/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/element-materials/core/index.js -------------------------------------------------------------------------------- /lib/client/src/element-materials/core/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/element-materials/core/menu.js -------------------------------------------------------------------------------- /lib/client/src/form-engine/fields/date/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/form-engine/fields/date/index.js -------------------------------------------------------------------------------- /lib/client/src/form-engine/fields/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/form-engine/fields/index.js -------------------------------------------------------------------------------- /lib/client/src/form-engine/fields/index.postcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/form-engine/fields/index.postcss -------------------------------------------------------------------------------- /lib/client/src/form-engine/fields/int/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/form-engine/fields/int/index.js -------------------------------------------------------------------------------- /lib/client/src/form-engine/fields/link/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/form-engine/fields/link/index.js -------------------------------------------------------------------------------- /lib/client/src/form-engine/fields/rate/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/form-engine/fields/rate/index.js -------------------------------------------------------------------------------- /lib/client/src/form-engine/layout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/form-engine/layout/index.js -------------------------------------------------------------------------------- /lib/client/src/form-engine/layout/index.postcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/form-engine/layout/index.postcss -------------------------------------------------------------------------------- /lib/client/src/form-engine/material/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/form-engine/material/index.vue -------------------------------------------------------------------------------- /lib/client/src/form-engine/renderer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/form-engine/renderer/index.js -------------------------------------------------------------------------------- /lib/client/src/form-engine/setter/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/form-engine/setter/index.vue -------------------------------------------------------------------------------- /lib/client/src/form-engine/setter/setters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/form-engine/setter/setters.js -------------------------------------------------------------------------------- /lib/client/src/form-engine/utils/data-source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/form-engine/utils/data-source.js -------------------------------------------------------------------------------- /lib/client/src/form-engine/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/form-engine/utils/index.js -------------------------------------------------------------------------------- /lib/client/src/hooks/use-custom-validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/hooks/use-custom-validate.js -------------------------------------------------------------------------------- /lib/client/src/hooks/use-datasource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/hooks/use-datasource.js -------------------------------------------------------------------------------- /lib/client/src/hooks/use-resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/hooks/use-resource.js -------------------------------------------------------------------------------- /lib/client/src/images/403.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/403.png -------------------------------------------------------------------------------- /lib/client/src/images/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/404.png -------------------------------------------------------------------------------- /lib/client/src/images/500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/500.png -------------------------------------------------------------------------------- /lib/client/src/images/Magicbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/Magicbox.png -------------------------------------------------------------------------------- /lib/client/src/images/TQOS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/TQOS.png -------------------------------------------------------------------------------- /lib/client/src/images/ai-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/ai-logo.png -------------------------------------------------------------------------------- /lib/client/src/images/ai-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/ai-user.png -------------------------------------------------------------------------------- /lib/client/src/images/angular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/angular.png -------------------------------------------------------------------------------- /lib/client/src/images/back_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/back_top.png -------------------------------------------------------------------------------- /lib/client/src/images/banner-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/banner-en.png -------------------------------------------------------------------------------- /lib/client/src/images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/banner.png -------------------------------------------------------------------------------- /lib/client/src/images/bs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/bs.png -------------------------------------------------------------------------------- /lib/client/src/images/building.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/building.png -------------------------------------------------------------------------------- /lib/client/src/images/component-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/component-preview.png -------------------------------------------------------------------------------- /lib/client/src/images/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/debug.png -------------------------------------------------------------------------------- /lib/client/src/images/deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/deploy.png -------------------------------------------------------------------------------- /lib/client/src/images/diy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/diy.png -------------------------------------------------------------------------------- /lib/client/src/images/empty-event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/empty-event.png -------------------------------------------------------------------------------- /lib/client/src/images/feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/feedback.png -------------------------------------------------------------------------------- /lib/client/src/images/flow-page-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/flow-page-img.png -------------------------------------------------------------------------------- /lib/client/src/images/footer-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/footer-bg.png -------------------------------------------------------------------------------- /lib/client/src/images/form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/form.png -------------------------------------------------------------------------------- /lib/client/src/images/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/frame.png -------------------------------------------------------------------------------- /lib/client/src/images/game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/game.png -------------------------------------------------------------------------------- /lib/client/src/images/gpu-product.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/gpu-product.png -------------------------------------------------------------------------------- /lib/client/src/images/guilian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/guilian.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/api-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/api-01.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/api-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/api-02.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/api-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/api-03.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/canvas-comp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/canvas-comp.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/canvas-drag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/canvas-drag.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/canvas-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/canvas-icon.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/case-table1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/case-table1.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/case-table2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/case-table2.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/case-table3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/case-table3.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/case-table5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/case-table5.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/case-table7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/case-table7.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/case-table9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/case-table9.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/component-use.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/component-use.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/create-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/create-page.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/create-proj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/create-proj.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/develop2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/develop2.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/directive-for.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/directive-for.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/directive-if.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/directive-if.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/directive-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/directive-tab.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/interactive-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/interactive-1.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/interactive-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/interactive-2.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/interactive-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/interactive-3.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/interactive-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/interactive-4.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/interactive-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/interactive-5.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/interactive-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/interactive-6.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/interactive-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/interactive-7.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/interactive-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/interactive-8.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/layout-add1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/layout-add1.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/layout-add2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/layout-add2.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/layout-change.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/layout-change.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/layout-use.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/layout-use.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/method-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/method-01.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/method-method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/method-method.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/mobile-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/mobile-1.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/mobile-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/mobile-2.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/mobile-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/mobile-3.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/mobile-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/mobile-4.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/mobile-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/mobile-5.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/mobile-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/mobile-6.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/mobile-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/mobile-7.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/mobile-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/mobile-8.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/page-manage-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/page-manage-1.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/page-manage-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/page-manage-2.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/page1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/page1.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/page2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/page2.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/page5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/page5.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/page6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/page6.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/page8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/page8.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/project-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/project-list.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/release-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/release-data.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/release-log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/release-log.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/release-paas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/release-paas.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/version-cur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/version-cur.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/version-entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/version-entry.png -------------------------------------------------------------------------------- /lib/client/src/images/help/en/version-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/en/version-list.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/api-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/api-01.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/api-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/api-02.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/api-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/api-03.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/canvas-comp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/canvas-comp.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/canvas-drag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/canvas-drag.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/canvas-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/canvas-icon.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/case-table1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/case-table1.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/case-table10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/case-table10.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/case-table2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/case-table2.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/case-table3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/case-table3.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/case-table4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/case-table4.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/case-table5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/case-table5.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/case-table6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/case-table6.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/case-table7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/case-table7.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/case-table8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/case-table8.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/case-table9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/case-table9.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/component-use.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/component-use.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/create-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/create-page.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/create-proj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/create-proj.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/develop1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/develop1.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/develop2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/develop2.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/directive-for.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/directive-for.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/directive-if.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/directive-if.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/directive-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/directive-tab.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/interactive-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/interactive-1.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/interactive-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/interactive-2.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/interactive-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/interactive-3.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/interactive-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/interactive-4.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/interactive-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/interactive-5.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/layout-add1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/layout-add1.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/layout-add2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/layout-add2.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/layout-use.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/layout-use.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/method-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/method-01.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/method-dir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/method-dir.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/mobile-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/mobile-1.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/mobile-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/mobile-2.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/mobile-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/mobile-3.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/mobile-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/mobile-4.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/mobile-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/mobile-5.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/mobile-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/mobile-6.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/mobile-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/mobile-7.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/mobile-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/mobile-8.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/page-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/page-list.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/page1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/page1.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/page11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/page11.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/page2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/page2.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/page3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/page3.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/page4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/page4.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/page5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/page5.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/page6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/page6.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/page7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/page7.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/page8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/page8.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/release-log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/release-log.png -------------------------------------------------------------------------------- /lib/client/src/images/help/zh/version-cur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/help/zh/version-cur.png -------------------------------------------------------------------------------- /lib/client/src/images/home-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/home-bg.png -------------------------------------------------------------------------------- /lib/client/src/images/homeBg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/homeBg.jpg -------------------------------------------------------------------------------- /lib/client/src/images/hongbao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/hongbao.png -------------------------------------------------------------------------------- /lib/client/src/images/kendo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/kendo.png -------------------------------------------------------------------------------- /lib/client/src/images/layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/layout.png -------------------------------------------------------------------------------- /lib/client/src/images/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/lock.svg -------------------------------------------------------------------------------- /lib/client/src/images/logo-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/logo-name.png -------------------------------------------------------------------------------- /lib/client/src/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/logo.png -------------------------------------------------------------------------------- /lib/client/src/images/magic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/magic.png -------------------------------------------------------------------------------- /lib/client/src/images/no-permission.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/no-permission.svg -------------------------------------------------------------------------------- /lib/client/src/images/page-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/page-demo.png -------------------------------------------------------------------------------- /lib/client/src/images/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/phone.png -------------------------------------------------------------------------------- /lib/client/src/images/point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/point.png -------------------------------------------------------------------------------- /lib/client/src/images/portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/portal.png -------------------------------------------------------------------------------- /lib/client/src/images/preview-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/preview-error.png -------------------------------------------------------------------------------- /lib/client/src/images/process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/process.png -------------------------------------------------------------------------------- /lib/client/src/images/qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/qq.png -------------------------------------------------------------------------------- /lib/client/src/images/react.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/react.png -------------------------------------------------------------------------------- /lib/client/src/images/resource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/resource.png -------------------------------------------------------------------------------- /lib/client/src/images/svg/add-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/svg/add-line.svg -------------------------------------------------------------------------------- /lib/client/src/images/svg/bk-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/svg/bk-logo.svg -------------------------------------------------------------------------------- /lib/client/src/images/svg/bk-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/svg/bk-text.svg -------------------------------------------------------------------------------- /lib/client/src/images/svg/drag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/svg/drag.svg -------------------------------------------------------------------------------- /lib/client/src/images/svg/icon-border-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/svg/icon-border-all.svg -------------------------------------------------------------------------------- /lib/client/src/images/svg/icon-border-s.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/svg/icon-border-s.svg -------------------------------------------------------------------------------- /lib/client/src/images/svg/icon-border-x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/svg/icon-border-x.svg -------------------------------------------------------------------------------- /lib/client/src/images/svg/icon-border-y.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/svg/icon-border-y.svg -------------------------------------------------------------------------------- /lib/client/src/images/svg/icon-border-z.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/svg/icon-border-z.svg -------------------------------------------------------------------------------- /lib/client/src/images/svg/icon-radius-s.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/svg/icon-radius-s.svg -------------------------------------------------------------------------------- /lib/client/src/images/svg/icon-radius-ys.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/svg/icon-radius-ys.svg -------------------------------------------------------------------------------- /lib/client/src/images/svg/icon-radius-yx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/svg/icon-radius-yx.svg -------------------------------------------------------------------------------- /lib/client/src/images/svg/icon-radius-zs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/svg/icon-radius-zs.svg -------------------------------------------------------------------------------- /lib/client/src/images/svg/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/svg/loading.svg -------------------------------------------------------------------------------- /lib/client/src/images/svg/right-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/svg/right-down.svg -------------------------------------------------------------------------------- /lib/client/src/images/svg/right-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/svg/right-up.svg -------------------------------------------------------------------------------- /lib/client/src/images/svg/stretch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/svg/stretch.svg -------------------------------------------------------------------------------- /lib/client/src/images/svg/up-down-extend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/svg/up-down-extend.svg -------------------------------------------------------------------------------- /lib/client/src/images/vue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/vue.png -------------------------------------------------------------------------------- /lib/client/src/images/wx-work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/images/wx-work.png -------------------------------------------------------------------------------- /lib/client/src/locales/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/locales/i18n.js -------------------------------------------------------------------------------- /lib/client/src/locales/lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/locales/lang/en.json -------------------------------------------------------------------------------- /lib/client/src/locales/lang/zh-cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/locales/lang/zh-cn.json -------------------------------------------------------------------------------- /lib/client/src/locales/temp-func/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/locales/temp-func/en.json -------------------------------------------------------------------------------- /lib/client/src/locales/temp-func/zh-cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/locales/temp-func/zh-cn.json -------------------------------------------------------------------------------- /lib/client/src/locales/version-log/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/locales/version-log/en.json -------------------------------------------------------------------------------- /lib/client/src/locales/version-log/zh-cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/locales/version-log/zh-cn.json -------------------------------------------------------------------------------- /lib/client/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/main.js -------------------------------------------------------------------------------- /lib/client/src/preview/children/404/404.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/preview/children/404/404.css -------------------------------------------------------------------------------- /lib/client/src/preview/children/404/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/preview/children/404/404.js -------------------------------------------------------------------------------- /lib/client/src/preview/children/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/preview/children/app/app.css -------------------------------------------------------------------------------- /lib/client/src/preview/children/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/preview/children/app/app.js -------------------------------------------------------------------------------- /lib/client/src/preview/children/home/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/preview/children/home/home.js -------------------------------------------------------------------------------- /lib/client/src/preview/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/preview/component.js -------------------------------------------------------------------------------- /lib/client/src/preview/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/preview/index.js -------------------------------------------------------------------------------- /lib/client/src/preview/overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/preview/overlay.js -------------------------------------------------------------------------------- /lib/client/src/preview/render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/preview/render.js -------------------------------------------------------------------------------- /lib/client/src/preview/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/preview/router.js -------------------------------------------------------------------------------- /lib/client/src/preview/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/preview/store.js -------------------------------------------------------------------------------- /lib/client/src/preview/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/preview/style.js -------------------------------------------------------------------------------- /lib/client/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/router/index.js -------------------------------------------------------------------------------- /lib/client/src/shim.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/shim.d.ts -------------------------------------------------------------------------------- /lib/client/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/store/index.js -------------------------------------------------------------------------------- /lib/client/src/store/modules/ai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/store/modules/ai.js -------------------------------------------------------------------------------- /lib/client/src/store/modules/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/store/modules/api.js -------------------------------------------------------------------------------- /lib/client/src/store/modules/components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/store/modules/components.js -------------------------------------------------------------------------------- /lib/client/src/store/modules/data-source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/store/modules/data-source.js -------------------------------------------------------------------------------- /lib/client/src/store/modules/drag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/store/modules/drag.js -------------------------------------------------------------------------------- /lib/client/src/store/modules/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/store/modules/file.js -------------------------------------------------------------------------------- /lib/client/src/store/modules/flow/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/store/modules/flow/index.js -------------------------------------------------------------------------------- /lib/client/src/store/modules/flow/task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/store/modules/flow/task.js -------------------------------------------------------------------------------- /lib/client/src/store/modules/flow/tpl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/store/modules/flow/tpl.js -------------------------------------------------------------------------------- /lib/client/src/store/modules/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/store/modules/functions.js -------------------------------------------------------------------------------- /lib/client/src/store/modules/iam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/store/modules/iam.js -------------------------------------------------------------------------------- /lib/client/src/store/modules/icon-manage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/store/modules/icon-manage.js -------------------------------------------------------------------------------- /lib/client/src/store/modules/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/store/modules/layout.js -------------------------------------------------------------------------------- /lib/client/src/store/modules/logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/store/modules/logs.js -------------------------------------------------------------------------------- /lib/client/src/store/modules/member.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/store/modules/member.js -------------------------------------------------------------------------------- /lib/client/src/store/modules/nocode/flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/store/modules/nocode/flow.js -------------------------------------------------------------------------------- /lib/client/src/store/modules/nocode/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/store/modules/nocode/form.js -------------------------------------------------------------------------------- /lib/client/src/store/modules/nocode/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/store/modules/nocode/index.js -------------------------------------------------------------------------------- /lib/client/src/store/modules/page-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/store/modules/page-template.js -------------------------------------------------------------------------------- /lib/client/src/store/modules/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/store/modules/page.js -------------------------------------------------------------------------------- /lib/client/src/store/modules/project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/store/modules/project.js -------------------------------------------------------------------------------- /lib/client/src/store/modules/release.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/store/modules/release.js -------------------------------------------------------------------------------- /lib/client/src/store/modules/resource-lock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/store/modules/resource-lock.js -------------------------------------------------------------------------------- /lib/client/src/store/modules/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/store/modules/route.js -------------------------------------------------------------------------------- /lib/client/src/store/modules/saas-backend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/store/modules/saas-backend.js -------------------------------------------------------------------------------- /lib/client/src/store/modules/third-part-db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/store/modules/third-part-db.js -------------------------------------------------------------------------------- /lib/client/src/store/modules/variable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/store/modules/variable.js -------------------------------------------------------------------------------- /lib/client/src/store/modules/vue-code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/store/modules/vue-code.js -------------------------------------------------------------------------------- /lib/client/src/views/edit-nocode/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/views/edit-nocode/index.vue -------------------------------------------------------------------------------- /lib/client/src/views/help/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/views/help/index.vue -------------------------------------------------------------------------------- /lib/client/src/views/home/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/views/home/index.vue -------------------------------------------------------------------------------- /lib/client/src/views/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/views/index.vue -------------------------------------------------------------------------------- /lib/client/src/views/index/components/utils/index.js: -------------------------------------------------------------------------------- 1 | export * from './sync-variable-value' 2 | -------------------------------------------------------------------------------- /lib/client/src/views/index/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/views/index/index.vue -------------------------------------------------------------------------------- /lib/client/src/views/preview/swagger-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/views/preview/swagger-ui.css -------------------------------------------------------------------------------- /lib/client/src/views/project/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/views/project/basic.vue -------------------------------------------------------------------------------- /lib/client/src/views/project/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/views/project/index.vue -------------------------------------------------------------------------------- /lib/client/src/views/project/layout/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/views/project/layout/index.vue -------------------------------------------------------------------------------- /lib/client/src/views/project/logs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/views/project/logs.vue -------------------------------------------------------------------------------- /lib/client/src/views/project/member.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/views/project/member.vue -------------------------------------------------------------------------------- /lib/client/src/views/project/project-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/views/project/project-data.js -------------------------------------------------------------------------------- /lib/client/src/views/status/403.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/views/status/403.vue -------------------------------------------------------------------------------- /lib/client/src/views/status/404.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/views/status/404.vue -------------------------------------------------------------------------------- /lib/client/src/views/system/health.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/views/system/health.vue -------------------------------------------------------------------------------- /lib/client/src/views/system/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/src/views/system/index.vue -------------------------------------------------------------------------------- /lib/client/static/images/favion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/static/images/favion.png -------------------------------------------------------------------------------- /lib/client/static/images/firstswiper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/static/images/firstswiper.jpg -------------------------------------------------------------------------------- /lib/client/static/images/icon/error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/static/images/icon/error.svg -------------------------------------------------------------------------------- /lib/client/static/images/icon/failed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/static/images/icon/failed.svg -------------------------------------------------------------------------------- /lib/client/static/images/icon/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/static/images/icon/loading.svg -------------------------------------------------------------------------------- /lib/client/static/images/icon/normal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/static/images/icon/normal.svg -------------------------------------------------------------------------------- /lib/client/static/images/icon/off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/static/images/icon/off.svg -------------------------------------------------------------------------------- /lib/client/static/images/icon/pending.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/static/images/icon/pending.svg -------------------------------------------------------------------------------- /lib/client/static/images/icon/success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/static/images/icon/success.svg -------------------------------------------------------------------------------- /lib/client/static/images/icon/unknown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/static/images/icon/unknown.svg -------------------------------------------------------------------------------- /lib/client/static/images/icon/waiting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/static/images/icon/waiting.svg -------------------------------------------------------------------------------- /lib/client/static/images/icon/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/static/images/icon/warning.svg -------------------------------------------------------------------------------- /lib/client/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/static/images/logo.png -------------------------------------------------------------------------------- /lib/client/static/images/secondswiper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/static/images/secondswiper.jpg -------------------------------------------------------------------------------- /lib/client/static/login_success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/static/login_success.html -------------------------------------------------------------------------------- /lib/client/typings/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/typings/global.d.ts -------------------------------------------------------------------------------- /lib/client/typings/shims-vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/client/typings/shims-vue.d.ts -------------------------------------------------------------------------------- /lib/server/app.browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/app.browser.js -------------------------------------------------------------------------------- /lib/server/conf/bk-repo.js.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/conf/bk-repo.js.example -------------------------------------------------------------------------------- /lib/server/conf/data-base.js.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/conf/data-base.js.example -------------------------------------------------------------------------------- /lib/server/conf/data-source.js.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/conf/data-source.js.example -------------------------------------------------------------------------------- /lib/server/conf/db-migrate.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/conf/db-migrate.json.example -------------------------------------------------------------------------------- /lib/server/conf/encrypt-secret-key.js.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/conf/encrypt-secret-key.js.example -------------------------------------------------------------------------------- /lib/server/conf/flow.js.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/conf/flow.js.example -------------------------------------------------------------------------------- /lib/server/conf/http.js.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/conf/http.js.example -------------------------------------------------------------------------------- /lib/server/conf/iam.js.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/conf/iam.js.example -------------------------------------------------------------------------------- /lib/server/conf/npm.js.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/conf/npm.js.example -------------------------------------------------------------------------------- /lib/server/conf/v3.js.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/conf/v3.js.example -------------------------------------------------------------------------------- /lib/server/controller/ai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/controller/ai.js -------------------------------------------------------------------------------- /lib/server/controller/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/controller/api.js -------------------------------------------------------------------------------- /lib/server/controller/bkvision.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/controller/bkvision.js -------------------------------------------------------------------------------- /lib/server/controller/component-category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/controller/component-category.js -------------------------------------------------------------------------------- /lib/server/controller/component-favourite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/controller/component-favourite.js -------------------------------------------------------------------------------- /lib/server/controller/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/controller/component.js -------------------------------------------------------------------------------- /lib/server/controller/custom-business.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/controller/custom-business.js -------------------------------------------------------------------------------- /lib/server/controller/data-source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/controller/data-source.js -------------------------------------------------------------------------------- /lib/server/controller/db-migration-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/controller/db-migration-helper.js -------------------------------------------------------------------------------- /lib/server/controller/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/controller/file.js -------------------------------------------------------------------------------- /lib/server/controller/flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/controller/flow.js -------------------------------------------------------------------------------- /lib/server/controller/function-market.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/controller/function-market.js -------------------------------------------------------------------------------- /lib/server/controller/function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/controller/function.js -------------------------------------------------------------------------------- /lib/server/controller/health.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/controller/health.js -------------------------------------------------------------------------------- /lib/server/controller/iam-migration-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/controller/iam-migration-helper.js -------------------------------------------------------------------------------- /lib/server/controller/iam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/controller/iam.js -------------------------------------------------------------------------------- /lib/server/controller/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/controller/layout.js -------------------------------------------------------------------------------- /lib/server/controller/logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/controller/logs.js -------------------------------------------------------------------------------- /lib/server/controller/mock-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/controller/mock-data.js -------------------------------------------------------------------------------- /lib/server/controller/no-code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/controller/no-code.js -------------------------------------------------------------------------------- /lib/server/controller/nocode-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/controller/nocode-form.js -------------------------------------------------------------------------------- /lib/server/controller/notice-center.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/controller/notice-center.js -------------------------------------------------------------------------------- /lib/server/controller/open-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/controller/open-api.js -------------------------------------------------------------------------------- /lib/server/controller/operation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/controller/operation.js -------------------------------------------------------------------------------- /lib/server/controller/page-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/controller/page-template.js -------------------------------------------------------------------------------- /lib/server/controller/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/controller/page.js -------------------------------------------------------------------------------- /lib/server/controller/project-code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/controller/project-code.js -------------------------------------------------------------------------------- /lib/server/controller/project-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/controller/project-version.js -------------------------------------------------------------------------------- /lib/server/controller/project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/controller/project.js -------------------------------------------------------------------------------- /lib/server/controller/release.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/controller/release.js -------------------------------------------------------------------------------- /lib/server/controller/resource-lock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/controller/resource-lock.js -------------------------------------------------------------------------------- /lib/server/controller/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/controller/route.js -------------------------------------------------------------------------------- /lib/server/controller/saas-backend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/controller/saas-backend.js -------------------------------------------------------------------------------- /lib/server/controller/saas-module-story.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/controller/saas-module-story.js -------------------------------------------------------------------------------- /lib/server/controller/third-part-db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/controller/third-part-db.js -------------------------------------------------------------------------------- /lib/server/controller/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/controller/user.js -------------------------------------------------------------------------------- /lib/server/controller/variable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/controller/variable.js -------------------------------------------------------------------------------- /lib/server/controller/vue-code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/controller/vue-code.js -------------------------------------------------------------------------------- /lib/server/custom-global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/custom-global.js -------------------------------------------------------------------------------- /lib/server/decorator/authorization/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/decorator/authorization/index.js -------------------------------------------------------------------------------- /lib/server/decorator/check/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/decorator/check/index.js -------------------------------------------------------------------------------- /lib/server/decorator/controller/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/decorator/controller/index.js -------------------------------------------------------------------------------- /lib/server/decorator/controller/params.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/decorator/controller/params.js -------------------------------------------------------------------------------- /lib/server/decorator/controller/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/decorator/controller/router.js -------------------------------------------------------------------------------- /lib/server/decorator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/decorator/index.js -------------------------------------------------------------------------------- /lib/server/decorator/send/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/decorator/send/index.js -------------------------------------------------------------------------------- /lib/server/initResources/custom-comp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/initResources/custom-comp/index.js -------------------------------------------------------------------------------- /lib/server/initResources/function/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/initResources/function/index.js -------------------------------------------------------------------------------- /lib/server/initResources/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/initResources/index.js -------------------------------------------------------------------------------- /lib/server/initResources/offcial-project/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/server/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/locales/en.json -------------------------------------------------------------------------------- /lib/server/locales/zh-cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/locales/zh-cn.json -------------------------------------------------------------------------------- /lib/server/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/logger.js -------------------------------------------------------------------------------- /lib/server/middleware/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/middleware/auth.js -------------------------------------------------------------------------------- /lib/server/middleware/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/middleware/error.js -------------------------------------------------------------------------------- /lib/server/middleware/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/middleware/http.js -------------------------------------------------------------------------------- /lib/server/middleware/json-send.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/middleware/json-send.js -------------------------------------------------------------------------------- /lib/server/middleware/operation-logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/middleware/operation-logger.js -------------------------------------------------------------------------------- /lib/server/middleware/request-context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/middleware/request-context.js -------------------------------------------------------------------------------- /lib/server/model/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/common.js -------------------------------------------------------------------------------- /lib/server/model/comp-favourite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/comp-favourite.js -------------------------------------------------------------------------------- /lib/server/model/comp-share.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/comp-share.js -------------------------------------------------------------------------------- /lib/server/model/component-category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/component-category.js -------------------------------------------------------------------------------- /lib/server/model/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/component.js -------------------------------------------------------------------------------- /lib/server/model/entities/ai-prompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/ai-prompt.js -------------------------------------------------------------------------------- /lib/server/model/entities/api-category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/api-category.js -------------------------------------------------------------------------------- /lib/server/model/entities/api-domains.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/api-domains.js -------------------------------------------------------------------------------- /lib/server/model/entities/api-migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/api-migration.js -------------------------------------------------------------------------------- /lib/server/model/entities/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/api.js -------------------------------------------------------------------------------- /lib/server/model/entities/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/base.js -------------------------------------------------------------------------------- /lib/server/model/entities/comp-category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/comp-category.js -------------------------------------------------------------------------------- /lib/server/model/entities/comp-favourite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/comp-favourite.js -------------------------------------------------------------------------------- /lib/server/model/entities/comp-share.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/comp-share.js -------------------------------------------------------------------------------- /lib/server/model/entities/comp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/comp.js -------------------------------------------------------------------------------- /lib/server/model/entities/data-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/data-table.js -------------------------------------------------------------------------------- /lib/server/model/entities/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/file.js -------------------------------------------------------------------------------- /lib/server/model/entities/flow-task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/flow-task.js -------------------------------------------------------------------------------- /lib/server/model/entities/flow-tpl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/flow-tpl.js -------------------------------------------------------------------------------- /lib/server/model/entities/flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/flow.js -------------------------------------------------------------------------------- /lib/server/model/entities/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/form.js -------------------------------------------------------------------------------- /lib/server/model/entities/func-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/func-api.js -------------------------------------------------------------------------------- /lib/server/model/entities/func-func.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/func-func.js -------------------------------------------------------------------------------- /lib/server/model/entities/func-group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/func-group.js -------------------------------------------------------------------------------- /lib/server/model/entities/func-market.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/func-market.js -------------------------------------------------------------------------------- /lib/server/model/entities/func-variable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/func-variable.js -------------------------------------------------------------------------------- /lib/server/model/entities/func.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/func.js -------------------------------------------------------------------------------- /lib/server/model/entities/iam-app-perm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/iam-app-perm.js -------------------------------------------------------------------------------- /lib/server/model/entities/iam-migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/iam-migration.js -------------------------------------------------------------------------------- /lib/server/model/entities/layout-inst.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/layout-inst.js -------------------------------------------------------------------------------- /lib/server/model/entities/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/layout.js -------------------------------------------------------------------------------- /lib/server/model/entities/operate-log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/operate-log.js -------------------------------------------------------------------------------- /lib/server/model/entities/page-comp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/page-comp.js -------------------------------------------------------------------------------- /lib/server/model/entities/page-func.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/page-func.js -------------------------------------------------------------------------------- /lib/server/model/entities/page-route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/page-route.js -------------------------------------------------------------------------------- /lib/server/model/entities/page-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/page-template.js -------------------------------------------------------------------------------- /lib/server/model/entities/page-variable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/page-variable.js -------------------------------------------------------------------------------- /lib/server/model/entities/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/page.js -------------------------------------------------------------------------------- /lib/server/model/entities/perm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/perm.js -------------------------------------------------------------------------------- /lib/server/model/entities/platform-admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/platform-admin.js -------------------------------------------------------------------------------- /lib/server/model/entities/preview-db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/preview-db.js -------------------------------------------------------------------------------- /lib/server/model/entities/project-comp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/project-comp.js -------------------------------------------------------------------------------- /lib/server/model/entities/project-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/project-page.js -------------------------------------------------------------------------------- /lib/server/model/entities/project-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/project-version.js -------------------------------------------------------------------------------- /lib/server/model/entities/project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/project.js -------------------------------------------------------------------------------- /lib/server/model/entities/query-record.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/query-record.js -------------------------------------------------------------------------------- /lib/server/model/entities/release-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/release-version.js -------------------------------------------------------------------------------- /lib/server/model/entities/role-perm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/role-perm.js -------------------------------------------------------------------------------- /lib/server/model/entities/role.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/role.js -------------------------------------------------------------------------------- /lib/server/model/entities/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/route.js -------------------------------------------------------------------------------- /lib/server/model/entities/saas-backend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/saas-backend.js -------------------------------------------------------------------------------- /lib/server/model/entities/third-part-db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/third-part-db.js -------------------------------------------------------------------------------- /lib/server/model/entities/token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/token.js -------------------------------------------------------------------------------- /lib/server/model/entities/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/user.js -------------------------------------------------------------------------------- /lib/server/model/entities/variable-func.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/variable-func.js -------------------------------------------------------------------------------- /lib/server/model/entities/variable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/variable.js -------------------------------------------------------------------------------- /lib/server/model/entities/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/version.js -------------------------------------------------------------------------------- /lib/server/model/entities/white-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/entities/white-list.js -------------------------------------------------------------------------------- /lib/server/model/iam-app-perm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/iam-app-perm.js -------------------------------------------------------------------------------- /lib/server/model/iam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/iam.js -------------------------------------------------------------------------------- /lib/server/model/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/layout.js -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20210329081322-init-sql-down.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20210329113820-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20210426083005-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20210510035758-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20210524075300-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20210613024623-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20210706115827-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20210816073030-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20210819140603-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20210820022936-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20210902025823-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20211014084206-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20211103024457-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20211109090310-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20211124155657-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20211201021005-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20220316035357-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20220330034705-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20220418081737-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20220514154840-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20220516063846-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20220518022855-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20220525114335-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20220603122851-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20220610155110-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20220615124909-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20220621041055-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20220630080700-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20220707034530-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20220712130047-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20220726101427-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20220811062039-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20220818125209-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20220823034939-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20220823073549-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20220909092005-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20220923024122-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20221004102006-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20230106064941-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20230423023610-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20230713034122-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20230801022041-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20230808030455-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20231012080912-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20231013071824-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20231123063316-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20231211080837-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20231226063946-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20240129064134-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20240304032126-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20240318084807-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20240413154532-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20240902162632-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20241022151118-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/server/model/migrations/sqls/20250905024602-update-sql-down.sql: -------------------------------------------------------------------------------- 1 | /* Replace with your SQL commands */ -------------------------------------------------------------------------------- /lib/server/model/operate-log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/operate-log.js -------------------------------------------------------------------------------- /lib/server/model/page-comp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/page-comp.js -------------------------------------------------------------------------------- /lib/server/model/page-template-category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/page-template-category.js -------------------------------------------------------------------------------- /lib/server/model/page-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/page-template.js -------------------------------------------------------------------------------- /lib/server/model/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/page.js -------------------------------------------------------------------------------- /lib/server/model/project-code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/project-code.js -------------------------------------------------------------------------------- /lib/server/model/project-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/project-version.js -------------------------------------------------------------------------------- /lib/server/model/project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/project.js -------------------------------------------------------------------------------- /lib/server/model/release-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/release-version.js -------------------------------------------------------------------------------- /lib/server/model/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/route.js -------------------------------------------------------------------------------- /lib/server/model/sql/20200707/initial.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/sql/20200707/initial.sql -------------------------------------------------------------------------------- /lib/server/model/sql/20200909/update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/sql/20200909/update.sql -------------------------------------------------------------------------------- /lib/server/model/sql/20200914/update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/sql/20200914/update.sql -------------------------------------------------------------------------------- /lib/server/model/sql/20200922/update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/sql/20200922/update.sql -------------------------------------------------------------------------------- /lib/server/model/sql/20200924/update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/sql/20200924/update.sql -------------------------------------------------------------------------------- /lib/server/model/sql/20200927/update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/sql/20200927/update.sql -------------------------------------------------------------------------------- /lib/server/model/sql/20201014/update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/sql/20201014/update.sql -------------------------------------------------------------------------------- /lib/server/model/sql/20201015/update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/sql/20201015/update.sql -------------------------------------------------------------------------------- /lib/server/model/sql/20201019/update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/sql/20201019/update.sql -------------------------------------------------------------------------------- /lib/server/model/sql/20201020/update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/sql/20201020/update.sql -------------------------------------------------------------------------------- /lib/server/model/sql/20201026/update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/sql/20201026/update.sql -------------------------------------------------------------------------------- /lib/server/model/sql/20201027/update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/sql/20201027/update.sql -------------------------------------------------------------------------------- /lib/server/model/sql/20201109/update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/sql/20201109/update.sql -------------------------------------------------------------------------------- /lib/server/model/sql/20201114/update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/sql/20201114/update.sql -------------------------------------------------------------------------------- /lib/server/model/sql/20201126/update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/sql/20201126/update.sql -------------------------------------------------------------------------------- /lib/server/model/sql/20201128/update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/sql/20201128/update.sql -------------------------------------------------------------------------------- /lib/server/model/sql/20201202/update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/sql/20201202/update.sql -------------------------------------------------------------------------------- /lib/server/model/sql/20201214/update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/sql/20201214/update.sql -------------------------------------------------------------------------------- /lib/server/model/sql/20201215/update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/sql/20201215/update.sql -------------------------------------------------------------------------------- /lib/server/model/sql/20201217/update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/sql/20201217/update.sql -------------------------------------------------------------------------------- /lib/server/model/sql/20201221/update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/sql/20201221/update.sql -------------------------------------------------------------------------------- /lib/server/model/sql/20210125/update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/sql/20210125/update.sql -------------------------------------------------------------------------------- /lib/server/model/sql/20210413/update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/sql/20210413/update.sql -------------------------------------------------------------------------------- /lib/server/model/sql/20210512/update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/sql/20210512/update.sql -------------------------------------------------------------------------------- /lib/server/model/sql/20210604/update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/sql/20210604/update.sql -------------------------------------------------------------------------------- /lib/server/model/sql/20210706/update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/sql/20210706/update.sql -------------------------------------------------------------------------------- /lib/server/model/sql/20210816/update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/sql/20210816/update.sql -------------------------------------------------------------------------------- /lib/server/model/sql/20210901/update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/sql/20210901/update.sql -------------------------------------------------------------------------------- /lib/server/model/sql/20210908/update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/sql/20210908/update.sql -------------------------------------------------------------------------------- /lib/server/model/sql/20211031/update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/sql/20211031/update.sql -------------------------------------------------------------------------------- /lib/server/model/sql/20211109/update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/sql/20211109/update.sql -------------------------------------------------------------------------------- /lib/server/model/sql/20211201/update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/sql/20211201/update.sql -------------------------------------------------------------------------------- /lib/server/model/sql/20220316/update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/sql/20220316/update.sql -------------------------------------------------------------------------------- /lib/server/model/sql/20220330/update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/sql/20220330/update.sql -------------------------------------------------------------------------------- /lib/server/model/sql/20220418/update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/sql/20220418/update.sql -------------------------------------------------------------------------------- /lib/server/model/sql/20220516/update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/sql/20220516/update.sql -------------------------------------------------------------------------------- /lib/server/model/sql/20220613/update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/sql/20220613/update.sql -------------------------------------------------------------------------------- /lib/server/model/sql/20220707/update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/sql/20220707/update.sql -------------------------------------------------------------------------------- /lib/server/model/sql/20220726/update.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `flow` 2 | ADD COLUMN `deployed` int(11) DEFAULT 0 COMMENT '流程编辑后是否被部署' AFTER `itsmId`; 3 | -------------------------------------------------------------------------------- /lib/server/model/sql/20220923/update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/sql/20220923/update.sql -------------------------------------------------------------------------------- /lib/server/model/sql/20221004/update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/sql/20221004/update.sql -------------------------------------------------------------------------------- /lib/server/model/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/user.js -------------------------------------------------------------------------------- /lib/server/model/variable-relation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/variable-relation.js -------------------------------------------------------------------------------- /lib/server/model/variable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/variable.js -------------------------------------------------------------------------------- /lib/server/model/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/version.js -------------------------------------------------------------------------------- /lib/server/model/vue-code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/model/vue-code.js -------------------------------------------------------------------------------- /lib/server/project-template/vue2/project-init-code/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | -------------------------------------------------------------------------------- /lib/server/project-template/vue2/project-init-code/.eslintignore: -------------------------------------------------------------------------------- 1 | static/ 2 | tippy/ 3 | -------------------------------------------------------------------------------- /lib/server/project-template/vue2/project-init-code/.npmrc: -------------------------------------------------------------------------------- 1 | unsafe-perm=true 2 | -------------------------------------------------------------------------------- /lib/server/project-template/vue2/project-init-code/bin/post-compile: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | echo "Post Hook: this runs after build" 4 | -------------------------------------------------------------------------------- /lib/server/project-template/vue2/project-init-code/bin/pre-compile: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | echo "pre Hook: this runs before npm install" 4 | -------------------------------------------------------------------------------- /lib/server/project-template/vue2/project-init-code/bin/pre-heroku: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | echo "heroku pre-build 在npm install前执行" 4 | -------------------------------------------------------------------------------- /lib/server/project-template/vue2/project-init-code/lib/client/src/components/data-manage-container/form-data-manage/components/table/index.postcss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/server/project-template/vue2/project-init-code/lib/client/src/mixins/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/server/project-template/vue2/project-init-code/lib/server/conf/third-part-db.js: -------------------------------------------------------------------------------- 1 | export default ${thirdPartDB} 2 | -------------------------------------------------------------------------------- /lib/server/project-template/vue2/project-init-code/lib/shared/page-route/info.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/server/project-template/vue3/project-init-code/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | -------------------------------------------------------------------------------- /lib/server/project-template/vue3/project-init-code/.eslintignore: -------------------------------------------------------------------------------- 1 | static/ 2 | tippy/ 3 | -------------------------------------------------------------------------------- /lib/server/project-template/vue3/project-init-code/.npmrc: -------------------------------------------------------------------------------- 1 | unsafe-perm=true 2 | -------------------------------------------------------------------------------- /lib/server/project-template/vue3/project-init-code/bin/post-compile: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | echo "Post Hook: this runs after build" 4 | -------------------------------------------------------------------------------- /lib/server/project-template/vue3/project-init-code/bin/pre-compile: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | echo "pre Hook: this runs before npm install" 4 | -------------------------------------------------------------------------------- /lib/server/project-template/vue3/project-init-code/bin/pre-heroku: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | echo "heroku pre-build 在npm install前执行" 4 | -------------------------------------------------------------------------------- /lib/server/project-template/vue3/project-init-code/lib/client/src/components/data-manage-container/form-data-manage/components/table/index.postcss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/server/project-template/vue3/project-init-code/lib/client/src/mixins/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/server/project-template/vue3/project-init-code/lib/server/conf/third-part-db.js: -------------------------------------------------------------------------------- 1 | export default ${thirdPartDB} 2 | -------------------------------------------------------------------------------- /lib/server/project-template/vue3/project-init-code/lib/shared/page-route/info.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/server/router/component-category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/router/component-category.js -------------------------------------------------------------------------------- /lib/server/router/component-favourite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/router/component-favourite.js -------------------------------------------------------------------------------- /lib/server/router/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/router/component.js -------------------------------------------------------------------------------- /lib/server/router/health.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/router/health.js -------------------------------------------------------------------------------- /lib/server/router/iam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/router/iam.js -------------------------------------------------------------------------------- /lib/server/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/router/index.js -------------------------------------------------------------------------------- /lib/server/router/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/router/layout.js -------------------------------------------------------------------------------- /lib/server/router/logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/router/logs.js -------------------------------------------------------------------------------- /lib/server/router/mock-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/router/mock-data.js -------------------------------------------------------------------------------- /lib/server/router/open-api.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/router/open-api.config.js -------------------------------------------------------------------------------- /lib/server/router/open-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/router/open-api.js -------------------------------------------------------------------------------- /lib/server/router/operation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/router/operation.js -------------------------------------------------------------------------------- /lib/server/router/page-template-category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/router/page-template-category.js -------------------------------------------------------------------------------- /lib/server/router/page-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/router/page-template.js -------------------------------------------------------------------------------- /lib/server/router/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/router/page.js -------------------------------------------------------------------------------- /lib/server/router/project-code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/router/project-code.js -------------------------------------------------------------------------------- /lib/server/router/project-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/router/project-version.js -------------------------------------------------------------------------------- /lib/server/router/project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/router/project.js -------------------------------------------------------------------------------- /lib/server/router/release.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/router/release.js -------------------------------------------------------------------------------- /lib/server/router/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/router/route.js -------------------------------------------------------------------------------- /lib/server/router/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/router/user.js -------------------------------------------------------------------------------- /lib/server/router/variable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/router/variable.js -------------------------------------------------------------------------------- /lib/server/router/vue-code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/router/vue-code.js -------------------------------------------------------------------------------- /lib/server/service/business/ai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/service/business/ai.js -------------------------------------------------------------------------------- /lib/server/service/business/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/service/business/api.js -------------------------------------------------------------------------------- /lib/server/service/business/bk-base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/service/business/bk-base.js -------------------------------------------------------------------------------- /lib/server/service/business/data-source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/service/business/data-source.js -------------------------------------------------------------------------------- /lib/server/service/business/data-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/service/business/data-table.js -------------------------------------------------------------------------------- /lib/server/service/business/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/service/business/file.js -------------------------------------------------------------------------------- /lib/server/service/business/flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/service/business/flow.js -------------------------------------------------------------------------------- /lib/server/service/business/function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/service/business/function.js -------------------------------------------------------------------------------- /lib/server/service/business/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/service/business/layout.js -------------------------------------------------------------------------------- /lib/server/service/business/no-code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/service/business/no-code.js -------------------------------------------------------------------------------- /lib/server/service/business/nocode-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/service/business/nocode-form.js -------------------------------------------------------------------------------- /lib/server/service/business/notice-center.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/service/business/notice-center.js -------------------------------------------------------------------------------- /lib/server/service/business/open-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/service/business/open-api.js -------------------------------------------------------------------------------- /lib/server/service/business/page-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/service/business/page-template.js -------------------------------------------------------------------------------- /lib/server/service/business/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/service/business/page.js -------------------------------------------------------------------------------- /lib/server/service/business/project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/service/business/project.js -------------------------------------------------------------------------------- /lib/server/service/business/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/service/business/route.js -------------------------------------------------------------------------------- /lib/server/service/business/saas_builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/service/business/saas_builder.js -------------------------------------------------------------------------------- /lib/server/service/business/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/service/business/template.js -------------------------------------------------------------------------------- /lib/server/service/business/token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/service/business/token.js -------------------------------------------------------------------------------- /lib/server/service/business/v3-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/service/business/v3-service.js -------------------------------------------------------------------------------- /lib/server/service/business/variable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/service/business/variable.js -------------------------------------------------------------------------------- /lib/server/service/common/ai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/service/common/ai.js -------------------------------------------------------------------------------- /lib/server/service/common/code-formatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/service/common/code-formatter.js -------------------------------------------------------------------------------- /lib/server/service/common/data-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/service/common/data-service.js -------------------------------------------------------------------------------- /lib/server/service/common/operation-logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/service/common/operation-logger.js -------------------------------------------------------------------------------- /lib/server/service/common/project-auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/service/common/project-auth.js -------------------------------------------------------------------------------- /lib/server/service/common/user-info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/service/common/user-info.js -------------------------------------------------------------------------------- /lib/server/system-conf/apigw-docs.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/system-conf/apigw-docs.zip -------------------------------------------------------------------------------- /lib/server/system-conf/demo-page-code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/system-conf/demo-page-code.js -------------------------------------------------------------------------------- /lib/server/system-conf/eslint-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/system-conf/eslint-config.js -------------------------------------------------------------------------------- /lib/server/system-conf/logger-path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/system-conf/logger-path.js -------------------------------------------------------------------------------- /lib/server/system-conf/open-api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/system-conf/open-api.json -------------------------------------------------------------------------------- /lib/server/system-conf/operate-log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/system-conf/operate-log.js -------------------------------------------------------------------------------- /lib/server/system-conf/perm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/system-conf/perm.js -------------------------------------------------------------------------------- /lib/server/system-conf/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/system-conf/system.js -------------------------------------------------------------------------------- /lib/server/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/test.js -------------------------------------------------------------------------------- /lib/server/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/util.js -------------------------------------------------------------------------------- /lib/server/utils/constant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/utils/constant.js -------------------------------------------------------------------------------- /lib/server/utils/file-service/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/utils/file-service/index.js -------------------------------------------------------------------------------- /lib/server/utils/flow/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/utils/flow/index.js -------------------------------------------------------------------------------- /lib/server/utils/http/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/utils/http/index.js -------------------------------------------------------------------------------- /lib/server/utils/lc-compose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/utils/lc-compose.js -------------------------------------------------------------------------------- /lib/server/utils/npm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/utils/npm/index.js -------------------------------------------------------------------------------- /lib/server/utils/npm/templates/npm.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/server/utils/npm/templates/tnpm.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/server/utils/validate-url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/server/utils/validate-url.js -------------------------------------------------------------------------------- /lib/shared/api/constant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/api/constant.js -------------------------------------------------------------------------------- /lib/shared/api/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/api/helper.js -------------------------------------------------------------------------------- /lib/shared/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/api/index.js -------------------------------------------------------------------------------- /lib/shared/constant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/constant.js -------------------------------------------------------------------------------- /lib/shared/custom-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/custom-error.js -------------------------------------------------------------------------------- /lib/shared/data-source/constant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/data-source/constant.js -------------------------------------------------------------------------------- /lib/shared/data-source/data-parse/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/data-source/data-parse/common.js -------------------------------------------------------------------------------- /lib/shared/data-source/data-parse/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/data-source/data-parse/index.js -------------------------------------------------------------------------------- /lib/shared/data-source/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/data-source/helper.js -------------------------------------------------------------------------------- /lib/shared/data-source/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/data-source/index.js -------------------------------------------------------------------------------- /lib/shared/data-source/sql-builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/data-source/sql-builder.js -------------------------------------------------------------------------------- /lib/shared/flow/constant.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/shared/flow/index.js: -------------------------------------------------------------------------------- 1 | export * from './constant' 2 | -------------------------------------------------------------------------------- /lib/shared/form/index.js: -------------------------------------------------------------------------------- 1 | export const formMap = {} 2 | -------------------------------------------------------------------------------- /lib/shared/function/constant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/function/constant.js -------------------------------------------------------------------------------- /lib/shared/function/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/function/helper.js -------------------------------------------------------------------------------- /lib/shared/function/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/function/index.js -------------------------------------------------------------------------------- /lib/shared/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/index.js -------------------------------------------------------------------------------- /lib/shared/no-code/constant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/no-code/constant.js -------------------------------------------------------------------------------- /lib/shared/no-code/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/no-code/helper.js -------------------------------------------------------------------------------- /lib/shared/no-code/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/no-code/index.js -------------------------------------------------------------------------------- /lib/shared/no-code/parseItsmApiScheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/no-code/parseItsmApiScheme.js -------------------------------------------------------------------------------- /lib/shared/no-code/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/no-code/validate.js -------------------------------------------------------------------------------- /lib/shared/page-code/common/modelMethods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/page-code/common/modelMethods.js -------------------------------------------------------------------------------- /lib/shared/page-code/common/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/page-code/common/utils.js -------------------------------------------------------------------------------- /lib/shared/page-code/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/page-code/index.js -------------------------------------------------------------------------------- /lib/shared/page-code/script/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/page-code/script/index.js -------------------------------------------------------------------------------- /lib/shared/page-code/script/vue2/computed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/page-code/script/vue2/computed.js -------------------------------------------------------------------------------- /lib/shared/page-code/script/vue2/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/page-code/script/vue2/data.js -------------------------------------------------------------------------------- /lib/shared/page-code/script/vue2/import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/page-code/script/vue2/import.js -------------------------------------------------------------------------------- /lib/shared/page-code/script/vue2/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/page-code/script/vue2/index.js -------------------------------------------------------------------------------- /lib/shared/page-code/script/vue2/lifeCycle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/page-code/script/vue2/lifeCycle.js -------------------------------------------------------------------------------- /lib/shared/page-code/script/vue2/methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/page-code/script/vue2/methods.js -------------------------------------------------------------------------------- /lib/shared/page-code/script/vue2/mixins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/page-code/script/vue2/mixins.js -------------------------------------------------------------------------------- /lib/shared/page-code/script/vue2/watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/page-code/script/vue2/watch.js -------------------------------------------------------------------------------- /lib/shared/page-code/script/vue3/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/page-code/script/vue3/index.js -------------------------------------------------------------------------------- /lib/shared/page-code/style/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/page-code/style/index.js -------------------------------------------------------------------------------- /lib/shared/page-code/style/nav-style/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/page-code/style/nav-style/index.js -------------------------------------------------------------------------------- /lib/shared/page-code/style/vant3.style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/page-code/style/vant3.style.css -------------------------------------------------------------------------------- /lib/shared/page-code/template/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/page-code/template/index.js -------------------------------------------------------------------------------- /lib/shared/page-code/template/page/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/page-code/template/page/event.js -------------------------------------------------------------------------------- /lib/shared/page-code/template/page/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/page-code/template/page/index.js -------------------------------------------------------------------------------- /lib/shared/page-code/template/page/prop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/page-code/template/page/prop.js -------------------------------------------------------------------------------- /lib/shared/page-code/template/page/slot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/page-code/template/page/slot.js -------------------------------------------------------------------------------- /lib/shared/page-code/template/page/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/page-code/template/page/style.js -------------------------------------------------------------------------------- /lib/shared/rem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/rem.js -------------------------------------------------------------------------------- /lib/shared/route/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/route/helper.js -------------------------------------------------------------------------------- /lib/shared/route/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/route/index.js -------------------------------------------------------------------------------- /lib/shared/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/util.js -------------------------------------------------------------------------------- /lib/shared/variable/constant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/variable/constant.js -------------------------------------------------------------------------------- /lib/shared/variable/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/variable/helper.js -------------------------------------------------------------------------------- /lib/shared/variable/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/lib/shared/variable/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/postcss.config.js -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/readme.md -------------------------------------------------------------------------------- /scripts/dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/scripts/dev.js -------------------------------------------------------------------------------- /scripts/mark-dowm/markdown-it-replace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/scripts/mark-dowm/markdown-it-replace.js -------------------------------------------------------------------------------- /scripts/mark-dowm/md-highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/scripts/mark-dowm/md-highlight.js -------------------------------------------------------------------------------- /scripts/mark-dowm/md-hljs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/scripts/mark-dowm/md-hljs.js -------------------------------------------------------------------------------- /scripts/mark-dowm/md-loader-option.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/scripts/mark-dowm/md-loader-option.js -------------------------------------------------------------------------------- /scripts/mark-dowm/strip-tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/scripts/mark-dowm/strip-tags.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentBlueKing/bk-lesscode/HEAD/tsconfig.json --------------------------------------------------------------------------------