├── .github └── workflows │ └── deploy.yml ├── .gitignore ├── LICENSE ├── README.md ├── main.yml ├── package.json ├── packages ├── mall-cook-document │ ├── .vuepress │ │ ├── config.js │ │ ├── public │ │ │ ├── avatar.png │ │ │ ├── bg.svg │ │ │ ├── classify.png │ │ │ ├── favicon.ico │ │ │ ├── goods-type.gif │ │ │ ├── goods.gif │ │ │ ├── iframeConfig.jpg │ │ │ ├── iframeH5.jpg │ │ │ ├── iframePath.jpg │ │ │ ├── logo.jpg │ │ │ ├── model-shop.gif │ │ │ ├── mofang.gif │ │ │ ├── official.png │ │ │ ├── propsSchema.png │ │ │ ├── real-time.gif │ │ │ ├── save.gif │ │ │ ├── start.png │ │ │ ├── swiper.gif │ │ │ └── titleProps.png │ │ └── styles │ │ │ └── palette.styl │ ├── README.md │ ├── docs │ │ ├── README.md │ │ ├── group │ │ │ └── join.md │ │ ├── product │ │ │ ├── background.md │ │ │ ├── insights.md │ │ │ └── quickLook.md │ │ └── quickLearning │ │ │ ├── changePath.md │ │ │ ├── environment.md │ │ │ ├── install.md │ │ │ └── localLaunch.md │ ├── package.json │ ├── script │ │ └── deploy-gh.sh │ └── yarn.lock ├── mall-cook-platform-electron │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ └── icon.ico │ ├── src │ │ ├── App.vue │ │ ├── main.js │ │ ├── main │ │ │ ├── config.js │ │ │ ├── main.js │ │ │ ├── menu │ │ │ │ └── index.js │ │ │ ├── shortcut │ │ │ │ └── index.js │ │ │ ├── tray │ │ │ │ ├── icon.ico │ │ │ │ └── index.js │ │ │ └── untils │ │ │ │ └── localFile.js │ │ ├── preload │ │ │ └── index.js │ │ └── render │ │ │ ├── api │ │ │ ├── goods.js │ │ │ ├── index.js │ │ │ ├── project.js │ │ │ └── user.js │ │ │ ├── assets │ │ │ └── image │ │ │ │ ├── ghost.jpg │ │ │ │ ├── logo.jpeg │ │ │ │ ├── pc-list-one-add.jpg │ │ │ │ ├── pc-list-one-cart.jpg │ │ │ │ ├── pc-list-two-add.jpg │ │ │ │ ├── pc-list-two-cart.jpg │ │ │ │ ├── pc-template-category-advert.jpg │ │ │ │ └── pc-template-category-base.jpg │ │ │ ├── components │ │ │ ├── Control │ │ │ │ ├── ControlConfig.vue │ │ │ │ ├── ControlPanel.vue │ │ │ │ ├── ControlWidgetShape.vue │ │ │ │ ├── ControlWidgets.vue │ │ │ │ └── index.vue │ │ │ ├── CreateDialog │ │ │ │ └── index.vue │ │ │ ├── IconSelect │ │ │ │ └── index.vue │ │ │ ├── ModeSelect │ │ │ │ ├── ModeSelectItem.vue │ │ │ │ └── index.vue │ │ │ ├── ModeSwitch │ │ │ │ └── index.vue │ │ │ ├── ModelsList │ │ │ │ └── index.vue │ │ │ ├── NavBar │ │ │ │ └── index.vue │ │ │ ├── PageConfig │ │ │ │ └── index.vue │ │ │ ├── QrDialog │ │ │ │ └── index.vue │ │ │ ├── SaveDialog │ │ │ │ ├── HomeCover.vue │ │ │ │ └── index.vue │ │ │ ├── SearchBar │ │ │ │ └── index.vue │ │ │ ├── SideBar │ │ │ │ └── index.vue │ │ │ ├── TopBar │ │ │ │ ├── RealTimeView.vue │ │ │ │ └── index.vue │ │ │ ├── WidgetList │ │ │ │ └── index.vue │ │ │ └── global │ │ │ │ ├── ConfigCtn.vue │ │ │ │ ├── ConfigItem.vue │ │ │ │ ├── ConfigWrap.vue │ │ │ │ ├── GitControl.vue │ │ │ │ ├── JumpSelect │ │ │ │ ├── JumpDialog.vue │ │ │ │ └── index.vue │ │ │ │ └── PhoneCtn │ │ │ │ ├── index.vue │ │ │ │ └── phone-head.png │ │ │ ├── config │ │ │ ├── global.js │ │ │ ├── mall.js │ │ │ ├── project.js │ │ │ └── schema-template.js │ │ │ ├── custom-schema-template-set │ │ │ ├── components │ │ │ │ ├── SchemaContent.vue │ │ │ │ ├── SchemaContentItem.vue │ │ │ │ ├── SchemaContentShape.vue │ │ │ │ └── SchemaExport.vue │ │ │ ├── config-template │ │ │ │ ├── SchemaArrayConfig.vue │ │ │ │ ├── SchemaCapCubeConfig.vue │ │ │ │ ├── SchemaColorConfig.vue │ │ │ │ ├── SchemaComponent.vue │ │ │ │ ├── SchemaContainerConfig.vue │ │ │ │ ├── SchemaGoodsConfig.vue │ │ │ │ ├── SchemaJumpConfig.vue │ │ │ │ ├── SchemaNumberConfig.vue │ │ │ │ ├── SchemaSelectConfig.vue │ │ │ │ ├── SchemaStringConfig.vue │ │ │ │ ├── SchemaSwitchConfig.vue │ │ │ │ ├── SchemaTimeConfig.vue │ │ │ │ ├── SchemaUploadConfig.vue │ │ │ │ └── icon.js │ │ │ └── index.vue │ │ │ ├── custom-schema-template │ │ │ ├── components │ │ │ │ ├── SchemaArray │ │ │ │ │ ├── index.vue │ │ │ │ │ └── initializing.js │ │ │ │ ├── SchemaCapCube │ │ │ │ │ ├── CapCubeLayout.vue │ │ │ │ │ ├── config.js │ │ │ │ │ ├── index.vue │ │ │ │ │ └── initializing.js │ │ │ │ ├── SchemaColor │ │ │ │ │ ├── ConfigColorPicker.vue │ │ │ │ │ ├── index.vue │ │ │ │ │ └── initializing.js │ │ │ │ ├── SchemaGoods │ │ │ │ │ ├── GoodsConfigChoose.vue │ │ │ │ │ ├── GoodsConfigList.vue │ │ │ │ │ ├── index.vue │ │ │ │ │ ├── index1.vue │ │ │ │ │ └── initializing.js │ │ │ │ ├── SchemaJump │ │ │ │ │ ├── JumpDialog.vue │ │ │ │ │ ├── index.vue │ │ │ │ │ └── initializing.js │ │ │ │ ├── SchemaNumber │ │ │ │ │ ├── index.vue │ │ │ │ │ └── initializing.js │ │ │ │ ├── SchemaObject │ │ │ │ │ ├── index.vue │ │ │ │ │ └── initializing.js │ │ │ │ ├── SchemaSelect │ │ │ │ │ ├── SelectItem.vue │ │ │ │ │ ├── index.vue │ │ │ │ │ └── initializing.js │ │ │ │ ├── SchemaString │ │ │ │ │ ├── index.vue │ │ │ │ │ └── initializing.js │ │ │ │ ├── SchemaSwitch │ │ │ │ │ ├── index.vue │ │ │ │ │ └── initializing.js │ │ │ │ ├── SchemaTime │ │ │ │ │ ├── index.vue │ │ │ │ │ └── initializing.js │ │ │ │ └── SchemaUpload │ │ │ │ │ ├── index.vue │ │ │ │ │ └── initializing.js │ │ │ └── index.vue │ │ │ ├── faim │ │ │ ├── FormDialog │ │ │ │ └── globalConfig.js │ │ │ ├── ImageUpload │ │ │ │ ├── globalConfig.js │ │ │ │ └── index.scss │ │ │ ├── RichText │ │ │ │ ├── globalConfig.js │ │ │ │ ├── index.scss │ │ │ │ ├── langs │ │ │ │ │ └── zh-Hans.js │ │ │ │ └── plugins │ │ │ │ │ ├── InsertFile.vue │ │ │ │ │ └── InsertWord.js │ │ │ └── upload.js │ │ │ ├── mixin │ │ │ ├── componentConfigMixin.js │ │ │ └── schemaMixin.js │ │ │ ├── pages │ │ │ ├── login.vue │ │ │ ├── mall │ │ │ │ ├── goods │ │ │ │ │ ├── goods-manager │ │ │ │ │ │ ├── edit.vue │ │ │ │ │ │ └── index.vue │ │ │ │ │ ├── group-manager │ │ │ │ │ │ ├── edit.vue │ │ │ │ │ │ ├── groupGoods.vue │ │ │ │ │ │ └── index.vue │ │ │ │ │ └── index.vue │ │ │ │ ├── index.vue │ │ │ │ ├── model-manage.vue │ │ │ │ ├── page-build.vue │ │ │ │ ├── pages-manage.vue │ │ │ │ └── store │ │ │ │ │ ├── category-tpl.vue │ │ │ │ │ ├── index.vue │ │ │ │ │ ├── list-tpl.vue │ │ │ │ │ ├── navigation-tpl.vue │ │ │ │ │ └── search-tpl.vue │ │ │ ├── managet.vue │ │ │ └── schema.vue │ │ │ ├── router │ │ │ └── index.js │ │ │ ├── scss │ │ │ ├── base.scss │ │ │ ├── element.scss │ │ │ ├── element │ │ │ │ ├── alert.css │ │ │ │ ├── aside.css │ │ │ │ ├── autocomplete.css │ │ │ │ ├── avatar.css │ │ │ │ ├── backtop.css │ │ │ │ ├── badge.css │ │ │ │ ├── base.css │ │ │ │ ├── breadcrumb-item.css │ │ │ │ ├── breadcrumb.css │ │ │ │ ├── button-group.css │ │ │ │ ├── button.css │ │ │ │ ├── calendar.css │ │ │ │ ├── card.css │ │ │ │ ├── carousel-item.css │ │ │ │ ├── carousel.css │ │ │ │ ├── cascader-panel.css │ │ │ │ ├── cascader.css │ │ │ │ ├── checkbox-button.css │ │ │ │ ├── checkbox-group.css │ │ │ │ ├── checkbox.css │ │ │ │ ├── col.css │ │ │ │ ├── collapse-item.css │ │ │ │ ├── collapse.css │ │ │ │ ├── color-picker.css │ │ │ │ ├── container.css │ │ │ │ ├── date-picker.css │ │ │ │ ├── dialog.css │ │ │ │ ├── display.css │ │ │ │ ├── divider.css │ │ │ │ ├── drawer.css │ │ │ │ ├── dropdown-item.css │ │ │ │ ├── dropdown-menu.css │ │ │ │ ├── dropdown.css │ │ │ │ ├── fonts │ │ │ │ │ ├── element-icons.ttf │ │ │ │ │ └── element-icons.woff │ │ │ │ ├── footer.css │ │ │ │ ├── form-item.css │ │ │ │ ├── form.css │ │ │ │ ├── header.css │ │ │ │ ├── icon.css │ │ │ │ ├── image.css │ │ │ │ ├── index.css │ │ │ │ ├── infinite-scroll.css │ │ │ │ ├── infiniteScroll.css │ │ │ │ ├── input-number.css │ │ │ │ ├── input.css │ │ │ │ ├── link.css │ │ │ │ ├── loading.css │ │ │ │ ├── main.css │ │ │ │ ├── menu-item-group.css │ │ │ │ ├── menu-item.css │ │ │ │ ├── menu.css │ │ │ │ ├── message-box.css │ │ │ │ ├── message.css │ │ │ │ ├── notification.css │ │ │ │ ├── option-group.css │ │ │ │ ├── option.css │ │ │ │ ├── page-header.css │ │ │ │ ├── pagination.css │ │ │ │ ├── popconfirm.css │ │ │ │ ├── popover.css │ │ │ │ ├── popper.css │ │ │ │ ├── progress.css │ │ │ │ ├── radio-button.css │ │ │ │ ├── radio-group.css │ │ │ │ ├── radio.css │ │ │ │ ├── rate.css │ │ │ │ ├── reset.css │ │ │ │ ├── row.css │ │ │ │ ├── scrollbar.css │ │ │ │ ├── select-dropdown.css │ │ │ │ ├── select.css │ │ │ │ ├── slider.css │ │ │ │ ├── spinner.css │ │ │ │ ├── step.css │ │ │ │ ├── steps.css │ │ │ │ ├── submenu.css │ │ │ │ ├── switch.css │ │ │ │ ├── tab-pane.css │ │ │ │ ├── table-column.css │ │ │ │ ├── table.css │ │ │ │ ├── tabs.css │ │ │ │ ├── tag.css │ │ │ │ ├── time-picker.css │ │ │ │ ├── time-select.css │ │ │ │ ├── timeline-item.css │ │ │ │ ├── timeline.css │ │ │ │ ├── tooltip.css │ │ │ │ ├── transfer.css │ │ │ │ ├── tree.css │ │ │ │ └── upload.css │ │ │ ├── iconfont.css │ │ │ ├── index.scss │ │ │ ├── mixin.scss │ │ │ ├── pc.scss │ │ │ ├── reset.scss │ │ │ ├── variable.scss │ │ │ └── yzIcon │ │ │ │ ├── a.woff │ │ │ │ ├── b.ttf │ │ │ │ ├── c.woff2 │ │ │ │ └── icon.css │ │ │ ├── store │ │ │ ├── index.js │ │ │ ├── project.js │ │ │ └── user.js │ │ │ ├── utils │ │ │ ├── adapter.js │ │ │ ├── auth.js │ │ │ ├── filters.js │ │ │ ├── globalMethods.js │ │ │ ├── globalRegister.js │ │ │ ├── jump.js │ │ │ ├── request.js │ │ │ ├── schemaRegister.js │ │ │ └── style.js │ │ │ └── widgets │ │ │ ├── McCapCube │ │ │ ├── McCapCube.vue │ │ │ └── component.json │ │ │ ├── McCountdown │ │ │ ├── McCountdown.vue │ │ │ └── component.json │ │ │ ├── McEmpty │ │ │ ├── McEmpty.vue │ │ │ └── component.json │ │ │ ├── McGoods │ │ │ ├── GoodsItem.vue │ │ │ ├── GoodsList.vue │ │ │ ├── GoodsTabs.vue │ │ │ ├── McGoods.vue │ │ │ └── component.json │ │ │ ├── McImg │ │ │ ├── McImg.vue │ │ │ └── component.json │ │ │ ├── McNotice │ │ │ ├── McNotice.vue │ │ │ ├── component.json │ │ │ └── uni-notice-bar.vue │ │ │ ├── McSearch │ │ │ ├── McSearch.vue │ │ │ └── component.json │ │ │ ├── McSwiper │ │ │ ├── McSwiper.vue │ │ │ ├── baseSwiper.vue │ │ │ └── component.json │ │ │ ├── McTab │ │ │ ├── McTab.vue │ │ │ └── component.json │ │ │ └── McTitle │ │ │ ├── McTitle.vue │ │ │ └── component.json │ ├── tsconfig.json │ ├── tsconfig.node.json │ ├── types │ │ ├── axios.d.ts │ │ ├── global │ │ │ └── global.d.ts │ │ ├── shims-vue.d.ts │ │ └── vite-env.d.ts │ └── vite.config.ts ├── mall-cook-platform │ ├── LICENSE │ ├── babel.config.js │ ├── ftpUp.js │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ └── index.html │ ├── src │ │ ├── App.vue │ │ ├── api │ │ │ ├── goods.js │ │ │ ├── project.js │ │ │ └── user.js │ │ ├── assets │ │ │ └── image │ │ │ │ ├── ghost.jpg │ │ │ │ ├── logo.jpeg │ │ │ │ ├── pc-list-one-add.jpg │ │ │ │ ├── pc-list-one-cart.jpg │ │ │ │ ├── pc-list-two-add.jpg │ │ │ │ ├── pc-list-two-cart.jpg │ │ │ │ ├── pc-template-category-advert.jpg │ │ │ │ └── pc-template-category-base.jpg │ │ ├── components │ │ │ ├── Control │ │ │ │ ├── ControlConfig.vue │ │ │ │ ├── ControlPanel.vue │ │ │ │ ├── ControlWidgetShape.vue │ │ │ │ ├── ControlWidgets.vue │ │ │ │ └── index.vue │ │ │ ├── CreateDialog │ │ │ │ └── index.vue │ │ │ ├── IconSelect │ │ │ │ └── index.vue │ │ │ ├── ModeSelect │ │ │ │ ├── ModeSelectItem.vue │ │ │ │ └── index.vue │ │ │ ├── ModeSwitch │ │ │ │ └── index.vue │ │ │ ├── ModelsList │ │ │ │ └── index.vue │ │ │ ├── NavBar │ │ │ │ └── index.vue │ │ │ ├── PageConfig │ │ │ │ └── index.vue │ │ │ ├── QrDialog │ │ │ │ └── index.vue │ │ │ ├── SaveDialog │ │ │ │ ├── HomeCover.vue │ │ │ │ └── index.vue │ │ │ ├── SearchBar │ │ │ │ └── index.vue │ │ │ ├── SideBar │ │ │ │ └── index.vue │ │ │ ├── TopBar │ │ │ │ ├── RealTimeView.vue │ │ │ │ └── index.vue │ │ │ ├── WidgetList │ │ │ │ └── index.vue │ │ │ └── global │ │ │ │ ├── ConfigCtn.vue │ │ │ │ ├── ConfigItem.vue │ │ │ │ ├── ConfigWrap.vue │ │ │ │ ├── GitControl.vue │ │ │ │ ├── JumpSelect │ │ │ │ ├── JumpDialog.vue │ │ │ │ └── index.vue │ │ │ │ └── PhoneCtn │ │ │ │ ├── index.vue │ │ │ │ └── phone-head.png │ │ ├── config │ │ │ ├── global.js │ │ │ ├── mall.js │ │ │ ├── project.js │ │ │ └── schema-template.js │ │ ├── custom-schema-template-set │ │ │ ├── components │ │ │ │ ├── SchemaContent.vue │ │ │ │ ├── SchemaContentItem.vue │ │ │ │ ├── SchemaContentShape.vue │ │ │ │ └── SchemaExport.vue │ │ │ ├── config-template │ │ │ │ ├── SchemaArrayConfig.vue │ │ │ │ ├── SchemaCapCubeConfig.vue │ │ │ │ ├── SchemaColorConfig.vue │ │ │ │ ├── SchemaComponent.vue │ │ │ │ ├── SchemaContainerConfig.vue │ │ │ │ ├── SchemaGoodsConfig.vue │ │ │ │ ├── SchemaJumpConfig.vue │ │ │ │ ├── SchemaNumberConfig.vue │ │ │ │ ├── SchemaSelectConfig.vue │ │ │ │ ├── SchemaStringConfig.vue │ │ │ │ ├── SchemaSwitchConfig.vue │ │ │ │ ├── SchemaTimeConfig.vue │ │ │ │ ├── SchemaUploadConfig.vue │ │ │ │ └── icon.js │ │ │ └── index.vue │ │ ├── custom-schema-template │ │ │ ├── components │ │ │ │ ├── SchemaArray │ │ │ │ │ ├── index.vue │ │ │ │ │ └── initializing.js │ │ │ │ ├── SchemaCapCube │ │ │ │ │ ├── CapCubeLayout.vue │ │ │ │ │ ├── config.js │ │ │ │ │ ├── index.vue │ │ │ │ │ └── initializing.js │ │ │ │ ├── SchemaColor │ │ │ │ │ ├── ConfigColorPicker.vue │ │ │ │ │ ├── index.vue │ │ │ │ │ └── initializing.js │ │ │ │ ├── SchemaGoods │ │ │ │ │ ├── GoodsConfigChoose.vue │ │ │ │ │ ├── GoodsConfigList.vue │ │ │ │ │ ├── index.vue │ │ │ │ │ ├── index1.vue │ │ │ │ │ └── initializing.js │ │ │ │ ├── SchemaJump │ │ │ │ │ ├── JumpDialog.vue │ │ │ │ │ ├── index.vue │ │ │ │ │ └── initializing.js │ │ │ │ ├── SchemaNumber │ │ │ │ │ ├── index.vue │ │ │ │ │ └── initializing.js │ │ │ │ ├── SchemaObject │ │ │ │ │ ├── index.vue │ │ │ │ │ └── initializing.js │ │ │ │ ├── SchemaSelect │ │ │ │ │ ├── SelectItem.vue │ │ │ │ │ ├── index.vue │ │ │ │ │ └── initializing.js │ │ │ │ ├── SchemaString │ │ │ │ │ ├── index.vue │ │ │ │ │ └── initializing.js │ │ │ │ ├── SchemaSwitch │ │ │ │ │ ├── index.vue │ │ │ │ │ └── initializing.js │ │ │ │ ├── SchemaTime │ │ │ │ │ ├── index.vue │ │ │ │ │ └── initializing.js │ │ │ │ └── SchemaUpload │ │ │ │ │ ├── index.vue │ │ │ │ │ └── initializing.js │ │ │ └── index.vue │ │ ├── faim │ │ │ ├── FormDialog │ │ │ │ └── globalConfig.js │ │ │ ├── ImageUpload │ │ │ │ ├── globalConfig.js │ │ │ │ └── index.scss │ │ │ ├── RichText │ │ │ │ ├── globalConfig.js │ │ │ │ ├── index.scss │ │ │ │ ├── langs │ │ │ │ │ └── zh-Hans.js │ │ │ │ └── plugins │ │ │ │ │ ├── InsertFile.vue │ │ │ │ │ └── InsertWord.js │ │ │ └── upload.js │ │ ├── main.js │ │ ├── mixin │ │ │ ├── componentConfigMixin.js │ │ │ └── schemaMixin.js │ │ ├── pages │ │ │ ├── login.vue │ │ │ ├── mall │ │ │ │ ├── goods │ │ │ │ │ ├── goods-manager │ │ │ │ │ │ ├── edit.vue │ │ │ │ │ │ └── index.vue │ │ │ │ │ ├── group-manager │ │ │ │ │ │ ├── edit.vue │ │ │ │ │ │ ├── groupGoods.vue │ │ │ │ │ │ └── index.vue │ │ │ │ │ └── index.vue │ │ │ │ ├── index.vue │ │ │ │ ├── model-manage.vue │ │ │ │ ├── page-build.vue │ │ │ │ ├── pages-manage.vue │ │ │ │ └── store │ │ │ │ │ ├── category-tpl.vue │ │ │ │ │ ├── index.vue │ │ │ │ │ ├── list-tpl.vue │ │ │ │ │ ├── navigation-tpl.vue │ │ │ │ │ └── search-tpl.vue │ │ │ ├── managet.vue │ │ │ └── schema.vue │ │ ├── router │ │ │ └── index.js │ │ ├── scss │ │ │ ├── base.scss │ │ │ ├── element-#82AAF1 │ │ │ │ ├── alert.css │ │ │ │ ├── aside.css │ │ │ │ ├── autocomplete.css │ │ │ │ ├── avatar.css │ │ │ │ ├── backtop.css │ │ │ │ ├── badge.css │ │ │ │ ├── base.css │ │ │ │ ├── breadcrumb-item.css │ │ │ │ ├── breadcrumb.css │ │ │ │ ├── button-group.css │ │ │ │ ├── button.css │ │ │ │ ├── calendar.css │ │ │ │ ├── card.css │ │ │ │ ├── carousel-item.css │ │ │ │ ├── carousel.css │ │ │ │ ├── cascader-panel.css │ │ │ │ ├── cascader.css │ │ │ │ ├── checkbox-button.css │ │ │ │ ├── checkbox-group.css │ │ │ │ ├── checkbox.css │ │ │ │ ├── col.css │ │ │ │ ├── collapse-item.css │ │ │ │ ├── collapse.css │ │ │ │ ├── color-picker.css │ │ │ │ ├── container.css │ │ │ │ ├── date-picker.css │ │ │ │ ├── dialog.css │ │ │ │ ├── display.css │ │ │ │ ├── divider.css │ │ │ │ ├── drawer.css │ │ │ │ ├── dropdown-item.css │ │ │ │ ├── dropdown-menu.css │ │ │ │ ├── dropdown.css │ │ │ │ ├── fonts │ │ │ │ │ ├── element-icons.ttf │ │ │ │ │ └── element-icons.woff │ │ │ │ ├── footer.css │ │ │ │ ├── form-item.css │ │ │ │ ├── form.css │ │ │ │ ├── header.css │ │ │ │ ├── icon.css │ │ │ │ ├── image.css │ │ │ │ ├── index.css │ │ │ │ ├── infinite-scroll.css │ │ │ │ ├── infiniteScroll.css │ │ │ │ ├── input-number.css │ │ │ │ ├── input.css │ │ │ │ ├── link.css │ │ │ │ ├── loading.css │ │ │ │ ├── main.css │ │ │ │ ├── menu-item-group.css │ │ │ │ ├── menu-item.css │ │ │ │ ├── menu.css │ │ │ │ ├── message-box.css │ │ │ │ ├── message.css │ │ │ │ ├── notification.css │ │ │ │ ├── option-group.css │ │ │ │ ├── option.css │ │ │ │ ├── page-header.css │ │ │ │ ├── pagination.css │ │ │ │ ├── popconfirm.css │ │ │ │ ├── popover.css │ │ │ │ ├── popper.css │ │ │ │ ├── progress.css │ │ │ │ ├── radio-button.css │ │ │ │ ├── radio-group.css │ │ │ │ ├── radio.css │ │ │ │ ├── rate.css │ │ │ │ ├── reset.css │ │ │ │ ├── row.css │ │ │ │ ├── scrollbar.css │ │ │ │ ├── select-dropdown.css │ │ │ │ ├── select.css │ │ │ │ ├── slider.css │ │ │ │ ├── spinner.css │ │ │ │ ├── step.css │ │ │ │ ├── steps.css │ │ │ │ ├── submenu.css │ │ │ │ ├── switch.css │ │ │ │ ├── tab-pane.css │ │ │ │ ├── table-column.css │ │ │ │ ├── table.css │ │ │ │ ├── tabs.css │ │ │ │ ├── tag.css │ │ │ │ ├── time-picker.css │ │ │ │ ├── time-select.css │ │ │ │ ├── timeline-item.css │ │ │ │ ├── timeline.css │ │ │ │ ├── tooltip.css │ │ │ │ ├── transfer.css │ │ │ │ ├── tree.css │ │ │ │ └── upload.css │ │ │ ├── element.scss │ │ │ ├── index.scss │ │ │ ├── mixin.scss │ │ │ ├── pc.scss │ │ │ ├── reset.scss │ │ │ ├── variable.scss │ │ │ └── yzIcon │ │ │ │ ├── a.woff │ │ │ │ ├── b.ttf │ │ │ │ ├── c.woff2 │ │ │ │ └── icon.css │ │ ├── store │ │ │ ├── index.js │ │ │ ├── project.js │ │ │ └── user.js │ │ └── utils │ │ │ ├── adapter.js │ │ │ ├── auth.js │ │ │ ├── filters.js │ │ │ ├── globalMethods.js │ │ │ ├── globalRegister.js │ │ │ ├── jump.js │ │ │ ├── request.js │ │ │ ├── schemaRegister.js │ │ │ └── style.js │ ├── vue.config.js │ └── yarn.lock └── mall-cook-template │ ├── README.md │ ├── babel.config.js │ ├── package.json │ ├── postcss.config.js │ ├── public │ └── index.html │ ├── src │ ├── App.vue │ ├── api │ │ └── index.js │ ├── common │ │ ├── customType.js │ │ └── myMenu.js │ ├── components │ │ ├── car-list.vue │ │ ├── custom-capsule.vue │ │ ├── custom-tab-bar.vue │ │ ├── custom-top-bar.vue │ │ ├── full-loading.vue │ │ ├── global │ │ │ ├── global-page.vue │ │ │ └── global-tab-page.vue │ │ ├── goods-list.vue │ │ ├── page-blili.vue │ │ ├── page-git.vue │ │ ├── page-juejin.vue │ │ ├── render-widget.vue │ │ ├── review-page.vue │ │ ├── submit-bar.vue │ │ ├── tabbar-page │ │ │ ├── car-page.vue │ │ │ ├── category-page.vue │ │ │ ├── custom-page.vue │ │ │ ├── index.vue │ │ │ └── my-page.vue │ │ ├── waiting-cmp │ │ │ ├── index.vue │ │ │ └── waiting.jpg │ │ └── widget-shape.vue │ ├── main.js │ ├── manifest.json │ ├── pages.json │ ├── pages │ │ ├── build │ │ │ └── build.vue │ │ └── index │ │ │ ├── custom │ │ │ └── custom.vue │ │ │ ├── goods │ │ │ ├── detail.vue │ │ │ ├── list.vue │ │ │ └── search.vue │ │ │ ├── tabbar │ │ │ ├── home.vue │ │ │ ├── tab-frist.vue │ │ │ ├── tab-second.vue │ │ │ └── tab-third.vue │ │ │ └── user │ │ │ └── login.vue │ ├── scss │ │ ├── base.scss │ │ ├── element.scss │ │ ├── imgpond.scss │ │ ├── index.scss │ │ ├── mixin.scss │ │ ├── pc.scss │ │ ├── reset.scss │ │ └── variable.scss │ ├── static │ │ ├── checked.png │ │ ├── font │ │ │ └── iconfont.css │ │ ├── goods-lazy-load.png │ │ ├── h5-icon-car.png │ │ ├── icon │ │ │ ├── close_white.png │ │ │ ├── del.png │ │ │ ├── hot.png │ │ │ ├── search.png │ │ │ ├── title_left.png │ │ │ └── title_right.png │ │ ├── logo.png │ │ ├── unchecked.png │ │ └── user │ │ │ ├── daifukuan.png │ │ │ ├── daipingjia.png │ │ │ ├── daishouhuo.png │ │ │ ├── hongbao.png │ │ │ ├── kefu.png │ │ │ ├── liulanjilu.png │ │ │ ├── qianbao.png │ │ │ ├── shoucang.png │ │ │ ├── shouhou.png │ │ │ ├── update.png │ │ │ ├── xianxiamendian.png │ │ │ ├── xieyiguize.png │ │ │ ├── yonghufankui.png │ │ │ ├── youhuiquan.png │ │ │ └── zizhizhengzhao.png │ ├── store │ │ ├── index.js │ │ ├── order.js │ │ ├── project.js │ │ └── user.js │ ├── uni.scss │ ├── utils │ │ ├── filters.js │ │ ├── globalJump.js │ │ ├── parseQueryString.js │ │ ├── registerBaseStyle.js │ │ ├── request.js │ │ └── vuedraggable.umd.min.js │ └── widgets │ │ ├── McCapCube │ │ ├── McCapCube.vue │ │ └── component.json │ │ ├── McCountdown │ │ ├── McCountdown.vue │ │ └── component.json │ │ ├── McEmpty │ │ ├── McEmpty.vue │ │ └── component.json │ │ ├── McGoods │ │ ├── GoodsItem.vue │ │ ├── GoodsList.vue │ │ ├── GoodsTabs.vue │ │ ├── McGoods.vue │ │ └── component.json │ │ ├── McImg │ │ ├── McImg.vue │ │ └── component.json │ │ ├── McNotice │ │ ├── McNotice.vue │ │ ├── component.json │ │ └── uni-notice-bar.vue │ │ ├── McSearch │ │ ├── McSearch.vue │ │ └── component.json │ │ ├── McSwiper │ │ ├── McSwiper.vue │ │ ├── baseSwiper.vue │ │ └── component.json │ │ ├── McTab │ │ ├── McTab.vue │ │ └── component.json │ │ └── McTitle │ │ ├── McTitle.vue │ │ └── component.json │ └── yarn.lock ├── scripts ├── build.js ├── dev.js └── install.js ├── static ├── MallCook-Build.gif ├── MallCook-Cube.gif ├── MallCook-Goods.gif ├── MallCook-Model.gif ├── MallCook-Schema.gif ├── MallCook-Start.png ├── donate.jpg ├── kuaitu.png ├── logo.jpg ├── official.png └── yunda.png └── yarn.lock /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/README.md -------------------------------------------------------------------------------- /main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/main.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/package.json -------------------------------------------------------------------------------- /packages/mall-cook-document/.vuepress/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-document/.vuepress/config.js -------------------------------------------------------------------------------- /packages/mall-cook-document/.vuepress/public/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-document/.vuepress/public/avatar.png -------------------------------------------------------------------------------- /packages/mall-cook-document/.vuepress/public/bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-document/.vuepress/public/bg.svg -------------------------------------------------------------------------------- /packages/mall-cook-document/.vuepress/public/classify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-document/.vuepress/public/classify.png -------------------------------------------------------------------------------- /packages/mall-cook-document/.vuepress/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-document/.vuepress/public/favicon.ico -------------------------------------------------------------------------------- /packages/mall-cook-document/.vuepress/public/goods-type.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-document/.vuepress/public/goods-type.gif -------------------------------------------------------------------------------- /packages/mall-cook-document/.vuepress/public/goods.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-document/.vuepress/public/goods.gif -------------------------------------------------------------------------------- /packages/mall-cook-document/.vuepress/public/iframeConfig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-document/.vuepress/public/iframeConfig.jpg -------------------------------------------------------------------------------- /packages/mall-cook-document/.vuepress/public/iframeH5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-document/.vuepress/public/iframeH5.jpg -------------------------------------------------------------------------------- /packages/mall-cook-document/.vuepress/public/iframePath.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-document/.vuepress/public/iframePath.jpg -------------------------------------------------------------------------------- /packages/mall-cook-document/.vuepress/public/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-document/.vuepress/public/logo.jpg -------------------------------------------------------------------------------- /packages/mall-cook-document/.vuepress/public/model-shop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-document/.vuepress/public/model-shop.gif -------------------------------------------------------------------------------- /packages/mall-cook-document/.vuepress/public/mofang.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-document/.vuepress/public/mofang.gif -------------------------------------------------------------------------------- /packages/mall-cook-document/.vuepress/public/official.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-document/.vuepress/public/official.png -------------------------------------------------------------------------------- /packages/mall-cook-document/.vuepress/public/propsSchema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-document/.vuepress/public/propsSchema.png -------------------------------------------------------------------------------- /packages/mall-cook-document/.vuepress/public/real-time.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-document/.vuepress/public/real-time.gif -------------------------------------------------------------------------------- /packages/mall-cook-document/.vuepress/public/save.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-document/.vuepress/public/save.gif -------------------------------------------------------------------------------- /packages/mall-cook-document/.vuepress/public/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-document/.vuepress/public/start.png -------------------------------------------------------------------------------- /packages/mall-cook-document/.vuepress/public/swiper.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-document/.vuepress/public/swiper.gif -------------------------------------------------------------------------------- /packages/mall-cook-document/.vuepress/public/titleProps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-document/.vuepress/public/titleProps.png -------------------------------------------------------------------------------- /packages/mall-cook-document/.vuepress/styles/palette.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-document/.vuepress/styles/palette.styl -------------------------------------------------------------------------------- /packages/mall-cook-document/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-document/README.md -------------------------------------------------------------------------------- /packages/mall-cook-document/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-document/docs/README.md -------------------------------------------------------------------------------- /packages/mall-cook-document/docs/group/join.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-document/docs/group/join.md -------------------------------------------------------------------------------- /packages/mall-cook-document/docs/product/background.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-document/docs/product/background.md -------------------------------------------------------------------------------- /packages/mall-cook-document/docs/product/insights.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-document/docs/product/insights.md -------------------------------------------------------------------------------- /packages/mall-cook-document/docs/product/quickLook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-document/docs/product/quickLook.md -------------------------------------------------------------------------------- /packages/mall-cook-document/docs/quickLearning/changePath.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-document/docs/quickLearning/changePath.md -------------------------------------------------------------------------------- /packages/mall-cook-document/docs/quickLearning/environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-document/docs/quickLearning/environment.md -------------------------------------------------------------------------------- /packages/mall-cook-document/docs/quickLearning/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-document/docs/quickLearning/install.md -------------------------------------------------------------------------------- /packages/mall-cook-document/docs/quickLearning/localLaunch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-document/docs/quickLearning/localLaunch.md -------------------------------------------------------------------------------- /packages/mall-cook-document/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-document/package.json -------------------------------------------------------------------------------- /packages/mall-cook-document/script/deploy-gh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-document/script/deploy-gh.sh -------------------------------------------------------------------------------- /packages/mall-cook-document/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-document/yarn.lock -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/.gitignore -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/README.md -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/index.html -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/package-lock.json -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/package.json -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/public/favicon.ico -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/public/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/public/icon.ico -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/App.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/main.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/main/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/main/config.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/main/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/main/main.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/main/menu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/main/menu/index.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/main/shortcut/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/main/shortcut/index.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/main/tray/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/main/tray/icon.ico -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/main/tray/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/main/tray/index.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/main/untils/localFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/main/untils/localFile.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/preload/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/preload/index.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/api/goods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/api/goods.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/api/index.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/api/project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/api/project.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/api/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/api/user.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/assets/image/ghost.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/assets/image/ghost.jpg -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/assets/image/logo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/assets/image/logo.jpeg -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/assets/image/pc-list-one-add.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/assets/image/pc-list-one-add.jpg -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/assets/image/pc-list-one-cart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/assets/image/pc-list-one-cart.jpg -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/assets/image/pc-list-two-add.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/assets/image/pc-list-two-add.jpg -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/assets/image/pc-list-two-cart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/assets/image/pc-list-two-cart.jpg -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/assets/image/pc-template-category-advert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/assets/image/pc-template-category-advert.jpg -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/assets/image/pc-template-category-base.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/assets/image/pc-template-category-base.jpg -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/components/Control/ControlConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/components/Control/ControlConfig.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/components/Control/ControlPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/components/Control/ControlPanel.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/components/Control/ControlWidgetShape.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/components/Control/ControlWidgetShape.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/components/Control/ControlWidgets.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/components/Control/ControlWidgets.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/components/Control/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/components/Control/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/components/CreateDialog/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/components/CreateDialog/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/components/IconSelect/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/components/IconSelect/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/components/ModeSelect/ModeSelectItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/components/ModeSelect/ModeSelectItem.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/components/ModeSelect/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/components/ModeSelect/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/components/ModeSwitch/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/components/ModeSwitch/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/components/ModelsList/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/components/ModelsList/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/components/NavBar/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/components/NavBar/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/components/PageConfig/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/components/PageConfig/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/components/QrDialog/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/components/QrDialog/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/components/SaveDialog/HomeCover.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/components/SaveDialog/HomeCover.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/components/SaveDialog/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/components/SaveDialog/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/components/SearchBar/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/components/SearchBar/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/components/SideBar/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/components/SideBar/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/components/TopBar/RealTimeView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/components/TopBar/RealTimeView.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/components/TopBar/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/components/TopBar/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/components/WidgetList/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/components/WidgetList/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/components/global/ConfigCtn.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/components/global/ConfigCtn.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/components/global/ConfigItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/components/global/ConfigItem.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/components/global/ConfigWrap.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/components/global/ConfigWrap.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/components/global/GitControl.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/components/global/GitControl.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/components/global/JumpSelect/JumpDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/components/global/JumpSelect/JumpDialog.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/components/global/JumpSelect/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/components/global/JumpSelect/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/components/global/PhoneCtn/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/components/global/PhoneCtn/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/components/global/PhoneCtn/phone-head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/components/global/PhoneCtn/phone-head.png -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/config/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/config/global.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/config/mall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/config/mall.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/config/project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/config/project.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/config/schema-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/config/schema-template.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/custom-schema-template-set/components/SchemaContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/custom-schema-template-set/components/SchemaContent.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/custom-schema-template-set/components/SchemaContentItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/custom-schema-template-set/components/SchemaContentItem.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/custom-schema-template-set/components/SchemaContentShape.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/custom-schema-template-set/components/SchemaContentShape.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/custom-schema-template-set/components/SchemaExport.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/custom-schema-template-set/components/SchemaExport.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/custom-schema-template-set/config-template/SchemaComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/custom-schema-template-set/config-template/SchemaComponent.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/custom-schema-template-set/config-template/icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/custom-schema-template-set/config-template/icon.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/custom-schema-template-set/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/custom-schema-template-set/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaArray/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaArray/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaArray/initializing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaArray/initializing.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaCapCube/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaCapCube/config.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaCapCube/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaCapCube/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaColor/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaColor/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaColor/initializing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaColor/initializing.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaGoods/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaGoods/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaGoods/index1.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaGoods/index1.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaGoods/initializing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaGoods/initializing.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaJump/JumpDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaJump/JumpDialog.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaJump/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaJump/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaJump/initializing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaJump/initializing.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaNumber/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaNumber/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaNumber/initializing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaNumber/initializing.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaObject/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaObject/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaObject/initializing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaObject/initializing.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaSelect/SelectItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaSelect/SelectItem.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaSelect/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaSelect/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaSelect/initializing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaSelect/initializing.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaString/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaString/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaString/initializing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaString/initializing.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaSwitch/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaSwitch/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaSwitch/initializing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaSwitch/initializing.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaTime/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaTime/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaTime/initializing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaTime/initializing.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaUpload/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaUpload/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaUpload/initializing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/custom-schema-template/components/SchemaUpload/initializing.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/custom-schema-template/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/custom-schema-template/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/faim/FormDialog/globalConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/faim/FormDialog/globalConfig.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/faim/ImageUpload/globalConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/faim/ImageUpload/globalConfig.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/faim/ImageUpload/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/faim/ImageUpload/index.scss -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/faim/RichText/globalConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/faim/RichText/globalConfig.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/faim/RichText/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/faim/RichText/index.scss -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/faim/RichText/langs/zh-Hans.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/faim/RichText/langs/zh-Hans.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/faim/RichText/plugins/InsertFile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/faim/RichText/plugins/InsertFile.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/faim/RichText/plugins/InsertWord.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/faim/RichText/plugins/InsertWord.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/faim/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/faim/upload.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/mixin/componentConfigMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/mixin/componentConfigMixin.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/mixin/schemaMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/mixin/schemaMixin.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/pages/login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/pages/login.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/pages/mall/goods/goods-manager/edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/pages/mall/goods/goods-manager/edit.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/pages/mall/goods/goods-manager/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/pages/mall/goods/goods-manager/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/pages/mall/goods/group-manager/edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/pages/mall/goods/group-manager/edit.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/pages/mall/goods/group-manager/groupGoods.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/pages/mall/goods/group-manager/groupGoods.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/pages/mall/goods/group-manager/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/pages/mall/goods/group-manager/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/pages/mall/goods/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/pages/mall/goods/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/pages/mall/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/pages/mall/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/pages/mall/model-manage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/pages/mall/model-manage.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/pages/mall/page-build.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/pages/mall/page-build.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/pages/mall/pages-manage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/pages/mall/pages-manage.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/pages/mall/store/category-tpl.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/pages/mall/store/category-tpl.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/pages/mall/store/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/pages/mall/store/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/pages/mall/store/list-tpl.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/pages/mall/store/list-tpl.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/pages/mall/store/navigation-tpl.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/pages/mall/store/navigation-tpl.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/pages/mall/store/search-tpl.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/pages/mall/store/search-tpl.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/pages/managet.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/pages/managet.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/pages/schema.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/pages/schema.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/router/index.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/base.scss -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element.scss -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/alert.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/alert.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/aside.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/aside.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/autocomplete.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/avatar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/avatar.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/backtop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/backtop.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/badge.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/badge.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/base.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/breadcrumb-item.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/breadcrumb.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/breadcrumb.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/button-group.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/button.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/calendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/calendar.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/card.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/card.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/carousel-item.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/carousel-item.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/carousel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/carousel.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/cascader-panel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/cascader-panel.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/cascader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/cascader.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/checkbox-button.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/checkbox-group.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/checkbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/checkbox.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/col.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/col.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/collapse-item.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/collapse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/collapse.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/color-picker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/color-picker.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/container.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/container.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/date-picker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/date-picker.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/dialog.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/display.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/display.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/divider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/divider.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/drawer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/drawer.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/dropdown-item.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/dropdown-menu.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/dropdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/dropdown.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/fonts/element-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/fonts/element-icons.ttf -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/fonts/element-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/fonts/element-icons.woff -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/footer.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/form-item.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/form.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/header.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/icon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/icon.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/image.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/image.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/index.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/infinite-scroll.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/infiniteScroll.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/input-number.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/input-number.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/input.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/link.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/link.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/loading.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/loading.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/main.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/menu-item-group.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/menu-item.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/menu.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/message-box.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/message-box.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/message.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/message.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/notification.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/notification.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/option-group.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/option-group.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/option.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/option.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/page-header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/page-header.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/pagination.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/pagination.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/popconfirm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/popconfirm.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/popover.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/popover.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/popper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/popper.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/progress.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/progress.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/radio-button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/radio-button.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/radio-group.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/radio-group.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/radio.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/radio.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/rate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/rate.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/reset.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/row.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/row.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/scrollbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/scrollbar.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/select-dropdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/select-dropdown.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/select.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/select.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/slider.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/spinner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/spinner.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/step.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/step.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/steps.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/steps.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/submenu.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/switch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/switch.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/tab-pane.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/table-column.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/table-column.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/table.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/tabs.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/tag.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/tag.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/time-picker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/time-picker.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/time-select.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/time-select.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/timeline-item.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/timeline-item.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/timeline.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/timeline.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/tooltip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/tooltip.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/transfer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/transfer.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/tree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/tree.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/element/upload.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/element/upload.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/iconfont.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/iconfont.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/index.scss -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/mixin.scss -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/pc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/pc.scss -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/reset.scss -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/variable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/variable.scss -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/yzIcon/a.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/yzIcon/a.woff -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/yzIcon/b.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/yzIcon/b.ttf -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/yzIcon/c.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/yzIcon/c.woff2 -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/scss/yzIcon/icon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/scss/yzIcon/icon.css -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/store/index.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/store/project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/store/project.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/store/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/store/user.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/utils/adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/utils/adapter.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/utils/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/utils/auth.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/utils/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/utils/filters.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/utils/globalMethods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/utils/globalMethods.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/utils/globalRegister.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/utils/globalRegister.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/utils/jump.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/utils/jump.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/utils/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/utils/request.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/utils/schemaRegister.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/utils/schemaRegister.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/utils/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/utils/style.js -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/widgets/McCapCube/McCapCube.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/widgets/McCapCube/McCapCube.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/widgets/McCapCube/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/widgets/McCapCube/component.json -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/widgets/McCountdown/McCountdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/widgets/McCountdown/McCountdown.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/widgets/McCountdown/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/widgets/McCountdown/component.json -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/widgets/McEmpty/McEmpty.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/widgets/McEmpty/McEmpty.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/widgets/McEmpty/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/widgets/McEmpty/component.json -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/widgets/McGoods/GoodsItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/widgets/McGoods/GoodsItem.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/widgets/McGoods/GoodsList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/widgets/McGoods/GoodsList.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/widgets/McGoods/GoodsTabs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/widgets/McGoods/GoodsTabs.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/widgets/McGoods/McGoods.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/widgets/McGoods/McGoods.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/widgets/McGoods/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/widgets/McGoods/component.json -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/widgets/McImg/McImg.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/widgets/McImg/McImg.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/widgets/McImg/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/widgets/McImg/component.json -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/widgets/McNotice/McNotice.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/widgets/McNotice/McNotice.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/widgets/McNotice/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/widgets/McNotice/component.json -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/widgets/McNotice/uni-notice-bar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/widgets/McNotice/uni-notice-bar.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/widgets/McSearch/McSearch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/widgets/McSearch/McSearch.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/widgets/McSearch/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/widgets/McSearch/component.json -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/widgets/McSwiper/McSwiper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/widgets/McSwiper/McSwiper.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/widgets/McSwiper/baseSwiper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/widgets/McSwiper/baseSwiper.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/widgets/McSwiper/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/widgets/McSwiper/component.json -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/widgets/McTab/McTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/widgets/McTab/McTab.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/widgets/McTab/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/widgets/McTab/component.json -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/widgets/McTitle/McTitle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/widgets/McTitle/McTitle.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/src/render/widgets/McTitle/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/src/render/widgets/McTitle/component.json -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/tsconfig.json -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/tsconfig.node.json -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/types/axios.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/types/axios.d.ts -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/types/global/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/types/global/global.d.ts -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/types/shims-vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/types/shims-vue.d.ts -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/types/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/types/vite-env.d.ts -------------------------------------------------------------------------------- /packages/mall-cook-platform-electron/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform-electron/vite.config.ts -------------------------------------------------------------------------------- /packages/mall-cook-platform/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/LICENSE -------------------------------------------------------------------------------- /packages/mall-cook-platform/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/babel.config.js -------------------------------------------------------------------------------- /packages/mall-cook-platform/ftpUp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/ftpUp.js -------------------------------------------------------------------------------- /packages/mall-cook-platform/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/package-lock.json -------------------------------------------------------------------------------- /packages/mall-cook-platform/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/package.json -------------------------------------------------------------------------------- /packages/mall-cook-platform/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/public/favicon.ico -------------------------------------------------------------------------------- /packages/mall-cook-platform/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/public/index.html -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/App.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/api/goods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/api/goods.js -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/api/project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/api/project.js -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/api/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/api/user.js -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/assets/image/ghost.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/assets/image/ghost.jpg -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/assets/image/logo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/assets/image/logo.jpeg -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/assets/image/pc-list-one-add.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/assets/image/pc-list-one-add.jpg -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/assets/image/pc-list-one-cart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/assets/image/pc-list-one-cart.jpg -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/assets/image/pc-list-two-add.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/assets/image/pc-list-two-add.jpg -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/assets/image/pc-list-two-cart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/assets/image/pc-list-two-cart.jpg -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/assets/image/pc-template-category-advert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/assets/image/pc-template-category-advert.jpg -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/assets/image/pc-template-category-base.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/assets/image/pc-template-category-base.jpg -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/components/Control/ControlConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/components/Control/ControlConfig.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/components/Control/ControlPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/components/Control/ControlPanel.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/components/Control/ControlWidgetShape.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/components/Control/ControlWidgetShape.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/components/Control/ControlWidgets.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/components/Control/ControlWidgets.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/components/Control/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/components/Control/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/components/CreateDialog/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/components/CreateDialog/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/components/IconSelect/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/components/IconSelect/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/components/ModeSelect/ModeSelectItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/components/ModeSelect/ModeSelectItem.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/components/ModeSelect/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/components/ModeSelect/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/components/ModeSwitch/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/components/ModeSwitch/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/components/ModelsList/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/components/ModelsList/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/components/NavBar/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/components/NavBar/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/components/PageConfig/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/components/PageConfig/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/components/QrDialog/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/components/QrDialog/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/components/SaveDialog/HomeCover.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/components/SaveDialog/HomeCover.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/components/SaveDialog/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/components/SaveDialog/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/components/SearchBar/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/components/SearchBar/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/components/SideBar/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/components/SideBar/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/components/TopBar/RealTimeView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/components/TopBar/RealTimeView.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/components/TopBar/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/components/TopBar/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/components/WidgetList/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/components/WidgetList/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/components/global/ConfigCtn.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/components/global/ConfigCtn.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/components/global/ConfigItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/components/global/ConfigItem.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/components/global/ConfigWrap.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/components/global/ConfigWrap.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/components/global/GitControl.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/components/global/GitControl.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/components/global/JumpSelect/JumpDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/components/global/JumpSelect/JumpDialog.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/components/global/JumpSelect/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/components/global/JumpSelect/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/components/global/PhoneCtn/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/components/global/PhoneCtn/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/components/global/PhoneCtn/phone-head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/components/global/PhoneCtn/phone-head.png -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/config/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/config/global.js -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/config/mall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/config/mall.js -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/config/project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/config/project.js -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/config/schema-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/config/schema-template.js -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template-set/components/SchemaContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template-set/components/SchemaContent.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template-set/components/SchemaContentItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template-set/components/SchemaContentItem.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template-set/components/SchemaContentShape.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template-set/components/SchemaContentShape.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template-set/components/SchemaExport.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template-set/components/SchemaExport.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template-set/config-template/SchemaArrayConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template-set/config-template/SchemaArrayConfig.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template-set/config-template/SchemaCapCubeConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template-set/config-template/SchemaCapCubeConfig.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template-set/config-template/SchemaColorConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template-set/config-template/SchemaColorConfig.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template-set/config-template/SchemaComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template-set/config-template/SchemaComponent.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template-set/config-template/SchemaContainerConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template-set/config-template/SchemaContainerConfig.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template-set/config-template/SchemaGoodsConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template-set/config-template/SchemaGoodsConfig.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template-set/config-template/SchemaJumpConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template-set/config-template/SchemaJumpConfig.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template-set/config-template/SchemaNumberConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template-set/config-template/SchemaNumberConfig.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template-set/config-template/SchemaSelectConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template-set/config-template/SchemaSelectConfig.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template-set/config-template/SchemaStringConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template-set/config-template/SchemaStringConfig.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template-set/config-template/SchemaSwitchConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template-set/config-template/SchemaSwitchConfig.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template-set/config-template/SchemaTimeConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template-set/config-template/SchemaTimeConfig.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template-set/config-template/SchemaUploadConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template-set/config-template/SchemaUploadConfig.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template-set/config-template/icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template-set/config-template/icon.js -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template-set/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template-set/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template/components/SchemaArray/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template/components/SchemaArray/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template/components/SchemaArray/initializing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template/components/SchemaArray/initializing.js -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template/components/SchemaCapCube/CapCubeLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template/components/SchemaCapCube/CapCubeLayout.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template/components/SchemaCapCube/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template/components/SchemaCapCube/config.js -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template/components/SchemaCapCube/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template/components/SchemaCapCube/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template/components/SchemaCapCube/initializing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template/components/SchemaCapCube/initializing.js -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template/components/SchemaColor/ConfigColorPicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template/components/SchemaColor/ConfigColorPicker.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template/components/SchemaColor/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template/components/SchemaColor/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template/components/SchemaColor/initializing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template/components/SchemaColor/initializing.js -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template/components/SchemaGoods/GoodsConfigChoose.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template/components/SchemaGoods/GoodsConfigChoose.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template/components/SchemaGoods/GoodsConfigList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template/components/SchemaGoods/GoodsConfigList.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template/components/SchemaGoods/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template/components/SchemaGoods/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template/components/SchemaGoods/index1.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template/components/SchemaGoods/index1.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template/components/SchemaGoods/initializing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template/components/SchemaGoods/initializing.js -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template/components/SchemaJump/JumpDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template/components/SchemaJump/JumpDialog.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template/components/SchemaJump/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template/components/SchemaJump/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template/components/SchemaJump/initializing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template/components/SchemaJump/initializing.js -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template/components/SchemaNumber/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template/components/SchemaNumber/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template/components/SchemaNumber/initializing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template/components/SchemaNumber/initializing.js -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template/components/SchemaObject/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template/components/SchemaObject/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template/components/SchemaObject/initializing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template/components/SchemaObject/initializing.js -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template/components/SchemaSelect/SelectItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template/components/SchemaSelect/SelectItem.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template/components/SchemaSelect/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template/components/SchemaSelect/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template/components/SchemaSelect/initializing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template/components/SchemaSelect/initializing.js -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template/components/SchemaString/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template/components/SchemaString/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template/components/SchemaString/initializing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template/components/SchemaString/initializing.js -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template/components/SchemaSwitch/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template/components/SchemaSwitch/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template/components/SchemaSwitch/initializing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template/components/SchemaSwitch/initializing.js -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template/components/SchemaTime/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template/components/SchemaTime/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template/components/SchemaTime/initializing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template/components/SchemaTime/initializing.js -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template/components/SchemaUpload/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template/components/SchemaUpload/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template/components/SchemaUpload/initializing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template/components/SchemaUpload/initializing.js -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/custom-schema-template/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/custom-schema-template/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/faim/FormDialog/globalConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/faim/FormDialog/globalConfig.js -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/faim/ImageUpload/globalConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/faim/ImageUpload/globalConfig.js -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/faim/ImageUpload/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/faim/ImageUpload/index.scss -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/faim/RichText/globalConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/faim/RichText/globalConfig.js -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/faim/RichText/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/faim/RichText/index.scss -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/faim/RichText/langs/zh-Hans.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/faim/RichText/langs/zh-Hans.js -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/faim/RichText/plugins/InsertFile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/faim/RichText/plugins/InsertFile.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/faim/RichText/plugins/InsertWord.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/faim/RichText/plugins/InsertWord.js -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/faim/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/faim/upload.js -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/main.js -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/mixin/componentConfigMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/mixin/componentConfigMixin.js -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/mixin/schemaMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/mixin/schemaMixin.js -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/pages/login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/pages/login.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/pages/mall/goods/goods-manager/edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/pages/mall/goods/goods-manager/edit.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/pages/mall/goods/goods-manager/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/pages/mall/goods/goods-manager/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/pages/mall/goods/group-manager/edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/pages/mall/goods/group-manager/edit.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/pages/mall/goods/group-manager/groupGoods.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/pages/mall/goods/group-manager/groupGoods.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/pages/mall/goods/group-manager/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/pages/mall/goods/group-manager/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/pages/mall/goods/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/pages/mall/goods/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/pages/mall/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/pages/mall/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/pages/mall/model-manage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/pages/mall/model-manage.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/pages/mall/page-build.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/pages/mall/page-build.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/pages/mall/pages-manage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/pages/mall/pages-manage.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/pages/mall/store/category-tpl.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/pages/mall/store/category-tpl.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/pages/mall/store/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/pages/mall/store/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/pages/mall/store/list-tpl.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/pages/mall/store/list-tpl.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/pages/mall/store/navigation-tpl.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/pages/mall/store/navigation-tpl.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/pages/mall/store/search-tpl.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/pages/mall/store/search-tpl.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/pages/managet.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/pages/managet.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/pages/schema.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/pages/schema.vue -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/router/index.js -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/base.scss -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/alert.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/alert.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/aside.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/aside.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/autocomplete.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/avatar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/avatar.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/backtop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/backtop.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/badge.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/badge.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/base.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/breadcrumb-item.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/breadcrumb.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/breadcrumb.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/button-group.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/button.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/calendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/calendar.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/card.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/card.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/carousel-item.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/carousel-item.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/carousel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/carousel.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/cascader-panel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/cascader-panel.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/cascader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/cascader.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/checkbox-button.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/checkbox-group.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/checkbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/checkbox.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/col.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/col.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/collapse-item.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/collapse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/collapse.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/color-picker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/color-picker.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/container.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/container.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/date-picker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/date-picker.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/dialog.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/display.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/display.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/divider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/divider.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/drawer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/drawer.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/dropdown-item.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/dropdown-menu.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/dropdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/dropdown.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/fonts/element-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/fonts/element-icons.ttf -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/fonts/element-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/fonts/element-icons.woff -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/footer.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/form-item.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/form.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/header.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/icon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/icon.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/image.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/image.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/index.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/infinite-scroll.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/infiniteScroll.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/input-number.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/input-number.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/input.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/link.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/link.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/loading.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/loading.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/main.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/menu-item-group.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/menu-item.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/menu.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/message-box.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/message-box.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/message.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/message.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/notification.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/notification.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/option-group.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/option-group.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/option.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/option.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/page-header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/page-header.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/pagination.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/pagination.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/popconfirm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/popconfirm.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/popover.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/popover.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/popper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/popper.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/progress.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/progress.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/radio-button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/radio-button.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/radio-group.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/radio-group.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/radio.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/radio.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/rate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/rate.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/reset.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/row.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/row.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/scrollbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/scrollbar.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/select-dropdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/select-dropdown.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/select.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/select.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/slider.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/spinner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/spinner.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/step.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/step.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/steps.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/steps.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/submenu.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/switch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/switch.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/tab-pane.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/table-column.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/table-column.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/table.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/tabs.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/tag.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/tag.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/time-picker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/time-picker.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/time-select.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/time-select.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/timeline-item.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/timeline-item.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/timeline.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/timeline.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/tooltip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/tooltip.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/transfer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/transfer.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/tree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/tree.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element-#82AAF1/upload.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element-#82AAF1/upload.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/element.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/element.scss -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/index.scss -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/mixin.scss -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/pc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/pc.scss -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/reset.scss -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/variable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/variable.scss -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/yzIcon/a.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/yzIcon/a.woff -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/yzIcon/b.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/yzIcon/b.ttf -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/yzIcon/c.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/yzIcon/c.woff2 -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/scss/yzIcon/icon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/scss/yzIcon/icon.css -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/store/index.js -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/store/project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/store/project.js -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/store/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/store/user.js -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/utils/adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/utils/adapter.js -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/utils/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/utils/auth.js -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/utils/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/utils/filters.js -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/utils/globalMethods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/utils/globalMethods.js -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/utils/globalRegister.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/utils/globalRegister.js -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/utils/jump.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/utils/jump.js -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/utils/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/utils/request.js -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/utils/schemaRegister.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/utils/schemaRegister.js -------------------------------------------------------------------------------- /packages/mall-cook-platform/src/utils/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/src/utils/style.js -------------------------------------------------------------------------------- /packages/mall-cook-platform/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/vue.config.js -------------------------------------------------------------------------------- /packages/mall-cook-platform/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-platform/yarn.lock -------------------------------------------------------------------------------- /packages/mall-cook-template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/README.md -------------------------------------------------------------------------------- /packages/mall-cook-template/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/babel.config.js -------------------------------------------------------------------------------- /packages/mall-cook-template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/package.json -------------------------------------------------------------------------------- /packages/mall-cook-template/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/postcss.config.js -------------------------------------------------------------------------------- /packages/mall-cook-template/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/public/index.html -------------------------------------------------------------------------------- /packages/mall-cook-template/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/App.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/api/index.js -------------------------------------------------------------------------------- /packages/mall-cook-template/src/common/customType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/common/customType.js -------------------------------------------------------------------------------- /packages/mall-cook-template/src/common/myMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/common/myMenu.js -------------------------------------------------------------------------------- /packages/mall-cook-template/src/components/car-list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/components/car-list.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/components/custom-capsule.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/components/custom-capsule.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/components/custom-tab-bar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/components/custom-tab-bar.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/components/custom-top-bar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/components/custom-top-bar.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/components/full-loading.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/components/full-loading.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/components/global/global-page.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/components/global/global-page.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/components/global/global-tab-page.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/components/global/global-tab-page.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/components/goods-list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/components/goods-list.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/components/page-blili.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/components/page-blili.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/components/page-git.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/components/page-git.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/components/page-juejin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/components/page-juejin.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/components/render-widget.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/components/render-widget.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/components/review-page.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/components/review-page.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/components/submit-bar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/components/submit-bar.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/components/tabbar-page/car-page.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/components/tabbar-page/car-page.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/components/tabbar-page/category-page.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/components/tabbar-page/category-page.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/components/tabbar-page/custom-page.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/components/tabbar-page/custom-page.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/components/tabbar-page/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/components/tabbar-page/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/components/tabbar-page/my-page.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/components/tabbar-page/my-page.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/components/waiting-cmp/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/components/waiting-cmp/index.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/components/waiting-cmp/waiting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/components/waiting-cmp/waiting.jpg -------------------------------------------------------------------------------- /packages/mall-cook-template/src/components/widget-shape.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/components/widget-shape.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/main.js -------------------------------------------------------------------------------- /packages/mall-cook-template/src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/manifest.json -------------------------------------------------------------------------------- /packages/mall-cook-template/src/pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/pages.json -------------------------------------------------------------------------------- /packages/mall-cook-template/src/pages/build/build.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/pages/build/build.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/pages/index/custom/custom.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/pages/index/custom/custom.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/pages/index/goods/detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/pages/index/goods/detail.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/pages/index/goods/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/pages/index/goods/list.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/pages/index/goods/search.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/pages/index/goods/search.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/pages/index/tabbar/home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/pages/index/tabbar/home.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/pages/index/tabbar/tab-frist.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/pages/index/tabbar/tab-frist.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/pages/index/tabbar/tab-second.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/pages/index/tabbar/tab-second.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/pages/index/tabbar/tab-third.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/pages/index/tabbar/tab-third.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/pages/index/user/login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/pages/index/user/login.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/scss/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/scss/base.scss -------------------------------------------------------------------------------- /packages/mall-cook-template/src/scss/element.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/scss/element.scss -------------------------------------------------------------------------------- /packages/mall-cook-template/src/scss/imgpond.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/scss/imgpond.scss -------------------------------------------------------------------------------- /packages/mall-cook-template/src/scss/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/scss/index.scss -------------------------------------------------------------------------------- /packages/mall-cook-template/src/scss/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/scss/mixin.scss -------------------------------------------------------------------------------- /packages/mall-cook-template/src/scss/pc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/scss/pc.scss -------------------------------------------------------------------------------- /packages/mall-cook-template/src/scss/reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/scss/reset.scss -------------------------------------------------------------------------------- /packages/mall-cook-template/src/scss/variable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/scss/variable.scss -------------------------------------------------------------------------------- /packages/mall-cook-template/src/static/checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/static/checked.png -------------------------------------------------------------------------------- /packages/mall-cook-template/src/static/font/iconfont.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/static/font/iconfont.css -------------------------------------------------------------------------------- /packages/mall-cook-template/src/static/goods-lazy-load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/static/goods-lazy-load.png -------------------------------------------------------------------------------- /packages/mall-cook-template/src/static/h5-icon-car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/static/h5-icon-car.png -------------------------------------------------------------------------------- /packages/mall-cook-template/src/static/icon/close_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/static/icon/close_white.png -------------------------------------------------------------------------------- /packages/mall-cook-template/src/static/icon/del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/static/icon/del.png -------------------------------------------------------------------------------- /packages/mall-cook-template/src/static/icon/hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/static/icon/hot.png -------------------------------------------------------------------------------- /packages/mall-cook-template/src/static/icon/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/static/icon/search.png -------------------------------------------------------------------------------- /packages/mall-cook-template/src/static/icon/title_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/static/icon/title_left.png -------------------------------------------------------------------------------- /packages/mall-cook-template/src/static/icon/title_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/static/icon/title_right.png -------------------------------------------------------------------------------- /packages/mall-cook-template/src/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/static/logo.png -------------------------------------------------------------------------------- /packages/mall-cook-template/src/static/unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/static/unchecked.png -------------------------------------------------------------------------------- /packages/mall-cook-template/src/static/user/daifukuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/static/user/daifukuan.png -------------------------------------------------------------------------------- /packages/mall-cook-template/src/static/user/daipingjia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/static/user/daipingjia.png -------------------------------------------------------------------------------- /packages/mall-cook-template/src/static/user/daishouhuo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/static/user/daishouhuo.png -------------------------------------------------------------------------------- /packages/mall-cook-template/src/static/user/hongbao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/static/user/hongbao.png -------------------------------------------------------------------------------- /packages/mall-cook-template/src/static/user/kefu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/static/user/kefu.png -------------------------------------------------------------------------------- /packages/mall-cook-template/src/static/user/liulanjilu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/static/user/liulanjilu.png -------------------------------------------------------------------------------- /packages/mall-cook-template/src/static/user/qianbao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/static/user/qianbao.png -------------------------------------------------------------------------------- /packages/mall-cook-template/src/static/user/shoucang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/static/user/shoucang.png -------------------------------------------------------------------------------- /packages/mall-cook-template/src/static/user/shouhou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/static/user/shouhou.png -------------------------------------------------------------------------------- /packages/mall-cook-template/src/static/user/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/static/user/update.png -------------------------------------------------------------------------------- /packages/mall-cook-template/src/static/user/xianxiamendian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/static/user/xianxiamendian.png -------------------------------------------------------------------------------- /packages/mall-cook-template/src/static/user/xieyiguize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/static/user/xieyiguize.png -------------------------------------------------------------------------------- /packages/mall-cook-template/src/static/user/yonghufankui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/static/user/yonghufankui.png -------------------------------------------------------------------------------- /packages/mall-cook-template/src/static/user/youhuiquan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/static/user/youhuiquan.png -------------------------------------------------------------------------------- /packages/mall-cook-template/src/static/user/zizhizhengzhao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/static/user/zizhizhengzhao.png -------------------------------------------------------------------------------- /packages/mall-cook-template/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/store/index.js -------------------------------------------------------------------------------- /packages/mall-cook-template/src/store/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/store/order.js -------------------------------------------------------------------------------- /packages/mall-cook-template/src/store/project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/store/project.js -------------------------------------------------------------------------------- /packages/mall-cook-template/src/store/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/store/user.js -------------------------------------------------------------------------------- /packages/mall-cook-template/src/uni.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/uni.scss -------------------------------------------------------------------------------- /packages/mall-cook-template/src/utils/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/utils/filters.js -------------------------------------------------------------------------------- /packages/mall-cook-template/src/utils/globalJump.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/utils/globalJump.js -------------------------------------------------------------------------------- /packages/mall-cook-template/src/utils/parseQueryString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/utils/parseQueryString.js -------------------------------------------------------------------------------- /packages/mall-cook-template/src/utils/registerBaseStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/utils/registerBaseStyle.js -------------------------------------------------------------------------------- /packages/mall-cook-template/src/utils/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/utils/request.js -------------------------------------------------------------------------------- /packages/mall-cook-template/src/utils/vuedraggable.umd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/utils/vuedraggable.umd.min.js -------------------------------------------------------------------------------- /packages/mall-cook-template/src/widgets/McCapCube/McCapCube.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/widgets/McCapCube/McCapCube.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/widgets/McCapCube/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/widgets/McCapCube/component.json -------------------------------------------------------------------------------- /packages/mall-cook-template/src/widgets/McCountdown/McCountdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/widgets/McCountdown/McCountdown.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/widgets/McCountdown/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/widgets/McCountdown/component.json -------------------------------------------------------------------------------- /packages/mall-cook-template/src/widgets/McEmpty/McEmpty.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/widgets/McEmpty/McEmpty.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/widgets/McEmpty/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/widgets/McEmpty/component.json -------------------------------------------------------------------------------- /packages/mall-cook-template/src/widgets/McGoods/GoodsItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/widgets/McGoods/GoodsItem.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/widgets/McGoods/GoodsList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/widgets/McGoods/GoodsList.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/widgets/McGoods/GoodsTabs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/widgets/McGoods/GoodsTabs.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/widgets/McGoods/McGoods.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/widgets/McGoods/McGoods.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/widgets/McGoods/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/widgets/McGoods/component.json -------------------------------------------------------------------------------- /packages/mall-cook-template/src/widgets/McImg/McImg.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/widgets/McImg/McImg.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/widgets/McImg/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/widgets/McImg/component.json -------------------------------------------------------------------------------- /packages/mall-cook-template/src/widgets/McNotice/McNotice.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/widgets/McNotice/McNotice.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/widgets/McNotice/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/widgets/McNotice/component.json -------------------------------------------------------------------------------- /packages/mall-cook-template/src/widgets/McNotice/uni-notice-bar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/widgets/McNotice/uni-notice-bar.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/widgets/McSearch/McSearch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/widgets/McSearch/McSearch.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/widgets/McSearch/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/widgets/McSearch/component.json -------------------------------------------------------------------------------- /packages/mall-cook-template/src/widgets/McSwiper/McSwiper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/widgets/McSwiper/McSwiper.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/widgets/McSwiper/baseSwiper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/widgets/McSwiper/baseSwiper.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/widgets/McSwiper/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/widgets/McSwiper/component.json -------------------------------------------------------------------------------- /packages/mall-cook-template/src/widgets/McTab/McTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/widgets/McTab/McTab.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/widgets/McTab/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/widgets/McTab/component.json -------------------------------------------------------------------------------- /packages/mall-cook-template/src/widgets/McTitle/McTitle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/widgets/McTitle/McTitle.vue -------------------------------------------------------------------------------- /packages/mall-cook-template/src/widgets/McTitle/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/src/widgets/McTitle/component.json -------------------------------------------------------------------------------- /packages/mall-cook-template/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/packages/mall-cook-template/yarn.lock -------------------------------------------------------------------------------- /scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/scripts/build.js -------------------------------------------------------------------------------- /scripts/dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/scripts/dev.js -------------------------------------------------------------------------------- /scripts/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/scripts/install.js -------------------------------------------------------------------------------- /static/MallCook-Build.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/static/MallCook-Build.gif -------------------------------------------------------------------------------- /static/MallCook-Cube.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/static/MallCook-Cube.gif -------------------------------------------------------------------------------- /static/MallCook-Goods.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/static/MallCook-Goods.gif -------------------------------------------------------------------------------- /static/MallCook-Model.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/static/MallCook-Model.gif -------------------------------------------------------------------------------- /static/MallCook-Schema.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/static/MallCook-Schema.gif -------------------------------------------------------------------------------- /static/MallCook-Start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/static/MallCook-Start.png -------------------------------------------------------------------------------- /static/donate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/static/donate.jpg -------------------------------------------------------------------------------- /static/kuaitu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/static/kuaitu.png -------------------------------------------------------------------------------- /static/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/static/logo.jpg -------------------------------------------------------------------------------- /static/official.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/static/official.png -------------------------------------------------------------------------------- /static/yunda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/static/yunda.png -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuan389/mall-cook/HEAD/yarn.lock --------------------------------------------------------------------------------