├── .cloudbase └── container │ └── debug.json ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .vscode └── settings.json ├── README.md ├── client ├── app.js ├── app.json ├── app.wxss ├── components │ ├── agent-deepseek │ │ ├── dist │ │ │ ├── cloudbase │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ ├── index.wxss │ │ │ │ └── lowcode │ │ │ │ │ ├── computed.js │ │ │ │ │ ├── handler │ │ │ │ │ ├── ai_bot_scroll_to_bottom.js │ │ │ │ │ ├── getQuestionFromUrl.js │ │ │ │ │ └── queryRecommendQuestions.js │ │ │ │ │ ├── lifecycle.js │ │ │ │ │ ├── state.js │ │ │ │ │ └── style.wxss │ │ │ └── common │ │ │ │ ├── cloud-sdk.js │ │ │ │ ├── info │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ │ └── util.js │ │ ├── index.js │ │ ├── miniprogram_npm │ │ │ ├── @cloudbase │ │ │ │ ├── adapter-interface │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.js.map │ │ │ │ ├── adapter-wx_mp │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.js.map │ │ │ │ ├── ai │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.js.map │ │ │ │ ├── auth │ │ │ │ │ └── index.js │ │ │ │ ├── oauth │ │ │ │ │ └── index.js │ │ │ │ ├── types │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.js.map │ │ │ │ ├── utilities │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.js.map │ │ │ │ ├── weda-client │ │ │ │ │ ├── common │ │ │ │ │ │ ├── auth.d.ts │ │ │ │ │ │ ├── auth.js │ │ │ │ │ │ ├── calculation │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── constants.d.ts │ │ │ │ │ │ ├── constants.js │ │ │ │ │ │ ├── date.d.ts │ │ │ │ │ │ ├── date.js │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── logic │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── models │ │ │ │ │ │ │ ├── fieldsService.d.ts │ │ │ │ │ │ │ ├── fieldsService.js │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── request.d.ts │ │ │ │ │ │ │ └── request.js │ │ │ │ │ │ ├── tcb.d.ts │ │ │ │ │ │ ├── tcb.js │ │ │ │ │ │ ├── text │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── time │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── types │ │ │ │ │ │ │ ├── auth.d.ts │ │ │ │ │ │ │ ├── auth.js │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── utils.d.ts │ │ │ │ │ │ └── utils.js │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── mp │ │ │ │ │ │ ├── actions.d.ts │ │ │ │ │ │ ├── actions.js │ │ │ │ │ │ ├── ai.d.ts │ │ │ │ │ │ ├── ai.js │ │ │ │ │ │ ├── app.d.ts │ │ │ │ │ │ ├── app.js │ │ │ │ │ │ ├── app │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── tcb.d.ts │ │ │ │ │ │ │ └── tcb.js │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── uitl.d.ts │ │ │ │ │ │ │ ├── uitl.js │ │ │ │ │ │ │ ├── user.d.ts │ │ │ │ │ │ │ └── user.js │ │ │ │ │ │ ├── behaviors.d.ts │ │ │ │ │ │ ├── behaviors.js │ │ │ │ │ │ ├── env │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── models │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── router.d.ts │ │ │ │ │ │ ├── router.js │ │ │ │ │ │ └── runtime │ │ │ │ │ │ │ ├── data-patch.d.ts │ │ │ │ │ │ │ ├── data-patch.js │ │ │ │ │ │ │ ├── event-emitter.d.ts │ │ │ │ │ │ │ ├── event-emitter.js │ │ │ │ │ │ │ ├── flow.d.ts │ │ │ │ │ │ │ ├── flow.js │ │ │ │ │ │ │ ├── merge-renderer.d.ts │ │ │ │ │ │ │ ├── merge-renderer.js │ │ │ │ │ │ │ ├── placeholder │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ │ └── index.wxss │ │ │ │ │ │ │ ├── query.d.ts │ │ │ │ │ │ │ ├── query.js │ │ │ │ │ │ │ ├── style.d.ts │ │ │ │ │ │ │ ├── style.js │ │ │ │ │ │ │ ├── util.d.ts │ │ │ │ │ │ │ ├── util.js │ │ │ │ │ │ │ ├── watch.d.ts │ │ │ │ │ │ │ ├── watch.js │ │ │ │ │ │ │ ├── weapp-component.d.ts │ │ │ │ │ │ │ ├── weapp-component.js │ │ │ │ │ │ │ ├── weapp-page.d.ts │ │ │ │ │ │ │ ├── weapp-page.js │ │ │ │ │ │ │ ├── widget.d.ts │ │ │ │ │ │ │ └── widget.js │ │ │ │ │ ├── types │ │ │ │ │ │ ├── auth.d.ts │ │ │ │ │ │ ├── auth.js │ │ │ │ │ │ ├── cals.d.ts │ │ │ │ │ │ ├── cals.js │ │ │ │ │ │ ├── common.d.ts │ │ │ │ │ │ ├── common.js │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── mp │ │ │ │ │ │ │ ├── app.d.ts │ │ │ │ │ │ │ ├── app.js │ │ │ │ │ │ │ ├── auth.d.ts │ │ │ │ │ │ │ ├── auth.js │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ └── web │ │ │ │ │ │ │ ├── app.d.ts │ │ │ │ │ │ │ ├── app.js │ │ │ │ │ │ │ ├── auth.d.ts │ │ │ │ │ │ │ ├── auth.js │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── vender.d.ts │ │ │ │ │ └── vender.js │ │ │ │ ├── weda-cloud-sdk │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.js.map │ │ │ │ └── weda-ui-mp │ │ │ │ │ ├── README.md │ │ │ │ │ ├── actions │ │ │ │ │ ├── showMessage │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── showModal │ │ │ │ │ │ └── index.js │ │ │ │ │ └── showToast │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── app.js │ │ │ │ │ ├── components │ │ │ │ │ ├── button │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ └── index.wxss │ │ │ │ │ ├── calendar │ │ │ │ │ │ ├── arrowright--line.svg │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ └── index.wxss │ │ │ │ │ ├── carousel │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── index.wxml │ │ │ │ │ ├── chart │ │ │ │ │ │ ├── bar │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ │ └── index.wxss │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ │ ├── bar.js │ │ │ │ │ │ │ │ ├── global.js │ │ │ │ │ │ │ │ ├── line.js │ │ │ │ │ │ │ │ └── pie.js │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ ├── eChartBar.js │ │ │ │ │ │ │ │ ├── eChartBase.js │ │ │ │ │ │ │ │ ├── eChartLine.js │ │ │ │ │ │ │ │ └── eChartPie.js │ │ │ │ │ │ │ ├── data-transform.js │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ │ └── echarts.min.js │ │ │ │ │ │ ├── ec-canvas │ │ │ │ │ │ │ ├── ec-canvas.js │ │ │ │ │ │ │ ├── ec-canvas.json │ │ │ │ │ │ │ ├── ec-canvas.wxml │ │ │ │ │ │ │ ├── ec-canvas.wxss │ │ │ │ │ │ │ └── wx-canvas.js │ │ │ │ │ │ ├── line │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ │ └── index.wxss │ │ │ │ │ │ ├── pie │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ │ └── index.wxss │ │ │ │ │ │ └── statisticsCard │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ │ └── index.wxss │ │ │ │ │ ├── common │ │ │ │ │ │ └── form-item-wrapper │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ │ └── index.wxml │ │ │ │ │ ├── container │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── index.wxml │ │ │ │ │ ├── customer-service │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ └── index.wxss │ │ │ │ │ ├── dataView │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── index.wxml │ │ │ │ │ ├── form-checkbox │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── index.wxml │ │ │ │ │ ├── form-date │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── index.wxml │ │ │ │ │ ├── form-email │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── index.wxml │ │ │ │ │ ├── form-field-behavior │ │ │ │ │ │ ├── form-field-behavior.js │ │ │ │ │ │ ├── item-behavior.js │ │ │ │ │ │ └── validator.js │ │ │ │ │ ├── form-image-uploader │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── index.wxml │ │ │ │ │ ├── form-input │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── index.wxml │ │ │ │ │ ├── form-location │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── index.wxml │ │ │ │ │ ├── form-multi-region │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── index.wxml │ │ │ │ │ ├── form-phone │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── index.wxml │ │ │ │ │ ├── form-radio │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── index.wxml │ │ │ │ │ ├── form-region │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── index.wxml │ │ │ │ │ ├── form-select-multiple │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── index.wxml │ │ │ │ │ ├── form-select │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── index.wxml │ │ │ │ │ ├── form-switch │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── index.wxml │ │ │ │ │ ├── form-text-area │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── index.wxml │ │ │ │ │ ├── form-time │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── index.wxml │ │ │ │ │ ├── form-upload-file │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── index.wxml │ │ │ │ │ ├── form-url │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── index.wxml │ │ │ │ │ ├── form │ │ │ │ │ │ ├── checkbox │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ │ └── index.wxss │ │ │ │ │ │ ├── form │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ │ ├── index.wxss │ │ │ │ │ │ │ └── wd-form.wxss │ │ │ │ │ │ ├── formcell │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ │ └── index.wxss │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ │ └── index.wxss │ │ │ │ │ │ ├── location │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ └── mapChoose │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ │ │ │ └── index.wxss │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ │ ├── index.wxss │ │ │ │ │ │ │ ├── location-btn.svg │ │ │ │ │ │ │ └── location.svg │ │ │ │ │ │ ├── radio │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ │ └── index.wxss │ │ │ │ │ │ ├── select │ │ │ │ │ │ │ ├── allTimePicker │ │ │ │ │ │ │ │ ├── dataUtils.js │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ │ │ └── index.wxss │ │ │ │ │ │ │ ├── dropdown-select │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ │ │ └── index.wxss │ │ │ │ │ │ │ ├── formats-util.js │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ │ ├── index.wxss │ │ │ │ │ │ │ └── region │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── selectMultiple │ │ │ │ │ │ │ ├── dropdown-select │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ │ │ └── index.wxss │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ │ └── index.wxss │ │ │ │ │ │ ├── switch │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ │ └── index.wxss │ │ │ │ │ │ ├── textarea │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ │ └── index.wxss │ │ │ │ │ │ ├── tips │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ │ └── index.wxss │ │ │ │ │ │ ├── uploader │ │ │ │ │ │ │ ├── compress.js │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ │ ├── index.wxss │ │ │ │ │ │ │ ├── weui-uploader.js │ │ │ │ │ │ │ ├── weui-uploader.json │ │ │ │ │ │ │ ├── weui-uploader.wxml │ │ │ │ │ │ │ └── weui-uploader.wxss │ │ │ │ │ │ └── uploaderFile │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ │ └── index.wxss │ │ │ │ │ ├── formdetail │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ ├── index.wxss │ │ │ │ │ │ └── wd-form-detail.wxss │ │ │ │ │ ├── graphicCard │ │ │ │ │ │ ├── chevron-right.svg │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ └── index.wxss │ │ │ │ │ ├── grid │ │ │ │ │ │ ├── _util.wxss │ │ │ │ │ │ ├── col │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ │ └── index.wxml │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ ├── index.wxss │ │ │ │ │ │ └── row │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ │ └── index.wxml │ │ │ │ │ ├── image │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ └── index.wxss │ │ │ │ │ ├── listView │ │ │ │ │ │ ├── arrow-right-line.svg │ │ │ │ │ │ ├── emptyText.svg │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ ├── index.wxss │ │ │ │ │ │ └── more-line.svg │ │ │ │ │ ├── lottery │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ └── index.wxss │ │ │ │ │ ├── modal │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ └── index.wxss │ │ │ │ │ ├── navLayout │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ └── index.wxss │ │ │ │ │ ├── navigationBar │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ └── index.wxss │ │ │ │ │ ├── qrcode │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ └── index.wxss │ │ │ │ │ ├── richText │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ ├── index.wxss │ │ │ │ │ │ └── mp-html │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ │ ├── index.wxss │ │ │ │ │ │ │ ├── node │ │ │ │ │ │ │ ├── node.js │ │ │ │ │ │ │ ├── node.json │ │ │ │ │ │ │ ├── node.wxml │ │ │ │ │ │ │ └── node.wxss │ │ │ │ │ │ │ └── parser.js │ │ │ │ │ ├── scrollView │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── index.wxml │ │ │ │ │ ├── slot │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── index.wxml │ │ │ │ │ ├── status-content │ │ │ │ │ │ ├── arrow-right.svg │ │ │ │ │ │ ├── close.svg │ │ │ │ │ │ ├── error.svg │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ └── index.wxss │ │ │ │ │ ├── swiper │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── index.wxml │ │ │ │ │ ├── tabs │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ └── index.wxss │ │ │ │ │ ├── text │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ └── index.wxss │ │ │ │ │ ├── tooltip │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ ├── index.wxss │ │ │ │ │ │ └── wd-tooltip.wxss │ │ │ │ │ ├── wd-ad │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ └── index.wxss │ │ │ │ │ ├── wd-audio │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── index.wxml │ │ │ │ │ ├── wd-button │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ ├── index.wxss │ │ │ │ │ │ └── wd-button.wxss │ │ │ │ │ ├── wd-calendar │ │ │ │ │ │ ├── arrowright--line.svg │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ ├── index.wxss │ │ │ │ │ │ └── weeks.js │ │ │ │ │ ├── wd-canvas │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ └── index.wxss │ │ │ │ │ ├── wd-card │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ ├── index.wxss │ │ │ │ │ │ └── wd-card.wxss │ │ │ │ │ ├── wd-cascader │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ ├── index.wxss │ │ │ │ │ │ ├── utils.js │ │ │ │ │ │ └── wd-cascader.wxss │ │ │ │ │ ├── wd-checkbox-list │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ ├── index.wxss │ │ │ │ │ │ └── wd-checkbox-list.wxss │ │ │ │ │ ├── wd-date-range │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ ├── index.wxss │ │ │ │ │ │ └── wd-date-range.wxss │ │ │ │ │ ├── wd-date │ │ │ │ │ │ ├── calendar │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ │ └── index.wxml │ │ │ │ │ │ ├── date-picker │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ │ └── index.wxss │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ ├── index.wxss │ │ │ │ │ │ ├── modal │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ │ └── index.wxss │ │ │ │ │ │ ├── time-picker │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ │ └── index.wxss │ │ │ │ │ │ ├── wd-date.wxss │ │ │ │ │ │ └── year-month-picker │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ │ └── index.wxss │ │ │ │ │ ├── wd-divider │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ ├── index.wxss │ │ │ │ │ │ └── wd-divider.wxss │ │ │ │ │ ├── wd-form-arr │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ ├── index.wxss │ │ │ │ │ │ └── wd-form-obj.wxss │ │ │ │ │ ├── wd-form-item-obj │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ ├── index.wxss │ │ │ │ │ │ └── wd-form-item.wxss │ │ │ │ │ ├── wd-form-item-read-only │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── index.wxml │ │ │ │ │ ├── wd-form-item │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ ├── index.wxss │ │ │ │ │ │ └── wd-form-item.wxss │ │ │ │ │ ├── wd-form-obj │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ ├── index.wxss │ │ │ │ │ │ └── wd-form-obj.wxss │ │ │ │ │ ├── wd-form │ │ │ │ │ │ ├── form-utils.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ ├── index.wxss │ │ │ │ │ │ ├── remote-value.js │ │ │ │ │ │ └── wd-form.wxss │ │ │ │ │ ├── wd-icon │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ ├── index.wxss │ │ │ │ │ │ └── wd-icon.wxss │ │ │ │ │ ├── wd-image │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ ├── index.wxss │ │ │ │ │ │ └── wd-image.wxss │ │ │ │ │ ├── wd-input-email │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── index.wxml │ │ │ │ │ ├── wd-input-group │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ ├── index.wxss │ │ │ │ │ │ └── wd-input-group.wxss │ │ │ │ │ ├── wd-input-number │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ ├── index.wxss │ │ │ │ │ │ ├── number.js │ │ │ │ │ │ └── wd-input-number.wxss │ │ │ │ │ ├── wd-input-phone │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── index.wxml │ │ │ │ │ ├── wd-input-url │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── index.wxml │ │ │ │ │ ├── wd-input-wrap │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ ├── index.wxss │ │ │ │ │ │ └── wd-input-wrap.wxss │ │ │ │ │ ├── wd-input │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ └── inner-input │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ │ ├── index.wxss │ │ │ │ │ │ │ └── wd-input.wxss │ │ │ │ │ ├── wd-layout │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ ├── index.wxss │ │ │ │ │ │ └── wd-layout.wxss │ │ │ │ │ ├── wd-location │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── index.wxml │ │ │ │ │ ├── wd-markdown │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ ├── index.wxss │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ ├── highlight.min.js │ │ │ │ │ │ │ ├── hljs_css.min.js │ │ │ │ │ │ │ ├── hljs_javascript.min.js │ │ │ │ │ │ │ └── markdown-it.min.js │ │ │ │ │ ├── wd-menu-base-layout │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── index.wxml │ │ │ │ │ ├── wd-menu-horizontal-layout │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── index.wxml │ │ │ │ │ ├── wd-menu-layout │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ ├── index.wxss │ │ │ │ │ │ ├── utils │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ └── wd-menu-layout.wxss │ │ │ │ │ ├── wd-menu-list │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ ├── index.wxss │ │ │ │ │ │ └── wd-menu-list.wxss │ │ │ │ │ ├── wd-menu-nav-layout │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── index.wxml │ │ │ │ │ ├── wd-menu-nav-tab-layout │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── index.wxml │ │ │ │ │ ├── wd-menu-plant-layout │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── index.wxml │ │ │ │ │ ├── wd-menu-tab-layout │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── index.wxml │ │ │ │ │ ├── wd-menu-vertical-layout │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── index.wxml │ │ │ │ │ ├── wd-modal │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ ├── index.wxss │ │ │ │ │ │ └── wd-modal.wxss │ │ │ │ │ ├── wd-official-account │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ └── index.wxss │ │ │ │ │ ├── wd-progress │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ ├── index.wxss │ │ │ │ │ │ └── wd-progress.wxss │ │ │ │ │ ├── wd-radio-list │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ ├── index.wxss │ │ │ │ │ │ └── wd-radio-list.wxss │ │ │ │ │ ├── wd-rating │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ ├── index.wxss │ │ │ │ │ │ └── wd-rating.wxss │ │ │ │ │ ├── wd-region │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ └── index.wxss │ │ │ │ │ ├── wd-select-multiple │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── index.wxml │ │ │ │ │ ├── wd-select │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ └── select.wxss │ │ │ │ │ ├── wd-side-tab │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ └── index.wxss │ │ │ │ │ ├── wd-store-home │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── index.wxml │ │ │ │ │ ├── wd-store-product │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── index.wxml │ │ │ │ │ ├── wd-switch │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ ├── index.wxss │ │ │ │ │ │ └── wd-switch.wxss │ │ │ │ │ ├── wd-tabbar │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ ├── index.wxss │ │ │ │ │ │ └── wd-tabbar.wxss │ │ │ │ │ ├── wd-tabs │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ ├── index.wxss │ │ │ │ │ │ └── wd-tabs.wxss │ │ │ │ │ ├── wd-tag-select │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ ├── index.wxss │ │ │ │ │ │ └── wd-tag-select.wxss │ │ │ │ │ ├── wd-tag │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ ├── index.wxss │ │ │ │ │ │ ├── tag-behavior.js │ │ │ │ │ │ ├── tag-item │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ │ └── index.wxml │ │ │ │ │ │ └── wd-tag.wxss │ │ │ │ │ ├── wd-text │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ ├── index.wxss │ │ │ │ │ │ └── wd-text.wxss │ │ │ │ │ ├── wd-textarea │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ ├── index.wxss │ │ │ │ │ │ └── wd-textarea.wxss │ │ │ │ │ ├── wd-time │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ ├── index.wxss │ │ │ │ │ │ └── wd-time.wxss │ │ │ │ │ ├── wd-top-tab │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ └── index.wxss │ │ │ │ │ ├── wd-unified-link │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ ├── index.wxss │ │ │ │ │ │ └── wd-link.wxss │ │ │ │ │ ├── wd-upload-file │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── index.wxml │ │ │ │ │ ├── wd-upload-image │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── index.wxml │ │ │ │ │ ├── web-view │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ └── index.wxss │ │ │ │ │ ├── wedaVideo │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ └── index.wxss │ │ │ │ │ └── wxOpenApi │ │ │ │ │ │ ├── phone │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ └── index.wxss │ │ │ │ │ │ ├── phoneCode │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ └── index.wxss │ │ │ │ │ │ ├── share │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ └── index.wxss │ │ │ │ │ │ └── userInfo │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── index.wxml │ │ │ │ │ │ └── index.wxss │ │ │ │ │ ├── index.json │ │ │ │ │ ├── package.json │ │ │ │ │ ├── style │ │ │ │ │ ├── utils.wxss │ │ │ │ │ ├── wd-design.wxss │ │ │ │ │ ├── wd-font-icon.wxss │ │ │ │ │ ├── weda-ui.wxss │ │ │ │ │ └── wedatea2td.wxss │ │ │ │ │ └── utils │ │ │ │ │ ├── classnames.js │ │ │ │ │ ├── color.js │ │ │ │ │ ├── common-behavior.js │ │ │ │ │ ├── constant.js │ │ │ │ │ ├── date.js │ │ │ │ │ ├── dayjs.min.js │ │ │ │ │ ├── debounce.js │ │ │ │ │ ├── deepEqual.js │ │ │ │ │ ├── destr.js │ │ │ │ │ ├── dr_square_point.js │ │ │ │ │ ├── enum.js │ │ │ │ │ ├── error.js │ │ │ │ │ ├── getCustomInfo.js │ │ │ │ │ ├── getFormLegacy.js │ │ │ │ │ ├── getModelParams.js │ │ │ │ │ ├── getWedaApi.js │ │ │ │ │ ├── handleEvents.js │ │ │ │ │ ├── lodash.js │ │ │ │ │ ├── platform.js │ │ │ │ │ ├── qqmap-wx-jssdk1.2 │ │ │ │ │ └── qqmap-wx-jssdk.js │ │ │ │ │ ├── qrcode │ │ │ │ │ └── weapp.qrcode.min.js │ │ │ │ │ ├── range.js │ │ │ │ │ ├── tcb.js │ │ │ │ │ ├── tool.js │ │ │ │ │ └── widget-api.js │ │ │ ├── @isaacs │ │ │ │ └── ttlcache │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.js.map │ │ │ ├── @mattiasbuelens │ │ │ │ └── web-streams-adapter │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.js.map │ │ │ ├── dayjs │ │ │ │ ├── index.js │ │ │ │ └── index.js.map │ │ │ ├── jwt-decode │ │ │ │ ├── index.js │ │ │ │ └── index.js.map │ │ │ ├── lodash.get │ │ │ │ ├── index.js │ │ │ │ └── index.js.map │ │ │ ├── lodash.set │ │ │ │ ├── index.js │ │ │ │ └── index.js.map │ │ │ ├── miniprogram-api-promise │ │ │ │ ├── index.js │ │ │ │ └── index.js.map │ │ │ ├── miniprogram-gesture │ │ │ │ ├── gesture.js │ │ │ │ ├── gesture.json │ │ │ │ ├── gesture.wxml │ │ │ │ └── gesture.wxs │ │ │ ├── mobx │ │ │ │ ├── index.js │ │ │ │ └── index.js.map │ │ │ ├── text-encoding-shim │ │ │ │ ├── index.js │ │ │ │ └── index.js.map │ │ │ └── web-streams-polyfill │ │ │ │ ├── index.js │ │ │ │ └── index.js.map │ │ ├── package-lock.json │ │ └── package.json │ ├── nav-bar │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ └── trd-privacy │ │ ├── privacy.js │ │ ├── privacy.json │ │ ├── privacy.wxml │ │ └── privacy.wxss ├── images │ ├── cart.png │ ├── code-cloud-callback-config.png │ ├── default.png │ ├── icon_foot.png │ ├── selected.png │ ├── tencentcloud.png │ ├── user-unlogin.png │ ├── 工具- focus@2x.png │ ├── 工具-nor@2x.png │ ├── 案例- focus@2x.png │ ├── 案例-nor@2x.png │ ├── 首页- focus@2x.png │ └── 首页-nor@2x.png ├── libs │ ├── runtime-module.js │ └── runtime.js ├── pages │ ├── ai │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ ├── case │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ ├── common │ │ ├── foot.wxml │ │ └── head.wxml │ ├── customer-msg │ │ ├── README.md │ │ ├── chooseLib │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── index │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── messageList │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ └── style │ │ │ └── guide.wxss │ ├── deepseek │ │ ├── index.css │ │ ├── index.js │ │ ├── index.json │ │ └── index.wxml │ ├── home │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ ├── index │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxss │ │ └── user-unlogin.png │ ├── jumpto-webpage │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ ├── official-account │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ ├── pay-list │ │ ├── config.js │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ ├── pay-order │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ └── index.wxss │ ├── pay-result │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ └── index.wxss │ ├── reserve-detail │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ └── index.wxss │ ├── reserve │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ └── index.wxss │ ├── technology-group │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ ├── toolbox │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ ├── user │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ └── index.wxss │ ├── weda-appmarket │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ └── wxaqrcode │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss ├── sitemap.json ├── sitemap73.json └── style │ ├── navigate.wxss │ └── weui.wxss ├── cloud ├── database │ └── goods.json ├── functions │ ├── customerMessage │ │ ├── bots │ │ │ └── tbp.js │ │ ├── config.json │ │ ├── index.js │ │ └── package.json │ ├── getMessageList │ │ ├── config │ │ │ └── example.js │ │ ├── index.js │ │ └── package.json │ ├── pay-message │ │ ├── config │ │ │ └── example.js │ │ ├── index.js │ │ ├── package.json │ │ └── sendMessage.js │ ├── pay-result │ │ ├── index.js │ │ └── package.json │ ├── pay-v2 │ │ ├── config.json │ │ ├── config │ │ │ └── example.js │ │ ├── index.js │ │ ├── package-lock.json │ │ └── package.json │ ├── pay │ │ ├── config │ │ │ └── example.js │ │ ├── index.js │ │ └── package.json │ ├── refund-result │ │ ├── index.js │ │ └── package.json │ ├── send-message │ │ ├── config │ │ │ └── example.js │ │ ├── index.js │ │ ├── lib │ │ │ ├── send-template-message.js │ │ │ └── send-uniform-message.js │ │ └── package.json │ ├── user-login-register │ │ ├── WXBizDataCrypt.js │ │ ├── index.js │ │ ├── package-lock.json │ │ └── package.json │ ├── user-session │ │ ├── config │ │ │ └── example.js │ │ ├── index.js │ │ ├── package-lock.json │ │ └── package.json │ └── wxaqrcode │ │ ├── config │ │ └── example.js │ │ ├── index.js │ │ └── package.json └── storage │ ├── 1.jpg │ ├── 2.png │ ├── 3.jpg │ ├── 4.jpg │ └── 5.jpg ├── package-lock.json ├── package.json ├── project.config.json ├── project.private.config.json └── yarn.lock /.cloudbase/container/debug.json: -------------------------------------------------------------------------------- 1 | {"containers":[],"config":{}} -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | /client/libs/ 2 | /node_modules -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | **/node_modules 2 | cloud/functions/**/config/index.js 3 | .DS_Store 4 | apiclient_cert.p12 -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "rdhelper.cas.status": "open", 3 | "rdhelper.cas.lastupdatefile": "cloud/functions/pay-v2/index.js" 4 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 小程序·云开发系列教程源码 2 | 3 | ## 注意事项 4 | - 教程在:[小程序·云开发系列教程](https://github.com/TencentCloudBase/mp-book) 5 | - 打开的时候记得填写 `project.config.json` 中的 `appid` 字段,其它功能的试用,请参考教程里的[小程序基础场景及开发教学](https://github.com/TencentCloudBase/mp-book/blob/master/basic-tutorial/%E5%B0%8F%E7%A8%8B%E5%BA%8F%E5%9F%BA%E7%A1%80%E5%9C%BA%E6%99%AF%E5%8F%8A%E5%BC%80%E5%8F%91%E6%95%99%E5%AD%A6.md) 进行配置试用。 6 | 7 | ## 图片预览 8 | 9 |

10 | 11 |

12 | 13 | ## 体验 14 | 15 |

16 | 17 |

18 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/dist/cloudbase/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {"a":"@cloudbase/weda-ui-mp/components/container/index","b":"@cloudbase/weda-ui-mp/components/wd-menu-layout/index","c":"@cloudbase/weda-ui-mp/components/wd-image/index","d":"@cloudbase/weda-ui-mp/components/wd-text/index","e":"@cloudbase/weda-ui-mp/components/scrollView/index","f":"@cloudbase/weda-ui-mp/components/wd-card/index","g":"@cloudbase/weda-ui-mp/components/wd-icon/index","h":"@cloudbase/weda-ui-mp/components/wd-markdown/index","i":"@cloudbase/weda-ui-mp/components/wd-unified-link/index","j":"@cloudbase/weda-ui-mp/components/wd-textarea/index","k":"@cloudbase/weda-ui-mp/components/wd-modal/index","l":"@cloudbase/weda-ui-mp/components/wd-rating/index","m":"@cloudbase/weda-ui-mp/components/wd-tag-select/index","n":"@cloudbase/weda-ui-mp/components/wd-button/index"} 4 | } 5 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/dist/cloudbase/lowcode/computed.js: -------------------------------------------------------------------------------- 1 | import { getWedaAPI } from '@cloudbase/weda-client'; 2 | const app = new Proxy({}, { get: function(obj, prop){ return getWedaAPI()?.app?.[prop] }}); 3 | const $app = new Proxy({}, { get: function(obj, prop){ return app[prop] }}); 4 | const $w = new Proxy({}, { get: function(obj, prop){ return getWedaAPI()?.$w?.[prop] }}); 5 | 6 | /* 7 | * 可通过 this.$WEAPPS_COMP.computed.xxx 访问这里定义的计算状态 8 | * 9 | */ 10 | 11 | export default { 12 | name() { return 'LowCode' } 13 | } -------------------------------------------------------------------------------- /client/components/agent-deepseek/dist/cloudbase/lowcode/lifecycle.js: -------------------------------------------------------------------------------- 1 | import { getWedaAPI } from '@cloudbase/weda-client'; 2 | const app = new Proxy({}, { get: function(obj, prop){ return getWedaAPI()?.app?.[prop] }}); 3 | const $app = new Proxy({}, { get: function(obj, prop){ return app[prop] }}); 4 | const $w = new Proxy({}, { get: function(obj, prop){ return getWedaAPI()?.$w?.[prop] }}); 5 | export default { 6 | onAttached() { 7 | //console.log('---------> LifeCycle onAttached') 8 | }, 9 | onDetached() { 10 | //console.log('---------> LifeCycle onDetached') 11 | }, 12 | } -------------------------------------------------------------------------------- /client/components/agent-deepseek/dist/cloudbase/lowcode/state.js: -------------------------------------------------------------------------------- 1 | import { getWedaAPI } from '@cloudbase/weda-client'; 2 | const app = new Proxy({}, { get: function(obj, prop){ return getWedaAPI()?.app?.[prop] }}); 3 | const $app = new Proxy({}, { get: function(obj, prop){ return app[prop] }}); 4 | const $w = new Proxy({}, { get: function(obj, prop){ return getWedaAPI()?.$w?.[prop] }}); 5 | /* 6 | * 可通过 this.$WEAPPS_COMP.state.xxx 访问这里定义的状态 7 | * 8 | * 修改状态时,直接赋值即可。如:this.$WEAPPS_COMP.state.xxx = 'xxx' 9 | * 请注意:避免在页面处于后台状态时state,页面在后台时对全局state的修改会丢失! 10 | */ 11 | 12 | 13 | 14 | export default function() { 15 | return { 16 | name: 'LowCode' 17 | } 18 | } 19 | 20 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/dist/common/cloud-sdk.js: -------------------------------------------------------------------------------- 1 | import { _WEDA_CLOUD_SDK as WEDA_CLOUD_SDK } from '@cloudbase/weda-client' 2 | const { 3 | setConfig, 4 | initTcb, 5 | CLOUD_SDK, 6 | createDataset, 7 | getDatasetProfiles, 8 | setDatasetProfiles, 9 | createStateDataSourceVar, 10 | generateParamsParser, 11 | EXTRA_API, 12 | DS_SDK, 13 | setLocalDatasetState 14 | } = WEDA_CLOUD_SDK 15 | 16 | export { 17 | setConfig, 18 | initTcb, 19 | createDataset, 20 | getDatasetProfiles, 21 | setDatasetProfiles, 22 | createStateDataSourceVar, 23 | generateParamsParser, 24 | EXTRA_API, 25 | CLOUD_SDK, 26 | DS_SDK, 27 | setLocalDatasetState 28 | } 29 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/dist/common/info/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /client/components/agent-deepseek/index.js: -------------------------------------------------------------------------------- 1 | import * as clientSDK from '@cloudbase/weda-client'; 2 | 3 | clientSDK.init({ 4 | envID: 'tcb-advanced-a656fc', // 云开发环境Id 5 | appConfig: { 6 | staticResourceDomain: 'tcb-advanced-a656fc-1257967285.tcloudbaseapp.com', // 云开发环境下静态托管域名,用于使用素材资源 7 | } 8 | }) -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/types/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":["index.js"],"names":[],"mappings":";;;;;;;AAAA;AACA","file":"index.js","sourcesContent":["// 兼容微信小程序npm构建方式,勿删\n"]} -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/common/auth.d.ts: -------------------------------------------------------------------------------- 1 | import { IOrg } from '../types/auth'; 2 | export declare function getOrg(wedaUser: any): { 3 | mainOrg: IOrg; 4 | orgs: any; 5 | }; 6 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/common/auth.js: -------------------------------------------------------------------------------- 1 | function formateOrg(data) { 2 | let org; 3 | if (data) { 4 | org = { 5 | id: data.OrgId || data.orgId, 6 | name: data.OrgName || data.orgName, 7 | }; 8 | } 9 | return org; 10 | } 11 | export function getOrg(wedaUser) { 12 | try { 13 | const mainOrg = formateOrg(wedaUser?.mainOrg); 14 | const orgs = (wedaUser?.orgs || []).map((item) => formateOrg(item)); 15 | return { 16 | mainOrg, 17 | orgs, 18 | }; 19 | } 20 | catch (err) { 21 | console.log('获取部门出错, err:', err); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/common/date.d.ts: -------------------------------------------------------------------------------- 1 | export declare const formatDate: any; 2 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/common/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './constants'; 2 | export * from './utils'; 3 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/common/index.js: -------------------------------------------------------------------------------- 1 | export * from './constants'; 2 | export * from './utils'; 3 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/common/models/fieldsService.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * @description 查询通用选项集列表 文档:https://tcloud4api.woa.com/document/product/1505/61735?!preview&!document=1 3 | * @private _前缀的都是内部方法,有可能调整,不推荐外部用户使用 4 | * @returns 5 | */ 6 | export declare function getGeneralOptions(optionName: string): Promise; 7 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/common/models/fieldsService.js: -------------------------------------------------------------------------------- 1 | import { callWedaApiFn } from './request'; 2 | /** 3 | * @description 查询通用选项集列表 文档:https://tcloud4api.woa.com/document/product/1505/61735?!preview&!document=1 4 | * @private _前缀的都是内部方法,有可能调整,不推荐外部用户使用 5 | * @returns 6 | */ 7 | export async function getGeneralOptions(optionName) { 8 | return callWedaApiFn('DescribeGeneralOptionsDetailList', { 9 | OptNameList: [optionName], 10 | PageIndex: 1, 11 | PageSize: 1, 12 | }); 13 | } 14 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/common/models/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './request'; 2 | export { getGeneralOptions } from './fieldsService'; 3 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/common/models/index.js: -------------------------------------------------------------------------------- 1 | export * from './request'; 2 | export { getGeneralOptions } from './fieldsService'; 3 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/common/models/request.d.ts: -------------------------------------------------------------------------------- 1 | export declare function callWedaApiFn(action: string, data?: Record): Promise; 2 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/common/models/request.js: -------------------------------------------------------------------------------- 1 | import { CLOUD_SDK } from '@cloudbase/weda-cloud-sdk'; 2 | const { callWedaApi } = CLOUD_SDK; 3 | export async function callWedaApiFn(action, data = {}) { 4 | return (await callWedaApi({ action, data })) || {}; 5 | } 6 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/common/tcb.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * 初始化tcb,并挂载到_WedaHostConfig 3 | */ 4 | import { IInitCloudSDKParams } from '../types'; 5 | /** 6 | * 初始化工作台 7 | * @param params 8 | */ 9 | export declare function initTcb({ isProd, envId: envID, appId: appID, tcbClientId, endpointType, dataSourceProfiles, datasetProfiles, ...rest }: IInitCloudSDKParams): Promise<{ 10 | app: any; 11 | auth: any; 12 | }>; 13 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/common/tcb.js: -------------------------------------------------------------------------------- 1 | /** 2 | * 初始化tcb,并挂载到_WedaHostConfig 3 | */ 4 | import { setConfig, initTcb as _initTcb } from '@cloudbase/weda-cloud-sdk'; 5 | /** 6 | * 初始化工作台 7 | * @param params 8 | */ 9 | export async function initTcb({ isProd = true, envId: envID, appId: appID = 'app-fakewdid', tcbClientId = '', endpointType, dataSourceProfiles = [], datasetProfiles = {}, ...rest }) { 10 | setConfig({ 11 | ...(endpointType ? { endpointType } : {}), 12 | isProd, 13 | envID, 14 | appID, 15 | tcbClientId, 16 | dataSourceProfiles, 17 | datasetProfiles, 18 | ...rest, 19 | }); 20 | const res = await _initTcb(); 21 | return res; 22 | } 23 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/common/types/auth.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/common/types/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './auth'; 2 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/common/types/index.js: -------------------------------------------------------------------------------- 1 | export * from './auth'; 2 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './mp/index'; 2 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/index.js: -------------------------------------------------------------------------------- 1 | export * from './mp/index'; 2 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/mp/actions.d.ts: -------------------------------------------------------------------------------- 1 | import { IActionsAPI } from '../types/common'; 2 | /** 3 | * 小程序下的scanCode包裹了原生的wx.scanCode 4 | * @param options 5 | * @returns 6 | */ 7 | export declare const scanCode: (options: any) => any; 8 | export declare function createMpActionsAPI(options: any, api?: any): IActionsAPI; 9 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/mp/app/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './tcb'; 2 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/mp/app/index.js: -------------------------------------------------------------------------------- 1 | export * from './tcb'; 2 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/mp/app/tcb.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * 初始化tcb,并挂载到_WedaHostConfig 3 | */ 4 | import { IMpInitCloudSDKParams } from '../../types'; 5 | /** 6 | * 初始化工作台 7 | * @param params 8 | */ 9 | export declare function init({ isAdminPortal, ...params }: IMpInitCloudSDKParams): Promise<{ 10 | app: any; 11 | auth: any; 12 | }>; 13 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/mp/auth/uitl.d.ts: -------------------------------------------------------------------------------- 1 | export declare function checkAnonymous(): Promise; 2 | export declare function findLoginPage(): any; 3 | export declare function getAccessPermission(appId: any, packageName: string, pageId: any, isAdminPortal?: boolean): Promise; 4 | export declare function cleanAccessPermissionCache(): void; 5 | export declare function redirectToLogin(currentPage?: any, extraUrlParams?: {}): Promise; 6 | export declare function getAuthConfig(isAdminPortal?: boolean): Promise; 7 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/mp/behaviors.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export declare const commonCompBehavior: wx.Behavior<{}, { 3 | id: { 4 | type: StringConstructor; 5 | }; 6 | }, { 7 | /** 8 | * 获取当前组件的 widget 实例 9 | */ 10 | _getWidgetInstance(): any; 11 | mountReadonlyAttributes(callback: any): void; 12 | setReadonlyAttributes(obj?: {}): void; 13 | }>; 14 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/mp/env/index.d.ts: -------------------------------------------------------------------------------- 1 | import { IEnv } from '../../types/common'; 2 | /** 3 | * @description 环境信息 4 | */ 5 | export declare const env: IEnv; 6 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/mp/env/index.js: -------------------------------------------------------------------------------- 1 | import { getConfig } from '@cloudbase/weda-cloud-sdk'; 2 | import { ENV_TYPE } from '../../common/constants'; 3 | /** 4 | * @description 环境信息 5 | */ 6 | export const env = { 7 | get envId() { 8 | return getConfig('envID'); 9 | }, 10 | get type() { 11 | return getConfig('isProd') ? ENV_TYPE.production : ENV_TYPE.preview; 12 | }, 13 | }; 14 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/mp/models/index.d.ts: -------------------------------------------------------------------------------- 1 | export { getGeneralOptions } from '../../common/models/index'; 2 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/mp/models/index.js: -------------------------------------------------------------------------------- 1 | export { getGeneralOptions } from '../../common/models/index'; 2 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/mp/runtime/data-patch.d.ts: -------------------------------------------------------------------------------- 1 | export declare function getDatapatch(base: any, pendingData: any): {}; 2 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/mp/runtime/flow.d.ts: -------------------------------------------------------------------------------- 1 | export declare class EventFlow { 2 | #private; 3 | id: string; 4 | description?: string; 5 | constructor({ schema, context, options }: { 6 | schema: any; 7 | context: any; 8 | options: any; 9 | }); 10 | trigger(additionalScope: any, options?: {}): any; 11 | } 12 | export declare function generateEventFlows(flows: any[], context: any, options?: any): {}; 13 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/mp/runtime/merge-renderer.d.ts: -------------------------------------------------------------------------------- 1 | declare const _default: { 2 | initMergeRenderer(widgets: any, dataFactory?: {}): any[]; 3 | pendingData: any; 4 | _settingData: boolean; 5 | _flushId: any; 6 | flushPendingData(): void; 7 | requestRender(data: any): void; 8 | }; 9 | export default _default; 10 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/mp/runtime/placeholder/index.js: -------------------------------------------------------------------------------- 1 | Component({}) 2 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/mp/runtime/placeholder/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/mp/runtime/placeholder/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/mp/runtime/placeholder/index.wxss: -------------------------------------------------------------------------------- 1 | /* common/placeholder/index.wxss */ -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/mp/runtime/style.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Convert HtmlElement.style object to css declarations 3 | */ 4 | export declare function styleToCss(style: any): string; 5 | export declare function concatClassList(classList1?: any[], classList2?: any[]): any[]; 6 | export declare function px2rpx(object: any): any; 7 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/mp/runtime/watch.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * 3 | * @param {*} param 4 | * @returns Dipsonsers 5 | */ 6 | export declare function runWatchers({ watchEffects, watch, watchState, watchWidget }: { 7 | watchEffects?: {}; 8 | watch?: {}; 9 | watchState?: {}; 10 | watchWidget?: {}; 11 | }, mpInst: any): any[]; 12 | export declare function watchAndSyncDatasetState2Local(appId: any, datasetProfileKey: any, dataset: any): any[]; 13 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/mp/runtime/weapp-component.d.ts: -------------------------------------------------------------------------------- 1 | export declare function createComponent({ key, behaviors, properties, events, handler, dataBinds, evtListeners, widgetProps, lifeCycle, stateFn, computedFuncs, config, query: datasetQuery, eventFlows, datasetProfile, nativeMode, }: { 2 | key: any; 3 | behaviors: any; 4 | properties?: {}; 5 | events: any; 6 | handler: any; 7 | dataBinds?: {}; 8 | evtListeners: any; 9 | widgetProps: any; 10 | lifeCycle: any; 11 | stateFn: any; 12 | computedFuncs: any; 13 | config: any; 14 | query?: {}; 15 | eventFlows?: any[]; 16 | datasetProfile?: any; 17 | nativeMode?: boolean; 18 | }): string; 19 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/types/auth.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/types/cals.js: -------------------------------------------------------------------------------- 1 | var ItemType; 2 | (function (ItemType) { 3 | ItemType["PAGE"] = "PAGE"; 4 | })(ItemType || (ItemType = {})); 5 | export {}; 6 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/types/common.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable @typescript-eslint/no-namespace */ 2 | import { ACTIONS_KEY, ROUTER_KEY } from '../common/constants'; 3 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/types/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './mp'; 2 | export * from './web'; 3 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/types/index.js: -------------------------------------------------------------------------------- 1 | export * from './mp'; 2 | export * from './web'; 3 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/types/mp/app.d.ts: -------------------------------------------------------------------------------- 1 | import { IInitCloudSDKParams } from '../common'; 2 | /** 3 | * 小程序app.init入参 4 | */ 5 | export interface IMpInitCloudSDKParams extends IInitCloudSDKParams { 6 | isAdminPortal?: boolean; 7 | } 8 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/types/mp/app.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/types/mp/auth.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/types/mp/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './app'; 2 | export * from './auth'; 3 | export * from '../common'; 4 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/types/mp/index.js: -------------------------------------------------------------------------------- 1 | export * from './app'; 2 | export * from './auth'; 3 | export * from '../common'; 4 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/types/web/app.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * web app.init初始化参数 3 | */ 4 | export interface IWebInitParams { 5 | /** 6 | * 环境id 7 | */ 8 | envId: string; 9 | /** 10 | * 是否是正式环境 11 | */ 12 | isProd: boolean; 13 | /** 14 | * portal:企业工作台 15 | */ 16 | type: string; 17 | /** 18 | * 登录后的回调函数,调用auth.signIn后的执行回调函数,例如可跳转到登录页 19 | */ 20 | login?: () => void; 21 | } 22 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/types/web/app.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/types/web/auth.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/types/web/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './app'; 2 | export * from './auth'; 3 | export * from '../common'; 4 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/types/web/index.js: -------------------------------------------------------------------------------- 1 | export * from './app'; 2 | export * from './auth'; 3 | export * from '../common'; 4 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-client/vender.d.ts: -------------------------------------------------------------------------------- 1 | import dayjs from 'dayjs'; 2 | import Decimal from 'decimal.js'; 3 | export { dayjs, Decimal }; 4 | export { get, set, isNull, eq, toUpper, toLower, isObject, isPlainObject, split } from 'lodash-es'; 5 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-cloud-sdk/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/README.md: -------------------------------------------------------------------------------- 1 | # mp 2 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/actions/showMessage/index.js: -------------------------------------------------------------------------------- 1 | export default function showMessage(props) { 2 | wx.showToast(props.data); 3 | } 4 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/actions/showModal/index.js: -------------------------------------------------------------------------------- 1 | export default function showModal(params) { 2 | return wx.showModal(params); 3 | } 4 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/actions/showToast/index.js: -------------------------------------------------------------------------------- 1 | export default function showToast(props) { 2 | wx.showToast(props.data); 3 | } 4 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloudBase/tcb-demo-basic/ac149fd71039b299d739b85a29bb5c51f032f850/client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/app.js -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/button/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared" 4 | } 5 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/button/index.wxml: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/button/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../style/weda-ui.wxss'; 2 | 3 | .weui-btn.weui-btn_primary:not(.weui-btn_disabled):active { 4 | background-color: var(--weui-TAG-TEXT-BLUE); 5 | } 6 | .weda-ui.weui-btn.weui-btn_large { 7 | font-size: large; 8 | display: block; 9 | padding-left: 7px; 10 | padding-right: 7px; 11 | text-align: center; 12 | width: 100%; 13 | } 14 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/calendar/arrowright--line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/calendar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "styleIsolation": "shared" 5 | } 6 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/carousel/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "img": "../image" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/carousel/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/chart/bar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "ec-canvas": "../ec-canvas/ec-canvas" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/chart/bar/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/chart/bar/index.wxss: -------------------------------------------------------------------------------- 1 | /**index.wxss**/ 2 | ec-canvas { 3 | width: 100%; 4 | height: 100%; 5 | } 6 | .ec_container { 7 | width: 100%; 8 | height: 380px; 9 | } 10 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/chart/common/config/global.js: -------------------------------------------------------------------------------- 1 | /** 根据当前环境获取 pc 上配置,还是 H5上的配置 */ 2 | const getConfig = () => { 3 | const globalH5 = { 4 | title: { 5 | text: 'demo实例', 6 | show: true, 7 | left: '45%', 8 | }, 9 | legend: { 10 | top: '83%', 11 | }, 12 | tooltip: {}, 13 | }; 14 | return globalH5; 15 | }; 16 | export default getConfig; 17 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/chart/ec-canvas/ec-canvas.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } 5 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/chart/ec-canvas/ec-canvas.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/chart/ec-canvas/ec-canvas.wxss: -------------------------------------------------------------------------------- 1 | .ec-canvas { 2 | width: 100%; 3 | height: 100%; 4 | } 5 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/chart/line/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "ec-canvas": "../ec-canvas/ec-canvas" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/chart/line/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/chart/line/index.wxss: -------------------------------------------------------------------------------- 1 | /**index.wxss**/ 2 | ec-canvas { 3 | width: 100%; 4 | height: 100%; 5 | } 6 | .ec_container { 7 | width: 100%; 8 | height: 380px; 9 | } 10 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/chart/pie/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "ec-canvas": "../ec-canvas/ec-canvas" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/chart/pie/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/chart/pie/index.wxss: -------------------------------------------------------------------------------- 1 | /**index.wxss**/ 2 | ec-canvas { 3 | width: 100%; 4 | height: 100%; 5 | } 6 | .ec_container { 7 | width: 100%; 8 | height: 380px; 9 | } 10 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/chart/statisticsCard/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared" 4 | } 5 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/chart/statisticsCard/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{label}} 4 | 5 | {{count}} 6 | {{suffix}} 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/common/form-item-wrapper/index.js: -------------------------------------------------------------------------------- 1 | Component({ 2 | options: { 3 | virtualHost: true, 4 | multipleSlots: true, 5 | }, 6 | /** 7 | * 组件的属性列表 8 | */ 9 | properties: {}, 10 | 11 | /** 12 | * 组件的初始数据 13 | */ 14 | data: {}, 15 | 16 | /** 17 | * 组件的方法列表 18 | */ 19 | methods: {}, 20 | }); 21 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/common/form-item-wrapper/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": {} 5 | } 6 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/common/form-item-wrapper/index.wxml: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/container/index.js: -------------------------------------------------------------------------------- 1 | import { commonCompBehavior } from '../../utils/common-behavior'; 2 | 3 | Component({ 4 | behaviors: [commonCompBehavior], 5 | options: { 6 | virtualHost: true, 7 | }, 8 | properties: { 9 | id: { 10 | type: String, 11 | value: '', 12 | }, 13 | className: { 14 | type: String, 15 | value: '', 16 | }, 17 | style: { 18 | type: String, 19 | value: '', 20 | }, 21 | data: { 22 | type: Object, 23 | value: {}, 24 | }, 25 | }, 26 | methods: {}, 27 | observers: { 28 | data: function (data) { 29 | this.setReadonlyAttributes?.({ data }); 30 | }, 31 | }, 32 | }); 33 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/container/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared" 4 | } 5 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/container/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/customer-service/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": {} 5 | } 6 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/customer-service/index.wxml: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/customer-service/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../style/wd-design.wxss'; 2 | 3 | /* 去除按钮的默认细边框 */ 4 | .wd-customer-service-container::after { 5 | border: none; 6 | background: none !important; 7 | } 8 | 9 | .wd-customer-service-container { 10 | background: transparent; 11 | } 12 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/dataView/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "list-view": "../listView" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form-checkbox/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "old-checkbox": "../form/checkbox", 6 | "form-item-wrapper": "../common/form-item-wrapper", 7 | "tips": "../form/tips" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form-checkbox/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form-date/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "tips": "../form/tips", 6 | "form-item-wrapper": "../common/form-item-wrapper", 7 | "old-select": "../form/select" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form-email/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "old-input": "../form/input", 6 | "form-item-wrapper": "../common/form-item-wrapper", 7 | "tips": "../form/tips" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form-image-uploader/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "old-image-uploader": "../form/uploader", 6 | "form-item-wrapper": "../common/form-item-wrapper", 7 | "tips": "../form/tips" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form-input/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "old-input": "../form/input", 6 | "form-item-wrapper": "../common/form-item-wrapper", 7 | "tips": "../form/tips" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form-location/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "old-location": "../form/location", 6 | "form-item-wrapper": "../common/form-item-wrapper", 7 | "tips": "../form/tips" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form-multi-region/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "tips": "../form/tips", 6 | "form-item-wrapper": "../common/form-item-wrapper", 7 | "old-select": "../form/select" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form-multi-region/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form-phone/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "old-input": "../form/input", 6 | "form-item-wrapper": "../common/form-item-wrapper", 7 | "tips": "../form/tips" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form-radio/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "old-radio": "../form/radio", 6 | "form-item-wrapper": "../common/form-item-wrapper", 7 | "tips": "../form/tips" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form-radio/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form-region/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "tips": "../form/tips", 6 | "form-item-wrapper": "../common/form-item-wrapper", 7 | "old-select": "../form/select" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form-region/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form-select-multiple/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "old-select-multiple": "../form/selectMultiple", 6 | "form-item-wrapper": "../common/form-item-wrapper", 7 | "tips": "../form/tips" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form-select/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "old-select": "../form/select", 6 | "form-item-wrapper": "../common/form-item-wrapper", 7 | "tips": "../form/tips" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form-switch/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "old-switch": "../form/switch", 6 | "form-item-wrapper": "../common/form-item-wrapper", 7 | "tips": "../form/tips" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form-switch/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form-text-area/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "old-textarea": "../form/textarea", 6 | "form-item-wrapper": "../common/form-item-wrapper", 7 | "tips": "../form/tips" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form-time/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "tips": "../form/tips", 6 | "form-item-wrapper": "../common/form-item-wrapper", 7 | "old-select": "../form/select" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form-time/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form-upload-file/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "tips": "../form/tips", 6 | "form-item-wrapper": "../common/form-item-wrapper", 7 | "old-file-uploader": "../form/uploaderFile" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form-url/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "old-input": "../form/input", 6 | "form-item-wrapper": "../common/form-item-wrapper", 7 | "tips": "../form/tips" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form/checkbox/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "formcell": "../formcell" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form/checkbox/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form/checkbox/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../style/weda-ui.wxss'; 2 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form/form/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared" 4 | } 5 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form/form/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form/form/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../style/weda-ui.wxss'; 2 | @import '../../../style/wd-design.wxss'; 3 | @import './wd-form.wxss'; 4 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form/formcell/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared" 4 | } 5 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form/formcell/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form/formcell/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../style/weda-ui.wxss'; 2 | 3 | .weda-formcells__flag { 4 | display: inline-block; 5 | margin-left: 4px; 6 | font-family: SimSun; 7 | font-size: 12px; 8 | color: #f60; 9 | align-self: flex-start; 10 | } 11 | 12 | .weda-formcells.weui-flex .weda-formcells__label { 13 | width: 130px; 14 | padding-bottom: 16px; 15 | } 16 | 17 | .weui-cells__group_form .weui-cell { 18 | padding: 16px 16px; 19 | } 20 | 21 | .weda-formcells .weda-formcells__label { 22 | padding-bottom: 8px; 23 | } 24 | 25 | .weda-formcells__content.weui-flex__item .weui-cell_form { 26 | padding: 0; 27 | } 28 | 29 | .weda-formcells__content.weui-flex__item .weui-cell_form { 30 | padding-right: 16px; 31 | } 32 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form/input/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "formcell": "../formcell" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form/input/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../style/weda-ui.wxss'; 2 | 3 | /* 4 | 把weui-cell 的padding还回到input 5 | */ 6 | .weda-ui .weui-input { 7 | padding: 14px 0; 8 | } 9 | 10 | .weui-btn_input-clear { 11 | align-self: center; 12 | } 13 | .weda-ui.weda-input .weui-cell_form { 14 | padding: 0 16px; 15 | } 16 | .weda-ui.weda-input .weui-flex__item .weui-cell_form { 17 | padding: 0; 18 | padding-right: 16px; 19 | } 20 | /** 21 | * END 22 | */ 23 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form/location/components/mapChoose/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } 5 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form/location/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "mapChoose": "./components/mapChoose/index", 6 | "formcell": "../formcell", 7 | "wd-text": "../../wd-text/index", 8 | "wd-button": "../../wd-button/index" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form/radio/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "formcell": "../formcell/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form/radio/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form/radio/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../style/weda-ui.wxss'; 2 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form/select/allTimePicker/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "calendar": "../../../calendar" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form/select/dropdown-select/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "isolated" 4 | } 5 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form/select/formats-util.js: -------------------------------------------------------------------------------- 1 | const SINGLE_FOREIGN_FORMATS = [ 2 | 'father-son', 3 | 'related', 4 | 'many-one', 5 | 'one-one', 6 | 'one-one-r', 7 | ]; 8 | /** do NOT export this array */ 9 | const formatNeedDataFetch = [...SINGLE_FOREIGN_FORMATS, 'x-enum']; 10 | export function isSingleForeignFormat(format) { 11 | return SINGLE_FOREIGN_FORMATS.includes(format); 12 | } 13 | export function isFormatNeedFetch(format) { 14 | return formatNeedDataFetch.includes(format); 15 | } 16 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form/select/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "formcell": "../formcell", 6 | "datetimepicker": "./allTimePicker", 7 | "dropdownSelect": "./dropdown-select", 8 | "wd-form-item-read-only": "../../wd-form-item-read-only" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form/selectMultiple/dropdown-select/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "isolated" 4 | } 5 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form/selectMultiple/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "formcell": "../formcell", 6 | "dropdownSelect": "./dropdown-select", 7 | "wd-form-item-read-only": "../../wd-form-item-read-only" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form/switch/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "formcell": "../formcell" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form/switch/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form/switch/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../style/weda-ui.wxss'; 2 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form/textarea/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "formcell": "../formcell" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form/textarea/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {{!!value ? value.length : 0}}/{{maxLength}} 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form/textarea/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../style/weda-ui.wxss'; 2 | 3 | .weda-ui .weda-textarea .weui-cell_form { 4 | padding: 16px; 5 | } 6 | 7 | .weda-ui .weda-textarea .weui-flex__item .weui-cell_form { 8 | padding: 16px; 9 | padding-left: 0; 10 | } 11 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form/tips/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared" 4 | } 5 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form/tips/index.wxml: -------------------------------------------------------------------------------- 1 | {{tips}} 2 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form/tips/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../style/weda-ui.wxss'; 2 | 3 | .weda-ui.weui-form .weui-cells__group .weda-tips.weui-cells__tips { 4 | padding-left: 16px; 5 | } 6 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form/uploader/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "mp-uploader": "./weui-uploader", 6 | "mp-cells": "weui-miniprogram/cells/cells", 7 | "mp-cell": "weui-miniprogram/cell/cell", 8 | "formcell": "../formcell" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form/uploader/weui-uploader.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "mp-gallery": "weui-miniprogram/gallery/gallery" 5 | }, 6 | "styleIsolation": "shared" 7 | } 8 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form/uploader/weui-uploader.wxss: -------------------------------------------------------------------------------- 1 | /* materials/gsd-h5-react/components/form/uploader/weui-uploader.wxss */ 2 | .weui-uploader .img-shape-rounded-tectangle { 3 | border-radius: 6px; 4 | } 5 | .weui-uploader .img-shape-circular { 6 | border-radius: 50%; 7 | } 8 | .weui-uploader .img-shape-ectangle { 9 | border-radius: 0px; 10 | } 11 | .weui-uploader__files .img-shape-ectangle::before { 12 | border-radius: 0px; 13 | } 14 | .weui-uploader__files .img-shape-circular::before { 15 | border-radius: 50%; 16 | } 17 | .weui-uploader__files .img-shape-rounded-tectangle::before { 18 | border-radius: 6px; 19 | } 20 | 21 | .weui-uploader__files .weui-uploader__input-box .weui-uploader__input-button { 22 | width: 100%; 23 | } 24 | .weui-uploader__bd .weui-uploader__input-box .weui-uploader__input-button { 25 | width: 100%; 26 | } 27 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/form/uploaderFile/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "mp-cells": "weui-miniprogram/cells/cells", 6 | "mp-cell": "weui-miniprogram/cell/cell", 7 | "mp-actionSheet": "weui-miniprogram/actionsheet/actionsheet" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/formdetail/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "wd-form-item": "../wd-form-item/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/formdetail/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/graphicCard/chevron-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/graphicCard/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "img": "../image" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/grid/col/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared" 4 | } 5 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/grid/col/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/grid/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared" 4 | } 5 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/grid/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/grid/row/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared" 4 | } 5 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/grid/row/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/image/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "gesture": "miniprogram-gesture/gesture" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/listView/arrow-right-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/listView/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "status-content": "../status-content" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/listView/more-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/lottery/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared" 4 | } 5 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/modal/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "container": "../container/index", 6 | "weda-button": "../button/index", 7 | "weda-text": "../text/index" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/navLayout/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "mp-cells": "weui-miniprogram/cells/cells", 6 | "img": "../image" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/navigationBar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": {} 5 | } 6 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/qrcode/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": {} 5 | } 6 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/qrcode/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/qrcode/index.wxss: -------------------------------------------------------------------------------- 1 | .wd-qrcode--convas { 2 | width: 200px; 3 | height: 200px; 4 | position: fixed; 5 | left: 100%; 6 | } 7 | .wd-qrcode--image { 8 | width: 200px; 9 | height: 200px; 10 | } 11 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/richText/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "mp-html": "./mp-html/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/richText/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/richText/mp-html/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "node": "./node/node" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/richText/mp-html/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/richText/mp-html/index.wxss: -------------------------------------------------------------------------------- 1 | ._root { 2 | padding: 1px 0; 3 | overflow-x: auto; 4 | overflow-y: hidden; 5 | -webkit-overflow-scrolling: touch; 6 | } 7 | ._select { 8 | -webkit-user-select: text; 9 | user-select: text; 10 | } 11 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/richText/mp-html/node/node.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "node": "./node", 5 | "wd-unified-link": "../../../wd-unified-link/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/scrollView/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared" 4 | } 5 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/slot/index.js: -------------------------------------------------------------------------------- 1 | import { WD_PREFIX } from '../../utils/constant'; 2 | 3 | Component({ 4 | options: { 5 | virtualHost: true, 6 | }, 7 | properties: { 8 | name: { 9 | type: String, 10 | value: '', 11 | }, 12 | className: { 13 | type: String, 14 | value: '', 15 | }, 16 | style: { 17 | type: String, 18 | value: '', 19 | }, 20 | }, 21 | data: { 22 | classPrefix: WD_PREFIX, 23 | }, 24 | methods: {}, 25 | }); 26 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/slot/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared" 4 | } 5 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/slot/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/status-content/arrow-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/status-content/close.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/status-content/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared" 4 | } 5 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/swiper/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared" 4 | } 5 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/swiper/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/tabs/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } 5 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/tabs/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{ tab.title }} 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/text/index.js: -------------------------------------------------------------------------------- 1 | Component({ 2 | options: { 3 | virtualHost: true, 4 | }, 5 | properties: { 6 | text: { 7 | type: String, 8 | value: '', 9 | }, 10 | level: { 11 | type: String, 12 | value: '0', 13 | }, 14 | userSelect: { 15 | type: Boolean, 16 | value: true, 17 | }, 18 | space: { 19 | type: Boolean, 20 | value: false, 21 | }, 22 | className: { 23 | type: String, 24 | value: '', 25 | }, 26 | style: { 27 | type: String, 28 | value: '', 29 | }, 30 | }, 31 | methods: {}, 32 | observers: { 33 | level: function (level) { 34 | const levelName = `level_${level}`; 35 | if (level !== '0') { 36 | this.setData({ levelName }); 37 | } 38 | }, 39 | }, 40 | }); 41 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/text/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared" 4 | } 5 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/text/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{text}} 4 | 5 | 6 | {{text}} 7 | 8 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/text/index.wxss: -------------------------------------------------------------------------------- 1 | .weda-text { 2 | text-overflow: ellipsis; 3 | overflow: hidden; 4 | display: -webkit-box; 5 | -webkit-box-orient: vertical; 6 | /* -webkit-line-clamp: 1; */ 7 | /* white-space: pre-line; */ 8 | word-break: break-all; 9 | } 10 | .weda-text.level_1 { 11 | font-size: 64px !important; 12 | } 13 | .weda-text.level_2 { 14 | font-size: 56px !important; 15 | } 16 | .weda-text.level_3 { 17 | font-size: 48px !important; 18 | } 19 | .weda-text.level_4 { 20 | font-size: 40px !important; 21 | } 22 | .weda-text.level_5 { 23 | font-size: 32px !important; 24 | } 25 | .weda-text.level_6 { 26 | font-size: 24px !important; 27 | } 28 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/tooltip/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } 5 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/tooltip/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {{ content }} 5 | 6 | 7 | 8 | 9 | 10 | 11 | {{ content }} 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/tooltip/wd-tooltip.wxss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | ._B00_Xa { 3 | /* 如果生成的wxss 为空文件似乎会导致IDE编译报错, 所以这里给他弄个占位 */ 4 | word-break: inherit; 5 | } 6 | 7 | .wd-bubble { 8 | --wd-bubble-top: 0px; 9 | --wd-bubble-inner-horizontal-padding: 12px; 10 | --wd-bubble-inner-vertical-padding: 8px; 11 | --wd-divider-inner-border-radius: var(--wd-border-radius); 12 | } 13 | 14 | .wd-bubble { 15 | margin-top: var(--wd-bubble-top); 16 | } 17 | 18 | .wd-wedatea2td-bubble__inner { 19 | padding: var(--wd-bubble-inner-vertical-margin) var(--wd-bubble-inner-horizontal-margin); 20 | border-radius: var(--wd-divider-inner-border-radius); 21 | } 22 | 23 | .wd-bubble-content { 24 | min-width: 140px; 25 | display: inline-flex; 26 | justify-content: center; 27 | } 28 | 29 | .wd-bubble-child { 30 | display: inline-block; 31 | } -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-ad/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": {} 5 | } 6 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-ad/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-ad/index.wxss: -------------------------------------------------------------------------------- 1 | .wd-ad { 2 | width: 100%; 3 | } 4 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-audio/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": {} 5 | } 6 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-audio/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-button/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "Icon": "../wd-icon/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-button/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../style/wd-design.wxss'; 2 | @import './wd-button.wxss'; 3 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-calendar/arrowright--line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-calendar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {}, 4 | "styleIsolation": "shared" 5 | } 6 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-canvas/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": {} 5 | } 6 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-canvas/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-canvas/index.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloudBase/tcb-demo-basic/ac149fd71039b299d739b85a29bb5c51f032f850/client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-canvas/index.wxss -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-card/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": {} 5 | } 6 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-card/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-card/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../style/wd-design.wxss'; 2 | @import './wd-card.wxss'; 3 | 4 | .wd-mp-card-root { 5 | --wd-card-body-pd: 1rem 1.5rem; 6 | } 7 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-cascader/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "wd-form-item": "../wd-form-item/index", 6 | "wd-input-group": "../wd-input-group/index", 7 | "wd-input-wrap": "../wd-input-wrap/index", 8 | "wd-modal": "../wd-date/modal/index", 9 | "wd-tabs": "../wd-tabs", 10 | "wd-icon": "../wd-icon" 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-cascader/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../style/wd-design.wxss'; 2 | @import './wd-cascader.wxss'; 3 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-checkbox-list/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "wd-form-item": "../wd-form-item/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-checkbox-list/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../style/wd-design.wxss'; 2 | @import './wd-checkbox-list.wxss'; 3 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-date-range/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "wd-form-item": "../wd-form-item/index", 6 | "wd-input-group": "../wd-input-group/index", 7 | "wd-input-wrap": "../wd-input-wrap/index", 8 | "date-picker": "../wd-date/date-picker/index" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-date-range/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../style/wd-design.wxss'; 2 | @import '../../style/utils.wxss'; 3 | 4 | @import '../wd-select/select.wxss'; 5 | @import '../form/form/index.wxss'; 6 | @import '../wd-input-wrap/wd-input-wrap.wxss'; 7 | @import '../wd-input-group/wd-input-group.wxss'; 8 | 9 | @import './wd-date-range.wxss'; 10 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-date-range/wd-date-range.wxss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | ._B00_Xa { 3 | /* 如果生成的wxss 为空文件似乎会导致IDE编译报错, 所以这里给他弄个占位 */ 4 | word-break: inherit; 5 | } -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-date/calendar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "year-month-picker": "../year-month-picker" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-date/date-picker/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "calendar": "../calendar", 6 | "year-month-picker": "../year-month-picker/index", 7 | "time-picker": "../time-picker/index" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-date/date-picker/index.wxss: -------------------------------------------------------------------------------- 1 | .wd-custom-picker .wd-custom-picker__box--month { 2 | padding: 45px 0; 3 | } 4 | 5 | .wd-custom-picker .wd-custom-picker__box--month .weda-ui-custom-picker-view { 6 | margin: 0; 7 | } 8 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-date/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "wd-form-item": "../wd-form-item/index", 6 | "wd-input-group": "../wd-input-group/index", 7 | "wd-input-wrap": "../wd-input-wrap/index", 8 | "date-picker": "./date-picker/index" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-date/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../style/wd-design.wxss'; 2 | @import '../../style/utils.wxss'; 3 | 4 | @import '../form/form/index.wxss'; 5 | @import '../wd-select/select.wxss'; 6 | @import '../wd-input-wrap/wd-input-wrap.wxss'; 7 | @import '../wd-input-group/wd-input-group.wxss'; 8 | 9 | @import './wd-date.wxss'; 10 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-date/modal/index.js: -------------------------------------------------------------------------------- 1 | import { WD_PREFIX } from '../../../utils/constant'; 2 | /** 3 | * 弹窗选择器 4 | */ 5 | Component({ 6 | options: { virtualHost: true }, 7 | properties: { 8 | visible: { 9 | type: Boolean, 10 | value: false, 11 | }, 12 | className: { 13 | type: String, 14 | value: false, 15 | }, 16 | }, 17 | data: { 18 | classPrefix: WD_PREFIX, 19 | }, 20 | methods: { 21 | handleClose: function () { 22 | this.triggerEvent('onClose'); 23 | }, 24 | 25 | handleOk: function () { 26 | this.triggerEvent('onOk'); 27 | }, 28 | }, 29 | observers: {}, 30 | lifetimes: {}, 31 | }); 32 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-date/modal/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": {} 5 | } 6 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-date/modal/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 取消 7 | 确定 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-date/modal/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../style/wd-design.wxss'; 2 | @import '../../../style/utils.wxss'; 3 | @import '../../wd-select/select.wxss'; 4 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-date/time-picker/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": {} 5 | } 6 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-date/time-picker/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{item < 10 ? ('0'+item) : item}}时 4 | 5 | 6 | 7 | {{item < 10 ? ('0'+item) : item}}分 8 | 9 | 10 | 11 | {{item < 10 ? ('0'+item) : item}}秒 12 | 13 | 14 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-date/time-picker/index.wxss: -------------------------------------------------------------------------------- 1 | .weda-ui-custom-picker-view { 2 | width: 100%; 3 | height: 220px; 4 | margin: 65px 0; 5 | } 6 | 7 | .weda-ui-custom-picker-view-indicator { 8 | height: 45px; 9 | } 10 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-date/wd-date.wxss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | ._B00_Xa { 3 | /* 如果生成的wxss 为空文件似乎会导致IDE编译报错, 所以这里给他弄个占位 */ 4 | word-break: inherit; 5 | } -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-date/year-month-picker/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": {} 5 | } 6 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-date/year-month-picker/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{item}}年 4 | 5 | 6 | {{(item+1) < 10 ? ('0'+(item+1)) : (item+1) }}月 7 | 8 | 9 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-date/year-month-picker/index.wxss: -------------------------------------------------------------------------------- 1 | .weda-ui-custom-picker-view { 2 | width: 100%; 3 | height: 220px; 4 | margin: 65px 0; 5 | } 6 | 7 | .weda-ui-custom-picker-view-indicator { 8 | height: 45px; 9 | } 10 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-divider/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": {} 5 | } 6 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-divider/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-divider/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../style/wd-design.wxss'; 2 | @import './wd-divider.wxss'; 3 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-form-arr/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "wd-form-item-obj": "../wd-form-item-obj/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-form-arr/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-form-arr/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../style/wd-design.wxss'; 2 | @import './wd-form-obj.wxss'; 3 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-form-item-obj/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "wd-icon": "../wd-icon/index", 6 | "wd-card": "../wd-card/index" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-form-item-obj/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../style/wd-design.wxss'; 2 | @import './wd-form-item.wxss'; 3 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-form-item-read-only/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": {} 5 | } 6 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-form-item-read-only/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{complexBefore}} 4 | {{complexReadValue}} 5 | {{complexAfter}} 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-form-item/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "wd-icon": "../wd-icon/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-form-item/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../style/wd-design.wxss'; 2 | @import './wd-form-item.wxss'; 3 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-form-obj/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "wd-form-item-obj": "../wd-form-item-obj/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-form-obj/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-form-obj/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../style/wd-design.wxss'; 2 | @import './wd-form-obj.wxss'; 3 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-form/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { "status-content": "../status-content" } 5 | } 6 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-form/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 数据加载中... 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-icon/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "wd-image": "../wd-image/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-icon/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-icon/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../style/wd-design.wxss'; 2 | @import '../../style/weda-ui.wxss'; 3 | @import './wd-icon.wxss'; 4 | @import '../../style/wd-font-icon.wxss'; 5 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-image/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "gesture": "miniprogram-gesture/gesture" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-image/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../style/wd-design.wxss'; 2 | @import './wd-image.wxss'; 3 | 4 | .wd-image-preview-container { 5 | background-color: #000; 6 | } 7 | 8 | .wd-image-mask__icon-close { 9 | width: 1rem; 10 | height: 1rem; 11 | } 12 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-input-email/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "inner-input": "../wd-input/inner-input/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-input-group/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": {} 5 | } 6 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-input-group/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {{before}} 5 | 6 | 7 | 8 | 9 | 10 | {{after}} 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-input-group/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../style/wd-design.wxss'; 2 | @import './wd-input-group.wxss'; 3 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-input-number/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "wd-form-item": "../wd-form-item/index", 6 | "wd-input-group": "../wd-input-group/index", 7 | "wd-icon": "../wd-icon/index", 8 | "wd-button": "../wd-button/index" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-input-number/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../style/wd-design.wxss'; 2 | @import '../../style/utils.wxss'; 3 | 4 | @import '../form/form/index.wxss'; 5 | @import '../wd-input-wrap/wd-input-wrap.wxss'; 6 | @import '../wd-input-group/wd-input-group.wxss'; 7 | 8 | @import './wd-input-number.wxss'; 9 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-input-phone/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "inner-input": "../wd-input/inner-input/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-input-url/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "inner-input": "../wd-input/inner-input/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-input-wrap/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "wd-icon": "../wd-icon/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-input-wrap/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../style/wd-design.wxss'; 2 | @import './wd-input-wrap.wxss'; 3 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-input/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "inner-input": "./inner-input/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-input/inner-input/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "wd-form-item": "../../wd-form-item/index", 6 | "wd-input-group": "../../wd-input-group/index", 7 | "wd-icon": "../../wd-icon/index" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-input/inner-input/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../style/wd-design.wxss'; 2 | @import './wd-input.wxss'; 3 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-layout/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": {} 5 | } 6 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-layout/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-layout/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../style/wd-design.wxss'; 2 | @import './wd-layout.wxss'; 3 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-location/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "wd-form-item": "../wd-form-item/index", 6 | "wd-input-group": "../wd-input-group/index", 7 | "wd-input-wrap": "../wd-input-wrap/index", 8 | "old-location": "../form/location" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-markdown/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "richText": "../richText/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-markdown/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-menu-base-layout/index.js: -------------------------------------------------------------------------------- 1 | Component({ 2 | options: { 3 | virtualHost: true, 4 | }, 5 | properties: { 6 | id: { 7 | type: String, 8 | value: '', 9 | }, 10 | className: { 11 | type: String, 12 | value: '', 13 | }, 14 | style: { 15 | type: String, 16 | value: '', 17 | }, 18 | }, 19 | methods: {}, 20 | }); 21 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-menu-base-layout/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": {} 5 | } 6 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-menu-base-layout/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-menu-horizontal-layout/index.js: -------------------------------------------------------------------------------- 1 | Component({ 2 | options: { 3 | virtualHost: true, 4 | }, 5 | properties: { 6 | id: { 7 | type: String, 8 | value: '', 9 | }, 10 | className: { 11 | type: String, 12 | value: '', 13 | }, 14 | style: { 15 | type: String, 16 | value: '', 17 | }, 18 | }, 19 | methods: {}, 20 | }); 21 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-menu-horizontal-layout/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": {} 5 | } 6 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-menu-horizontal-layout/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-menu-layout/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "wd-icon": "../wd-icon/index", 6 | "wd-menu-list": "../wd-menu-list/index" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-menu-layout/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../style/wd-design.wxss'; 2 | @import './wd-menu-layout.wxss'; 3 | 4 | .wd-menulayout-h5__drawer-slot { 5 | position: fixed; 6 | bottom: 0px; 7 | z-index: 1000; 8 | right: 0; 9 | } 10 | 11 | .wd-menulayout .weda-drawer-menu { 12 | padding-bottom: 62px; 13 | } 14 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-menu-list/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "wd-icon": "../wd-icon/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-menu-nav-layout/index.js: -------------------------------------------------------------------------------- 1 | Component({ 2 | options: { 3 | virtualHost: true, 4 | }, 5 | properties: { 6 | id: { 7 | type: String, 8 | value: '', 9 | }, 10 | className: { 11 | type: String, 12 | value: '', 13 | }, 14 | style: { 15 | type: String, 16 | value: '', 17 | }, 18 | }, 19 | methods: {}, 20 | }); 21 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-menu-nav-layout/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": {} 5 | } 6 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-menu-nav-layout/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-menu-nav-tab-layout/index.js: -------------------------------------------------------------------------------- 1 | Component({ 2 | options: { 3 | virtualHost: true, 4 | }, 5 | properties: { 6 | id: { 7 | type: String, 8 | value: '', 9 | }, 10 | className: { 11 | type: String, 12 | value: '', 13 | }, 14 | style: { 15 | type: String, 16 | value: '', 17 | }, 18 | }, 19 | methods: {}, 20 | }); 21 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-menu-nav-tab-layout/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": {} 5 | } 6 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-menu-nav-tab-layout/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-menu-plant-layout/index.js: -------------------------------------------------------------------------------- 1 | Component({ 2 | options: { 3 | virtualHost: true, 4 | }, 5 | properties: { 6 | id: { 7 | type: String, 8 | value: '', 9 | }, 10 | className: { 11 | type: String, 12 | value: '', 13 | }, 14 | style: { 15 | type: String, 16 | value: '', 17 | }, 18 | }, 19 | methods: {}, 20 | }); 21 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-menu-plant-layout/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": {} 5 | } 6 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-menu-plant-layout/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-menu-tab-layout/index.js: -------------------------------------------------------------------------------- 1 | Component({ 2 | options: { 3 | virtualHost: true, 4 | }, 5 | properties: { 6 | id: { 7 | type: String, 8 | value: '', 9 | }, 10 | className: { 11 | type: String, 12 | value: '', 13 | }, 14 | style: { 15 | type: String, 16 | value: '', 17 | }, 18 | }, 19 | methods: {}, 20 | }); 21 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-menu-tab-layout/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": {} 5 | } 6 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-menu-tab-layout/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-menu-vertical-layout/index.js: -------------------------------------------------------------------------------- 1 | Component({ 2 | options: { 3 | virtualHost: true, 4 | }, 5 | properties: { 6 | id: { 7 | type: String, 8 | value: '', 9 | }, 10 | className: { 11 | type: String, 12 | value: '', 13 | }, 14 | style: { 15 | type: String, 16 | value: '', 17 | }, 18 | }, 19 | methods: {}, 20 | }); 21 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-menu-vertical-layout/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": {} 5 | } 6 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-menu-vertical-layout/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-modal/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": {} 5 | } 6 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-modal/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-modal/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../style/wd-design.wxss'; 2 | @import './wd-modal.wxss'; 3 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-official-account/index.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Date: 2023-04-18 19:14:40 3 | * @LastEditTime: 2023-04-20 15:14:35 4 | * @Description: 公众号关注组件 5 | */ 6 | import { commonCompBehavior } from '../../utils/common-behavior'; 7 | Component({ 8 | options: { 9 | virtualHost: true, 10 | }, 11 | behaviors: [commonCompBehavior], 12 | properties: { 13 | className: { 14 | type: String, 15 | value: '', 16 | }, 17 | style: { 18 | type: String, 19 | value: '', 20 | }, 21 | id: { 22 | type: String, 23 | value: '', 24 | }, 25 | }, 26 | methods: {}, 27 | observers: {}, 28 | }); 29 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-official-account/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": {} 5 | } 6 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-official-account/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-official-account/index.wxss: -------------------------------------------------------------------------------- 1 | .wd-official-account { 2 | width: 100%; 3 | min-width: 300px; 4 | } 5 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-progress/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "wd-form-item": "../wd-form-item/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-progress/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../style/wd-design.wxss'; 2 | @import './wd-progress.wxss'; 3 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-radio-list/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "wd-form-item": "../wd-form-item/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-radio-list/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../style/wd-design.wxss'; 2 | @import './wd-radio-list.wxss'; 3 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-rating/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "wd-form-item": "../wd-form-item/index", 6 | "wd-icon": "../wd-icon/index", 7 | "tooltip": "../tooltip/index" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-rating/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../style/wd-design.wxss'; 2 | @import './wd-rating.wxss'; 3 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-region/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "wd-form-item": "../wd-form-item/index", 6 | "wd-input-group": "../wd-input-group/index", 7 | "wd-input-wrap": "../wd-input-wrap/index", 8 | "old-select": "../form/select" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-region/index.wxss: -------------------------------------------------------------------------------- 1 | .weui-cells::after, 2 | .weui-cells::before { 3 | display: none; 4 | } 5 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-select-multiple/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "wd-form-item": "../wd-form-item/index", 6 | "wd-input-group": "../wd-input-group/index", 7 | "wd-input-wrap": "../wd-input-wrap/index", 8 | "old-select": "../form/selectMultiple" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-select/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "wd-form-item": "../wd-form-item/index", 6 | "wd-input-group": "../wd-input-group/index", 7 | "wd-input-wrap": "../wd-input-wrap/index", 8 | "old-select": "../form/select" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-side-tab/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "wd-tabs": "../wd-tabs" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-side-tab/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-side-tab/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../style/wd-design.wxss'; 2 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-store-home/index.js: -------------------------------------------------------------------------------- 1 | Component({ 2 | options: { 3 | virtualHost: true, 4 | }, 5 | properties: { 6 | appid: { 7 | type: String, 8 | value: '', 9 | }, 10 | id: { 11 | type: String, 12 | value: '', 13 | }, 14 | }, 15 | methods: {}, 16 | observers: {}, 17 | }); 18 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-store-home/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": {} 5 | } 6 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-store-home/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-store-product/index.js: -------------------------------------------------------------------------------- 1 | import handleEvents from '../../utils/handleEvents'; 2 | 3 | Component({ 4 | options: { 5 | virtualHost: true, 6 | }, 7 | properties: { 8 | id: { 9 | type: String, 10 | value: '', 11 | }, 12 | appid: { 13 | type: String, 14 | value: '', 15 | }, 16 | productId: { 17 | type: String, 18 | value: '', 19 | }, 20 | productPromotionLink: { 21 | type: String, 22 | value: '', 23 | }, 24 | mediaId: { 25 | type: String, 26 | value: '', 27 | }, 28 | customStyle: { 29 | type: Object, 30 | }, 31 | }, 32 | methods: { 33 | ...handleEvents([ 34 | { title: '跳转小店成功', name: 'bindentererror' }, 35 | { title: '跳转小店失败', name: 'bindentersuccess' }, 36 | ]), 37 | }, 38 | observers: {}, 39 | }); 40 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-store-product/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": {} 5 | } 6 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-store-product/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-switch/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "wd-form-item": "../wd-form-item/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-switch/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../style/wd-design.wxss'; 2 | @import './wd-switch.wxss'; 3 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-tabbar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "wd-icon": "../wd-icon/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-tabbar/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../style/wd-design.wxss'; 2 | @import './wd-tabbar.wxss'; 3 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-tabs/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { "wd-icon": "../wd-icon/index" } 5 | } 6 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-tabs/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../style/wd-design.wxss'; 2 | @import './wd-tabs.wxss'; 3 | 4 | .wd-tabs-mp-root .wd-tabs__scroll { 5 | width: 100%; 6 | display: flex; 7 | height: 50px; 8 | } 9 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-tag-select/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "wd-form-item": "../wd-form-item/index", 6 | "wd-tag": "../wd-tag/index" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-tag-select/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../style/wd-design.wxss'; 2 | @import '../wd-text/wd-text.wxss'; 3 | @import '../wd-tag/wd-tag.wxss'; 4 | @import './wd-tag-select.wxss'; 5 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-tag/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "tag-item": "./tag-item/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-tag/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../style/wd-design.wxss'; 2 | @import '../wd-text/wd-text.wxss'; 3 | @import './wd-tag.wxss'; 4 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-tag/tag-item/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "wd-icon": "../../wd-icon/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-tag/tag-item/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {{label}} 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-text/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": {} 5 | } 6 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-text/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{text}} 4 | {{text}} 5 | 6 | 7 | {{text}} 8 | 9 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-text/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../style/wd-design.wxss'; 2 | @import './wd-text.wxss'; 3 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-textarea/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "wd-form-item": "../wd-form-item/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-textarea/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../style/wd-design.wxss'; 2 | @import '../../style/utils.wxss'; 3 | 4 | @import '../form/form/index.wxss'; 5 | @import '../wd-input-wrap/wd-input-wrap.wxss'; 6 | 7 | @import './wd-textarea.wxss'; 8 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-time/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "wd-form-item": "../wd-form-item/index", 6 | "wd-input-group": "../wd-input-group/index", 7 | "wd-input-wrap": "../wd-input-wrap/index", 8 | "time-picker": "../wd-date/time-picker/index", 9 | "modal": "../wd-date/modal/index" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-time/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../style/wd-design.wxss'; 2 | @import '../../style/utils.wxss'; 3 | 4 | @import '../wd-select/select.wxss'; 5 | @import '../form/form/index.wxss'; 6 | @import '../wd-input-wrap/wd-input-wrap.wxss'; 7 | @import '../wd-input-group/wd-input-group.wxss'; 8 | 9 | @import './wd-time.wxss'; 10 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-time/wd-time.wxss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | ._B00_Xa { 3 | /* 如果生成的wxss 为空文件似乎会导致IDE编译报错, 所以这里给他弄个占位 */ 4 | word-break: inherit; 5 | } -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-top-tab/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "wd-tabs": "../wd-tabs" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-top-tab/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-top-tab/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../style/wd-design.wxss'; 2 | 3 | .wd-mp-top-tab-root .wd-tabs__scroll { 4 | width: 100%; 5 | } 6 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-unified-link/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": {} 5 | } 6 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-unified-link/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-unified-link/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../style/wd-design.wxss'; 2 | @import './wd-link.wxss'; 3 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-upload-file/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "wd-form-item": "../wd-form-item/index", 6 | "old-file-uploader": "../form/uploaderFile" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wd-upload-image/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": { 5 | "wd-form-item": "../wd-form-item/index", 6 | "old-image-uploader": "../form/uploader" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/web-view/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared", 4 | "usingComponents": {} 5 | } 6 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/web-view/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/web-view/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../style/weda-ui.wxss'; 2 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wedaVideo/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared" 4 | } 5 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wedaVideo/index.wxss: -------------------------------------------------------------------------------- 1 | /* component/videojs.wxss */ 2 | 3 | .weda-ui_video-mp { 4 | width: 100%; 5 | position: relative; 6 | } 7 | 8 | .weda-ui_video-mp_error { 9 | width: 100%; 10 | height: 100%; 11 | position: absolute; 12 | background-color: rgba(0, 0, 0); 13 | top: 0; 14 | left: 0; 15 | color: #fff; 16 | display: flex; 17 | align-items: center; 18 | justify-content: center; 19 | text-align: center; 20 | } 21 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wxOpenApi/phone/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared" 4 | } 5 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wxOpenApi/phone/index.wxml: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wxOpenApi/phone/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../style/weda-ui.wxss'; 2 | 3 | .weui-btn.weui-btn_primary:not(.weui-btn_disabled):active { 4 | background-color: var(--weui-TAG-TEXT-BLUE); 5 | } 6 | 7 | .weui-btn.weui-btn_primary.weui-btn_wechat:not(.weui-btn_disabled):active { 8 | background-color: var(--weui-TAG-TEXT-GREEN); 9 | } 10 | 11 | .weui-btn.weui-btn_primary.weui-btn_wechat { 12 | background-color: var(--weui-WECHAT); 13 | } 14 | 15 | .weda-ui.weui-btn.weui-btn_large { 16 | font-size: large; 17 | display: block; 18 | padding-left: 7px; 19 | padding-right: 7px; 20 | text-align: center; 21 | width: 100%; 22 | } 23 | 24 | button::after { 25 | border: none; 26 | } 27 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wxOpenApi/phoneCode/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared" 4 | } 5 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wxOpenApi/phoneCode/index.wxml: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wxOpenApi/phoneCode/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../style/weda-ui.wxss'; 2 | 3 | .weui-btn.weui-btn_primary:not(.weui-btn_disabled):active { 4 | background-color: var(--weui-TAG-TEXT-BLUE); 5 | } 6 | 7 | .weui-btn.weui-btn_primary.weui-btn_wechat:not(.weui-btn_disabled):active { 8 | background-color: var(--weui-TAG-TEXT-GREEN); 9 | } 10 | 11 | .weui-btn.weui-btn_primary.weui-btn_wechat { 12 | background-color: var(--weui-WECHAT); 13 | } 14 | 15 | .weda-ui.weui-btn.weui-btn_large { 16 | font-size: large; 17 | display: block; 18 | padding-left: 7px; 19 | padding-right: 7px; 20 | text-align: center; 21 | width: 100%; 22 | } 23 | 24 | button::after { 25 | border: none; 26 | } 27 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wxOpenApi/share/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared" 4 | } 5 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wxOpenApi/share/index.wxml: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wxOpenApi/share/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../style/weda-ui.wxss'; 2 | 3 | .weui-btn.weui-btn_primary:not(.weui-btn_disabled):active { 4 | background-color: var(--weui-TAG-TEXT-BLUE); 5 | } 6 | 7 | .weui-btn.weui-btn_primary.weui-btn_wechat:not(.weui-btn_disabled):active { 8 | background-color: var(--weui-TAG-TEXT-GREEN); 9 | } 10 | 11 | .weui-btn.weui-btn_primary.weui-btn_wechat { 12 | background-color: var(--weui-WECHAT); 13 | } 14 | 15 | .weda-ui.weui-btn.weui-btn_large { 16 | font-size: large; 17 | display: block; 18 | padding-left: 7px; 19 | padding-right: 7px; 20 | text-align: center; 21 | width: 100%; 22 | } 23 | 24 | button::after { 25 | border: none; 26 | } 27 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wxOpenApi/userInfo/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "styleIsolation": "shared" 4 | } 5 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wxOpenApi/userInfo/index.wxml: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/components/wxOpenApi/userInfo/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../style/weda-ui.wxss'; 2 | 3 | .weui-btn.weui-btn_primary:not(.weui-btn_disabled):active { 4 | background-color: var(--weui-TAG-TEXT-BLUE); 5 | } 6 | 7 | .weui-btn.weui-btn_primary.weui-btn_wechat:not(.weui-btn_disabled):active { 8 | background-color: var(--weui-TAG-TEXT-GREEN); 9 | } 10 | 11 | .weui-btn.weui-btn_primary.weui-btn_wechat { 12 | background-color: var(--weui-WECHAT); 13 | } 14 | 15 | .weda-ui.weui-btn.weui-btn_large { 16 | font-size: large; 17 | display: block; 18 | padding-left: 7px; 19 | padding-right: 7px; 20 | text-align: center; 21 | width: 100%; 22 | } 23 | 24 | button::after { 25 | border: none; 26 | } 27 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/utils/common-behavior.js: -------------------------------------------------------------------------------- 1 | export { commonCompBehavior } from '@cloudbase/weda-client'; 2 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/@cloudbase/weda-ui-mp/utils/getWedaApi.js: -------------------------------------------------------------------------------- 1 | export { getWedaAPI } from '@cloudbase/weda-client'; 2 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/miniprogram-gesture/gesture.js: -------------------------------------------------------------------------------- 1 | Component({ 2 | options: { 3 | addGlobalClass: true, 4 | multipleSlots: true, 5 | }, 6 | properties: { 7 | propagation: { 8 | type: Boolean, 9 | value: true, 10 | }, 11 | requireFailure: { 12 | type: Boolean, 13 | value: true, 14 | }, 15 | }, 16 | methods: {} 17 | }) 18 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/miniprogram-gesture/gesture.json: -------------------------------------------------------------------------------- 1 | 2 | { 3 | "component": true, 4 | "usingComponents": {} 5 | } -------------------------------------------------------------------------------- /client/components/agent-deepseek/miniprogram_npm/miniprogram-gesture/gesture.wxml: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | -------------------------------------------------------------------------------- /client/components/agent-deepseek/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@cloudbase-module/block", 3 | "version": "1.0.0", 4 | "miniprogram": "./dist", 5 | "keywords": [ 6 | "微搭", 7 | "小程序", 8 | "区块组件", 9 | "cloudbase", 10 | "cloudbase-module", 11 | "cloudbase-component" 12 | ], 13 | "dependencies": { 14 | "@cloudbase/weda-client": "^1.1.13", 15 | "@cloudbase/weda-cloud-sdk": "^1.0.90", 16 | "@cloudbase/adapter-wx_mp": "^1.0.3", 17 | "@cloudbase/auth": "^2.8.23-beta.0", 18 | "@cloudbase/ai": "^2.8.23-beta.0", 19 | "@cloudbase/weda-ui-mp": "3.14.1", 20 | "miniprogram-gesture": "^1.0.6", 21 | "mobx": "^5", 22 | "lodash.get": "^4", 23 | "lodash.set": "^4" 24 | } 25 | } -------------------------------------------------------------------------------- /client/components/nav-bar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /client/components/trd-privacy/privacy.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /client/images/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloudBase/tcb-demo-basic/ac149fd71039b299d739b85a29bb5c51f032f850/client/images/cart.png -------------------------------------------------------------------------------- /client/images/code-cloud-callback-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloudBase/tcb-demo-basic/ac149fd71039b299d739b85a29bb5c51f032f850/client/images/code-cloud-callback-config.png -------------------------------------------------------------------------------- /client/images/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloudBase/tcb-demo-basic/ac149fd71039b299d739b85a29bb5c51f032f850/client/images/default.png -------------------------------------------------------------------------------- /client/images/icon_foot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloudBase/tcb-demo-basic/ac149fd71039b299d739b85a29bb5c51f032f850/client/images/icon_foot.png -------------------------------------------------------------------------------- /client/images/selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloudBase/tcb-demo-basic/ac149fd71039b299d739b85a29bb5c51f032f850/client/images/selected.png -------------------------------------------------------------------------------- /client/images/tencentcloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloudBase/tcb-demo-basic/ac149fd71039b299d739b85a29bb5c51f032f850/client/images/tencentcloud.png -------------------------------------------------------------------------------- /client/images/user-unlogin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloudBase/tcb-demo-basic/ac149fd71039b299d739b85a29bb5c51f032f850/client/images/user-unlogin.png -------------------------------------------------------------------------------- /client/images/工具- focus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloudBase/tcb-demo-basic/ac149fd71039b299d739b85a29bb5c51f032f850/client/images/工具- focus@2x.png -------------------------------------------------------------------------------- /client/images/工具-nor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloudBase/tcb-demo-basic/ac149fd71039b299d739b85a29bb5c51f032f850/client/images/工具-nor@2x.png -------------------------------------------------------------------------------- /client/images/案例- focus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloudBase/tcb-demo-basic/ac149fd71039b299d739b85a29bb5c51f032f850/client/images/案例- focus@2x.png -------------------------------------------------------------------------------- /client/images/案例-nor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloudBase/tcb-demo-basic/ac149fd71039b299d739b85a29bb5c51f032f850/client/images/案例-nor@2x.png -------------------------------------------------------------------------------- /client/images/首页- focus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloudBase/tcb-demo-basic/ac149fd71039b299d739b85a29bb5c51f032f850/client/images/首页- focus@2x.png -------------------------------------------------------------------------------- /client/images/首页-nor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloudBase/tcb-demo-basic/ac149fd71039b299d739b85a29bb5c51f032f850/client/images/首页-nor@2x.png -------------------------------------------------------------------------------- /client/pages/ai/index.js: -------------------------------------------------------------------------------- 1 | // pages/ai/index.js 2 | Page({ 3 | 4 | /** 5 | * 页面的初始数据 6 | */ 7 | data: { 8 | 9 | }, 10 | 11 | /** 12 | * 生命周期函数--监听页面加载 13 | */ 14 | onLoad(options) { 15 | 16 | }, 17 | 18 | /** 19 | * 生命周期函数--监听页面初次渲染完成 20 | */ 21 | onReady() { 22 | 23 | }, 24 | 25 | /** 26 | * 生命周期函数--监听页面显示 27 | */ 28 | onShow() { 29 | 30 | }, 31 | 32 | /** 33 | * 生命周期函数--监听页面隐藏 34 | */ 35 | onHide() { 36 | 37 | }, 38 | 39 | /** 40 | * 生命周期函数--监听页面卸载 41 | */ 42 | onUnload() { 43 | 44 | }, 45 | 46 | /** 47 | * 页面相关事件处理函数--监听用户下拉动作 48 | */ 49 | onPullDownRefresh() { 50 | 51 | }, 52 | 53 | /** 54 | * 页面上拉触底事件的处理函数 55 | */ 56 | onReachBottom() { 57 | 58 | }, 59 | 60 | /** 61 | * 用户点击右上角分享 62 | */ 63 | onShareAppMessage() { 64 | 65 | } 66 | }) -------------------------------------------------------------------------------- /client/pages/ai/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /client/pages/ai/index.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/pages/ai/index.wxss: -------------------------------------------------------------------------------- 1 | /* pages/ai/index.wxss */ -------------------------------------------------------------------------------- /client/pages/case/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "案例", 3 | "navigationStyle": "custom", 4 | "usingComponents": {} 5 | } -------------------------------------------------------------------------------- /client/pages/case/index.wxss: -------------------------------------------------------------------------------- 1 | page { 2 | background: #fff; 3 | } 4 | .case-bar { 5 | padding: 0 32rpx; 6 | } 7 | .case-pannel { 8 | background-color: #F7F7F8; 9 | padding: 32rpx 24rpx; 10 | } 11 | -------------------------------------------------------------------------------- /client/pages/common/foot.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/pages/common/head.wxml: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /client/pages/customer-msg/README.md: -------------------------------------------------------------------------------- 1 | # 云开发客户能力使用说明 2 | 3 | 小程序提供了客服套件,在简单的情况下可以使用该套件来人工为客户提供客服服务。 -------------------------------------------------------------------------------- /client/pages/customer-msg/chooseLib/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "选择基础库", 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /client/pages/customer-msg/chooseLib/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 初始化失败 7 | 8 | 9 | 请使用 2.2.3 或以上的基础库以使用云能力 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /client/pages/customer-msg/chooseLib/index.wxss: -------------------------------------------------------------------------------- 1 | /* pages/chooseLib/chooseLib.wxss */ 2 | 3 | @import "../style/guide.wxss"; 4 | 5 | .black { 6 | color: black; 7 | } -------------------------------------------------------------------------------- /client/pages/customer-msg/index/index.js: -------------------------------------------------------------------------------- 1 | //index.js 2 | const regeneratorRuntime = require("../../../libs/runtime-module"); 3 | 4 | const app = getApp(); 5 | 6 | Page({ 7 | data: {}, 8 | 9 | onLoad: async function() { 10 | if (!wx.cloud) { 11 | wx.redirectTo({ 12 | url: "../chooseLib/index" 13 | }); 14 | return; 15 | } 16 | } 17 | }); 18 | -------------------------------------------------------------------------------- /client/pages/customer-msg/index/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "客服消息", 3 | "usingComponents": {} 4 | } 5 | -------------------------------------------------------------------------------- /client/pages/customer-msg/index/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8 | 9 | 10 | 11 | 12 | 消息历史 13 | 14 | 15 | -------------------------------------------------------------------------------- /client/pages/customer-msg/index/index.wxss: -------------------------------------------------------------------------------- 1 | /**index.wxss**/ 2 | @import "../../../style/navigate.wxss"; 3 | .container{ 4 | min-height: auto; 5 | } 6 | 7 | .uploader.message{ 8 | padding-left: 0; 9 | } -------------------------------------------------------------------------------- /client/pages/customer-msg/messageList/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /client/pages/customer-msg/messageList/index.wxss: -------------------------------------------------------------------------------- 1 | /* pages/messageList/MessageList.wxss */ 2 | .container{ 3 | min-height: auto; 4 | } 5 | 6 | .headline { 7 | font-size: 120%; 8 | margin: 20rpx 0; 9 | } 10 | .message-body{ 11 | background: white; 12 | margin: 20rpx; 13 | padding: 20rpx; 14 | border-radius: 10rpx; 15 | /* margin-left: 140rpx; */ 16 | } 17 | .message-body.message-self{ 18 | background: #CCE4FC; 19 | } 20 | .message-body .triangle { 21 | background: white; 22 | width: 20rpx; 23 | height: 20rpx; 24 | margin-top: 26rpx; 25 | transform: rotate(45deg); 26 | position: absolute; 27 | left: 130rpx 28 | } 29 | .message-list .name, .message-list .message-time{ 30 | font-size: 60%; 31 | color: gray; 32 | margin-left: 20rpx; 33 | } 34 | 35 | .message-list .name{ 36 | font-size: 70%; 37 | } 38 | -------------------------------------------------------------------------------- /client/pages/deepseek/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloudBase/tcb-demo-basic/ac149fd71039b299d739b85a29bb5c51f032f850/client/pages/deepseek/index.css -------------------------------------------------------------------------------- /client/pages/deepseek/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "chat": "/components/agent-deepseek/dist/cloudbase/index" 4 | }, 5 | "componentPlaceholder": { 6 | "chat": "block" 7 | } 8 | } -------------------------------------------------------------------------------- /client/pages/deepseek/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /client/pages/home/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "首页", 3 | "navigationStyle": "custom", 4 | "usingComponents": { 5 | "trd-privacy": "../../components/trd-privacy/privacy" 6 | } 7 | } -------------------------------------------------------------------------------- /client/pages/index/index.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /client/pages/index/index.wxss: -------------------------------------------------------------------------------- 1 | /**index.wxss**/ 2 | @import '../../style/navigate.wxss' -------------------------------------------------------------------------------- /client/pages/index/user-unlogin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentCloudBase/tcb-demo-basic/ac149fd71039b299d739b85a29bb5c51f032f850/client/pages/index/user-unlogin.png -------------------------------------------------------------------------------- /client/pages/jumpto-webpage/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /client/pages/jumpto-webpage/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /client/pages/jumpto-webpage/index.wxss: -------------------------------------------------------------------------------- 1 | /* pages/jumpto-webpage/index.wxss */ -------------------------------------------------------------------------------- /client/pages/official-account/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "官方公众号", 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /client/pages/official-account/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {{official.title}} 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /client/pages/official-account/index.wxss: -------------------------------------------------------------------------------- 1 | .official-container { 2 | margin-top: 32rpx; 3 | padding: 0 32rpx; 4 | text-align: center; 5 | } 6 | .official-title { 7 | justify-content: center; 8 | color: #3D434C; 9 | font-weight: 400; 10 | margin-bottom: 16rpx; 11 | } 12 | .official-qrcode { 13 | width: 264rpx; 14 | height: 264rpx; 15 | } -------------------------------------------------------------------------------- /client/pages/pay-list/config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | payResultTmplId: 'H51CjchEtZ3SDxc3Zor3y5Uk80roylFaMchyFbiU9ac' 3 | } -------------------------------------------------------------------------------- /client/pages/pay-list/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "商品购买" 3 | } -------------------------------------------------------------------------------- /client/pages/pay-list/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 商品: {{item.name}} 10 | 价格: {{item.price / 100}} 元 11 | 17 | 18 | 19 | 20 | 21 | 22 | 23 |