自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(24)
  • 资源 (1)
  • 收藏
  • 关注

原创 uview-ui_components_u-index-anchor_u-index-anchor.vue

<template> <!-- 支付宝小程序使用$u.getRect()获取组件的根元素尺寸,所以在外面套一个"壳" --> <view> <view class="u-index-anchor-wrapper" :id="$u.guid()" :style="[wrapperStyle]"> <view class="u-index-anchor " :class="[active ? '...

2022-01-15 00:34:24 1541

原创 uview-ui_components_u-index-list_u-index-list.vue

<template> <!-- 支付宝小程序使用$u.getRect()获取组件的根元素尺寸,所以在外面套一个"壳" --> <view> <view class="u-index-bar"> <slot /> <view v-if="showSidebar" class="u-index-bar__sidebar" @touchstart.stop.p...

2022-01-15 00:34:06 2059

原创 uview-ui_libs_css_color.scss

.u-type-primary-light { color: $u-type-primary-light;}.u-type-warning-light { color: $u-type-warning-light;}.u-type-success-light { color: $u-type-success-light;}.u-type-error-light { color: $u-type-error-light;}...

2022-01-14 22:23:32 971

原创 uview-ui_libs_config_zIndex.js

// uniapp在H5中各API的z-index值如下:/*** actionsheet: 999* modal: 999* navigate: 998* tabbar: 998* toast: 999*/export default { toast: 10090, noNetwork: 10080, // popup包含popup,actionsheet,keyboard,picker的值 popup: 10075,...

2022-01-14 22:21:56 286

原创 uview-ui_libs_config_config.js

// 此版本发布于2020-12-17let version = '1.8.3';export default { v: version, version: version, // 主题名称 type: [ 'primary', 'success', 'info', 'error', 'warning' ]}...

2022-01-14 22:20:53 358

原创 uview-ui_iconfont.css

/* #ifdef APP-PLUS */@font-face { font-family: "uicon-iconfont"; font-weight: normal; font-style: normal; font-display: auto; src: url('data:application/x-font-woff2;charset=utf-8;base64,d09GMgABAAAAAGQYAAsAAAAAw2gAAGPEAAEAAAAAAAAAAAAA...

2022-01-14 22:19:01 71407

原创 uview-ui_index.js

// 引入全局mixinimport mixin from './libs/mixin/mixin.js'function wranning(str) { // 开发环境进行信息输出,主要是一些报错信息 // 这个环境的来由是在程序编写时候,点击hx编辑器运行调试代码的时候,详见: // https://uniapp.dcloud.io/frame?id=%e5%bc%80%e5%8f%91%e7%8e%af%e5%a2%83%e5%92%8c%e7%94%9f%...

2022-01-14 22:17:47 731

原创 uview-ui_index.scss

// 引入公共基础类@import "./libs/css/common.scss";@import "./libs/css/color.scss";// 非nvue的样式/* #ifndef APP-NVUE */@import "./libs/css/style.vue.scss";/* #endif */// nvue的特有样式/* #ifdef APP-NVUE */@import "./libs/css/style.nvue.scss";/* #en

2022-01-14 22:16:43 468

原创 uview-ui_LICENSE

MIT LicenseCopyright (c) 2020 www.uviewui.comPermission is hereby granted, free of charge, to any person obtaining a copyof this software and associated documentation files (the "Software"), to dealin the Software without restriction, including

2022-01-14 22:14:35 88

原创 uview-ui_package.json

{ "name": "uview-ui", "version": "1.8.3", "description": "uView UI,是uni-app生态优秀的UI框架,全面的组件和便捷的工具会让您信手拈来,如鱼得水", "main": "index.js", "keywords": [ "uview", "uView", "uni-app", "uni-app ui", ...

2022-01-14 22:12:32 269

原创 uview-ui_README.md

uview-ui_README.md

2022-01-14 22:11:19 91

原创 uview-ui_theme.scss

// 此文件为uView的主题变量,这些变量目前只能通过uni.scss引入才有效,另外由于// uni.scss中引入的样式会同时混入到全局样式文件和单独每一个页面的样式中,造成微信程序包太大,// 故uni.scss只建议放scss变量名相关样式,其他的样式可以通过main.js或者App.vue引入$u-main-color: #303133;$u-content-color: #606266;$u-tips-color: #909399;$u-light-color: #

2022-01-14 22:09:09 1500

原创 App.vue

<script>import { mapMutations, mapActions, mapState } from 'vuex';import wechat from '@/shopro/wechat/wechat';export default { globalData: {}, onLaunch(options) { let that = this; // #ifdef H5 that.$platfo...

2022-01-13 00:07:45 265

原创 .gitignore

/node_modules/*/unpackage/*!/unpackage/res/*/.idea/*

2022-01-13 00:07:33 83

原创 env.js

/*** Shopro全局配置文件 v1.3.2*/export const BASE_URL = 'https://xxxxx.com' //后台根域名export const API_URL = `${BASE_URL}/addons/shopro/` //后台接口域名export const IMG_URL = 'https://xxxxx.com' //全局网络图片地址变量,css背景图片地址变量在uni.scssexport const MAP_KEY = '426eb

2022-01-12 22:20:22 440

原创 main.js

import Vue from 'vue';import App from './App';// 挂载变量import { API_URL, IMG_URL} from './env.js';Vue.prototype.$API_URL = API_URL;Vue.prototype.$IMG_URL = IMG_URL;// uni方法重写, h5的粘贴板的设置,获取。图片视频的保存import '@/shopro/utils/sdk-h5.js'...

2022-01-12 22:17:42 278

原创 manifest.json

{ "name" : "Shopro开源商城", "appid" : "__UNI__*****", "description" : "Shopro开源商城", "versionName" : "1.3.2", "versionCode" : "100", "transformPx" : false, "app-plus" : { // APP-VUE分包,可提APP升启动速度,2.7.12开始支持,兼容微信小程序分包方...

2022-01-12 20:22:54 3024

原创 package-lock.json

{ "name": "shopro-plus", "version": "1.0.0", "lockfileVersion": 1, "requires": true, "dependencies": { "@fortawesome/fontawesome-common-types": { "version": "0.2.36", "resolved": "https://repo.hua...

2022-01-12 20:16:29 509

原创 package.json

{ "name": "shopro-plus", "version": "1.0.0", "main": "main.js", "scripts": { "test": "" }, "repository": { "type": "git", "url": "" }, "keywords": [], "author": "", "license": "IS...

2022-01-12 00:59:35 80

原创 page.json

{ "easycom": { "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue", "^shopro-(.*)": "@/components/shopro-$1/shopro-$1.vue" }, "pages": [{ "path": "pages/index/index", "aliasPath": "/", //对于h5端你必须在首页...

2022-01-12 00:57:29 607

原创 README.md

xxx

2022-01-12 00:55:52 120

原创 template.h5.html

<!DOCTYPE html><html lang="zh-CN"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <link rel="shortcut icon" type="image/x-icon" href=""> &lt...

2022-01-12 00:53:53 1075

原创 uni.scss

/*** 下方引入的为uView UI的集成样式文件,为scss预处理器,其中包含了一些"u-"开头的自定义变量* 使用的时候,请将下面的一行复制到您的uniapp项目根目录的uni.scss中即可* uView自定义的css类名和scss变量,均以"u-"开头,不会造成冲突,请放心使用*/@import 'uview-ui/theme.scss';$IMG_URL: 'http://file.shopro.top'; //css中背景图片变量。js图片变量在env.js...

2022-01-12 00:51:43 990

原创 vue.config.js

const TransformPages = require('uni-read-pages')const { webpack} = new TransformPages()module.exports = { configureWebpack: { plugins: [ new webpack.DefinePlugin({ ROUTES: webpack.DefinePlugin.runtimeV...

2022-01-12 00:48:23 248

frontend.zip

uni,fontend

2022-01-12

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除