zhongtianhaoyuan 3b2b83fd5b Merge branch 'master' of http://47.100.3.209:3000/gongdecai/wangluohuoyun-app | hace 1 año | |
---|---|---|
.hbuilderx | hace 1 año | |
api | hace 2 años | |
common | hace 1 año | |
components | hace 1 año | |
config | hace 1 año | |
hybrid | hace 2 años | |
js_sdk | hace 2 años | |
nativeplugins | hace 2 años | |
pages | hace 1 año | |
public | hace 2 años | |
static | hace 1 año | |
store | hace 2 años | |
uni_modules | hace 2 años | |
unpackage | hace 1 año | |
util | hace 1 año | |
.gitignore | hace 2 años | |
App.vue | hace 1 año | |
PacketCodeC.js | hace 2 años | |
README.md | hace 2 años | |
demo.vue | hace 2 años | |
index.html | hace 2 años | |
main.js | hace 1 año | |
manifest.json | hace 1 año | |
package.json | hace 2 años | |
pages.json | hace 1 año | |
scrolldemo.vue | hace 2 años | |
uni.scss | hace 2 años | |
webim.js | hace 2 años | |
websocket_sdk.js | hace 2 años | |
zhiyun.keystore | hace 2 años |
uni-app项目开发模板,集成了u-view 2.0、基于uni-request封装、token验证、websocket、页面权限、按钮权限、mescoll上拉加载、下拉刷新、热更新、推送
常用view功能在根目录demo页面
常用css公共变量在 uni.scss和uni_modules\uview-ui目录下的theme.scss, 全局公共样式可以在theme.scss文件配置,也可以在static文件夹common.scss 配置 全局样式包括但不限于内容布局、文字大小、颜色、公共组件css。 常用css样式配置在common.scss文件中,常用flex布局、常用对齐方式、常用内边距、外边距
点击按钮上传文件 import uploadImage from '@/components/ossutil/uploadFile.js';
uni.chooseImage({
count: 1,
success: function (res) {
console.log(JSON.stringify(res.tempFilePaths));
uploadImage(res.tempFilePaths[0], 'appData/',
result => {
// 上传成功
console.log('图片地址', result)
}
)
}
});