Commit 2089dbf0 authored by chuan.liu's avatar chuan.liu

调适ios模拟器兼容性

parent c22e6c72
...@@ -57,7 +57,8 @@ ...@@ -57,7 +57,8 @@
}, },
{ {
"path": "pages/funds-confirm/funds-confirm", "path": "pages/funds-confirm/funds-confirm",
"style": { "style": {
"transparentTitle":"always",
"app-plus": { "app-plus": {
"titleNView": { "titleNView": {
"titleAlign": "left", "titleAlign": "left",
...@@ -80,7 +81,10 @@ ...@@ -80,7 +81,10 @@
"backgroundColor": "#fff", "backgroundColor": "#fff",
"titleText": "选择下单类型", "titleText": "选择下单类型",
"autoBackButton": false, "autoBackButton": false,
"splitLine":true "splitLine":{
"color":"#ccc",
"height":"0.5px"
}
} }
} }
} }
...@@ -136,7 +140,7 @@ ...@@ -136,7 +140,7 @@
"titleSize": "17px", "titleSize": "17px",
"backgroundColor": "transparent", "backgroundColor": "transparent",
"titleText": "销售计划选择", "titleText": "销售计划选择",
"autoBackButton": false, "autoBackButton": true,
"buttons": [{ "buttons": [{
"type": "none", "type": "none",
"text": "选择", "text": "选择",
...@@ -156,7 +160,7 @@ ...@@ -156,7 +160,7 @@
"titleSize": "17px", "titleSize": "17px",
"backgroundColor": "transparent", "backgroundColor": "transparent",
"titleText": "产品查询", "titleText": "产品查询",
"autoBackButton": false, "autoBackButton": true,
"buttons": [{ "buttons": [{
"type": "none", "type": "none",
"text": "选择", "text": "选择",
...@@ -176,7 +180,7 @@ ...@@ -176,7 +180,7 @@
"titleSize": "17px", "titleSize": "17px",
"backgroundColor": "transparent", "backgroundColor": "transparent",
"titleText": "商机选择", "titleText": "商机选择",
"autoBackButton": false, "autoBackButton": true,
"buttons": [{ "buttons": [{
"type": "none", "type": "none",
"text": "选择", "text": "选择",
...@@ -196,7 +200,7 @@ ...@@ -196,7 +200,7 @@
"titleSize": "17px", "titleSize": "17px",
"backgroundColor": "transparent", "backgroundColor": "transparent",
"titleText": "团购客户选择", "titleText": "团购客户选择",
"autoBackButton": false, "autoBackButton": true,
"buttons": [{ "buttons": [{
"type": "none", "type": "none",
"text": "选择", "text": "选择",
...@@ -618,11 +622,6 @@ ...@@ -618,11 +622,6 @@
"iconPath": "static/image/shop@3x.png", "iconPath": "static/image/shop@3x.png",
"selectedIconPath": "static/image/shop@3x.png", "selectedIconPath": "static/image/shop@3x.png",
"text": "要货" "text": "要货"
}, {
"pagePath": "pages/shop/shop",
"iconPath": "static/image/shop@3x.png",
"selectedIconPath": "static/image/shop@3x.png",
"text": "要货2"
}, { }, {
"pagePath": "pages/message/message", "pagePath": "pages/message/message",
"iconPath": "static/image/message@3x.png", "iconPath": "static/image/message@3x.png",
......
<template> <template>
<view class="lists"> <view class="lists">
<view class="status_bar"> <view class="status_bar" :style="navHeight"></view>
</view>
<view class="header-bg"></view> <view class="header-bg"></view>
<view class="main"> <view class="main">
<view class="middle view"> <view class="middle view">
...@@ -13,7 +12,6 @@ ...@@ -13,7 +12,6 @@
<text class="middle-date-des">H533008256</text> <text class="middle-date-des">H533008256</text>
</view> </view>
</view> </view>
<image class="icon-arrow" src="@/static/image/arrow_r@3x.png" mode="aspectFit"></image>
</view> </view>
</view> </view>
...@@ -25,7 +23,6 @@ ...@@ -25,7 +23,6 @@
<text class="middle-date-des">五粮液</text> <text class="middle-date-des">五粮液</text>
</view> </view>
</view> </view>
<image class="icon-arrow" src="@/static/image/arrow_r@3x.png" mode="aspectFit"></image>
</view> </view>
</view> </view>
<view class="text-block"> <view class="text-block">
...@@ -38,15 +35,15 @@ ...@@ -38,15 +35,15 @@
</view> </view>
<view class="text-block"> <view class="text-block">
<text class="middle-date">制票类型</text> <text class="middle-date">制票类型</text>
<view class="middle-date-des uni-list picker-year"> <view class="middle-date-des uni-list picker-year">
<view class="uni-list-cell"> <view class="uni-list-cell">
<view class="uni-list-cell-db"> <view class="uni-list-cell-db">
<picker class="picker-block" @change="bindPickerChange" :value="index" :range="array"> <picker class="picker-block" @change="bindPickerChange" :value="index" :range="array">
<text class="uni-input">{{array[index]}}</text> <text class="uni-input">{{array[index]}}</text>
</picker> </picker>
</view> </view>
</view> </view>
<image class="icon-arrow" src="@/static/image/arrow_r@3x.png" mode=""></image> <image class="icon-arrow" src="@/static/image/arrow_r@3x.png" mode=""></image>
</view> </view>
</view> </view>
<view class="text-block text-block-last"> <view class="text-block text-block-last">
...@@ -66,19 +63,31 @@ ...@@ -66,19 +63,31 @@
</template> </template>
<script> <script>
import {
mapState
} from 'vuex'
export default { export default {
data() { data() {
return { return {
applyNum: 100, applyNum: 100,
remark:'', remark: '',
array: ['2021', '2020', '2019', '2018'], array: ['2021', '2020', '2019', '2018'],
index: 0, index: 0,
} }
}, },
methods: { computed: {
bindPickerChange(e) { ...mapState(['sysinfo']),
console.log('picker发送选择改变,携带值为', e.detail.value) navHeight() {
this.index = e.detail.value return {
'height': `${this.sysinfo.safeArea.top + 44}px`
}
},
},
methods: {
bindPickerChange(e) {
console.log('picker发送选择改变,携带值为', e.detail.value)
this.index = e.detail.value
}, },
submit() { submit() {
this.$emit('submit') this.$emit('submit')
...@@ -94,7 +103,6 @@ ...@@ -94,7 +103,6 @@
.status_bar { .status_bar {
height: var(--status-bar-height); height: var(--status-bar-height);
height: 44px;
} }
.header-bg { .header-bg {
...@@ -149,11 +157,12 @@ ...@@ -149,11 +157,12 @@
flex: 3; flex: 3;
font-size: 28rpx; font-size: 28rpx;
color: $text-base-color; color: $text-base-color;
line-height: 96rpx;
} }
.picker-year { .picker-year {
position: relative; position: relative;
align-items: center; align-items: center;
padding-left: 14rpx; padding-left: 14rpx;
} }
...@@ -167,39 +176,39 @@ ...@@ -167,39 +176,39 @@
.picker-block { .picker-block {
flex: 1; flex: 1;
} }
.uni-input{ .uni-input {
font-size: 14px; font-size: 14px;
color: $text-base-color; color: $text-base-color;
} }
.icon-arrow { .icon-arrow {
position: absolute; position: absolute;
right: 22rpx; right: 22rpx;
top: 40rpx; top: 40rpx;
width: 7px; width: 7px;
height: 10px; height: 10px;
z-index:10; z-index: 10;
} }
.remark-text { .remark-text {
width: 100%; flex: 1;
height: 320rpx; height: 320rpx;
background: #f5f6f7; background: #f5f6f7;
border-radius: 4px; border-radius: 4px;
padding: 12rpx 18rpx; padding: 12rpx 18rpx;
} }
.bottom { .bottom {
margin-top: 68rpx; margin-top: 68rpx;
padding: 0 16rpx; padding: 0 16rpx;
justify-content: space-between; justify-content: center;
} }
.btn { .btn {
width: 364rpx; width: 364rpx;
height: 92rpx; height: 92rpx;
margin: 0 auto; margin: 0 auto;
background: $wly-primary-color; background: $wly-primary-color;
border-radius: 46rpx; border-radius: 46rpx;
......
...@@ -204,7 +204,7 @@ ...@@ -204,7 +204,7 @@
display: flex; display: flex;
flex-direction: column; flex-direction: column;
box-sizing: border-box; box-sizing: border-box;
background-color: #f2f6f7; background-color: #fff;
padding-bottom: 100rpx; padding-bottom: 100rpx;
} }
...@@ -228,11 +228,11 @@ ...@@ -228,11 +228,11 @@
left: 16px; left: 16px;
top: var(--status-bar-height); top: var(--status-bar-height);
z-index: 10; z-index: 10;
background-color: rgba(255, 255, 255, 0.2); background-color: rgba(255, 255, 255, 0.25);
border-radius: 16px; border-radius: 16px;
padding-left: 33px; padding-left: 33px;
font-size: 13px; font-size: 13px;
color: rgba(255, 255, 255, 0.6); color: rgba(255, 255, 255, 0.8);
.icon-search { .icon-search {
position: absolute; position: absolute;
...@@ -288,7 +288,8 @@ ...@@ -288,7 +288,8 @@
box-sizing: border-box; box-sizing: border-box;
background: #ffffff; background: #ffffff;
border-radius: 32rpx 32rpx 0px 0px; border-radius: 32rpx 32rpx 0px 0px;
margin-top: -80rpx; margin-top: -110rpx;
z-index:10;
} }
.block { .block {
......
...@@ -6,7 +6,8 @@ ...@@ -6,7 +6,8 @@
<text class="upload-text">附件上传</text> <text class="upload-text">附件上传</text>
</view> </view>
<view class="upload-block"> <view class="upload-block">
<uni-file-picker ref='files' :auto-upload='false' v-model="fileList" file-mediatype="image" :imageStyles="imageStyles" @select="select" @progress="progress" @success="success" @fail='fail'> <uni-file-picker ref='files' :auto-upload='false' v-model="fileList" file-mediatype="image"
:imageStyles="imageStyles" @select="select" @progress="progress" @success="success" @fail='fail'>
<text>+</text> <text>+</text>
</uni-file-picker> </uni-file-picker>
</view> </view>
...@@ -29,7 +30,7 @@ ...@@ -29,7 +30,7 @@
<image class="popup-content-head__icon" src="@/static/image/icon_plan@3x.png" mode=""></image> <image class="popup-content-head__icon" src="@/static/image/icon_plan@3x.png" mode=""></image>
</view> </view>
<view class="popup-content-content"> <view class="popup-content-content">
<text class="popup-content-content__title">支付成功</text> <text class="popup-content-content__title">提交成功</text>
<text class="popup-content-content__title2">订单号:{{ orderNo }}</text> <text class="popup-content-content__title2">订单号:{{ orderNo }}</text>
</view> </view>
<view class="popup-content-foot"> <view class="popup-content-foot">
...@@ -47,19 +48,24 @@ ...@@ -47,19 +48,24 @@
data() { data() {
return { return {
orderNo: '', orderNo: '',
fileList: [], fileList: [],
} }
}, },
computed:{ computed: {
imageStyles(){ imageStyles() {
return { return {
width: 64, width: 64,
height: 64, height: 64,
border: { border: {
radius: '50%' radius: '50%'
} }
} }
}, },
},
onBackPress(event) {
console.log('event', event)
this.$emit('click', 'quotaOrder')
return false
}, },
methods: { methods: {
change(e) { change(e) {
...@@ -68,14 +74,14 @@ ...@@ -68,14 +74,14 @@
// 获取上传进度 // 获取上传进度
progress(e) { progress(e) {
console.log('上传进度:', e) console.log('上传进度:', e)
}, },
// 选择文件 // 选择文件
select(e) { select(e) {
console.log('选择文件:', e) console.log('选择文件:', e)
}, },
// 上传成功 // 上传成功
success(e) { success(e) {
console.log('上传成功',e) console.log('上传成功', e)
}, },
// 上传失败 // 上传失败
fail(e) { fail(e) {
...@@ -93,7 +99,7 @@ ...@@ -93,7 +99,7 @@
this.$refs.popup.close() this.$refs.popup.close()
}, },
submit() { submit() {
this.$refs.popup.open('center') this.$refs.popup.open('center')
this.$refs.files.upload() this.$refs.files.upload()
}, },
preStep() { preStep() {
...@@ -179,16 +185,16 @@ ...@@ -179,16 +185,16 @@
border: 1px dashed #dedede; border: 1px dashed #dedede;
border-radius: 4px; border-radius: 4px;
margin-top: 90rpx; margin-top: 90rpx;
} }
.uni-file-picker{ .uni-file-picker {
width: 100%; width: 100%;
height: 100%; height: 100%;
} }
/deep/ .uni-file-picker__container{ /deep/ .uni-file-picker__container {
width: 100%; width: 100%;
height: 100%; height: 100%;
} }
.bottom-area { .bottom-area {
...@@ -243,7 +249,7 @@ ...@@ -243,7 +249,7 @@
width: 580rpx; width: 580rpx;
height: 408rpx; height: 408rpx;
background: #ffffff; background: #ffffff;
border-radius: 20rpx; border-radius: 24rpx;
} }
.popup-content-head { .popup-content-head {
...@@ -280,6 +286,7 @@ ...@@ -280,6 +286,7 @@
.popup-content-foot__btn { .popup-content-foot__btn {
width: 152rpx; width: 152rpx;
height: 60rpx; height: 60rpx;
font-size: 22rpx;
line-height: 60rpx; line-height: 60rpx;
background: #ffedee; background: #ffedee;
text-align: center; text-align: center;
......
This diff is collapsed.
...@@ -84,7 +84,8 @@ ...@@ -84,7 +84,8 @@
componentHeight(){ componentHeight(){
console.log('componentHeight',`${this.sysinfo.safeArea.height - 44 - this.topHeight}px`,this.sysinfo); console.log('componentHeight',`${this.sysinfo.safeArea.height - 44 - this.topHeight}px`,this.sysinfo);
return { return {
'height':`${this.sysinfo.safeArea.height - 44 - this.topHeight}px` 'height':`${this.sysinfo.safeArea.height - 44 - this.topHeight}px`,
'overflow-y':'scroll'
} }
}, },
winHeight(){ winHeight(){
...@@ -120,8 +121,11 @@ ...@@ -120,8 +121,11 @@
// #endif // #endif
}, },
onBackPress() { onBackPress() {
uni.navigateBack({ // uni.navigateBack({
delta: 1 // delta: 1
// })
uni.switchTab({
url:"pages/go-order/go-order"
}) })
}, },
methods: { methods: {
......
No preview for this file type
This diff is collapsed.
This diff is collapsed.
{"@platforms":["android","iPhone","iPad"],"id":"__UNI__343534B","name":"五粮液APP","version":{"name":"1.0.0","code":"100"},"description":"订货系统","launch_path":"__uniappview.html","developer":{"name":"","email":"","url":""},"permissions":{"UniNView":{"description":"UniNView原生渲染"}},"plus":{"useragent":{"value":"uni-app","concatenate":true},"splashscreen":{"target":"id:1","autoclose":true,"waiting":true,"delay":0},"popGesture":"close","launchwebview":{"id":"1","kernel":"WKWebview"},"statusbar":{"immersed":"supportedDevice","style":"dark","background":"#fff"},"usingComponents":true,"nvueCompiler":"uni-app","nvue":{"flex-direction":"row"},"distribute":{"icons":{"android":{"hdpi":"unpackage/res/icons/72x72.png","xhdpi":"unpackage/res/icons/96x96.png","xxhdpi":"unpackage/res/icons/144x144.png","xxxhdpi":"unpackage/res/icons/192x192.png"},"ios":{"appstore":"unpackage/res/icons/1024x1024.png","ipad":{"app":"unpackage/res/icons/76x76.png","app@2x":"unpackage/res/icons/152x152.png","notification":"unpackage/res/icons/20x20.png","notification@2x":"unpackage/res/icons/40x40.png","proapp@2x":"unpackage/res/icons/167x167.png","settings":"unpackage/res/icons/29x29.png","settings@2x":"unpackage/res/icons/58x58.png","spotlight":"unpackage/res/icons/40x40.png","spotlight@2x":"unpackage/res/icons/80x80.png"},"iphone":{"app@2x":"unpackage/res/icons/120x120.png","app@3x":"unpackage/res/icons/180x180.png","notification@2x":"unpackage/res/icons/40x40.png","notification@3x":"unpackage/res/icons/60x60.png","settings@2x":"unpackage/res/icons/58x58.png","settings@3x":"unpackage/res/icons/87x87.png","spotlight@2x":"unpackage/res/icons/80x80.png","spotlight@3x":"unpackage/res/icons/120x120.png"}}},"google":{"permissions":["<uses-permission android:name=\"android.permission.CHANGE_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.MOUNT_UNMOUNT_FILESYSTEMS\"/>","<uses-permission android:name=\"android.permission.VIBRATE\"/>","<uses-permission android:name=\"android.permission.READ_LOGS\"/>","<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>","<uses-feature android:name=\"android.hardware.camera.autofocus\"/>","<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.CAMERA\"/>","<uses-permission android:name=\"android.permission.GET_ACCOUNTS\"/>","<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>","<uses-permission android:name=\"android.permission.CHANGE_WIFI_STATE\"/>","<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>","<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>","<uses-feature android:name=\"android.hardware.camera\"/>","<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"],"abiFilters":["armeabi-v7a"]},"apple":{},"plugins":{"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}}}},"arguments":"{\"name\":\"me\",\"query\":\"uuid=c4bba940-f69e-11ea-a419-6bafda9d095e&__id__=1\",\"id\":0,\"pathName\":\"pages/home/home\"}","allowsInlineMediaPlayback":true,"safearea":{"background":"rgba(250,250,250,0.90)","bottom":{"offset":"auto"}},"uni-app":{"compilerVersion":"3.3.13","control":"uni-v3","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"row"},"nvueLaunchMode":"normal"},"tabBar":{"iconWidth":"19px","spacing":"4px","color":"#999999","selectedColor":"#FF1D32","borderStyle":"rgba(250,250,250,0.90)","backgroundColor":"rgba(250,250,250,0.90)","list":[{"pagePath":"pages/home/home","iconPath":"static/image/home@3x.png","selectedIconPath":"static/image/home@3x.png","text":"首页"},{"pagePath":"pages/go-order/go-order","iconPath":"static/image/plan@3x.png","selectedIconPath":"static/image/plan@3x.png","text":"下单"},{"pagePath":"pages/shop/shop","iconPath":"static/image/shop@3x.png","selectedIconPath":"static/image/shop@3x.png","text":"要货"},{"pagePath":"pages/message/message","iconPath":"static/image/message@3x.png","selectedIconPath":"static/image/message@3x.png","text":"消息"},{"pagePath":"pages/usercenter/usercenter","iconPath":"static/image/usercenter@3x.png","selectedIconPath":"static/image/usercenter@3x.png","text":"我的"}],"height":"50px","child":["lauchwebview"],"selected":0},"launch_path":"__uniappview.html"}} {"@platforms":["android","iPhone","iPad"],"id":"__UNI__343534B","name":"五粮液APP","version":{"name":"1.0.0","code":"100"},"description":"订货系统","launch_path":"__uniappview.html","developer":{"name":"","email":"","url":""},"permissions":{"UniNView":{"description":"UniNView原生渲染"}},"plus":{"useragent":{"value":"uni-app","concatenate":true},"splashscreen":{"target":"id:1","autoclose":true,"waiting":true,"delay":0},"popGesture":"close","launchwebview":{"id":"1","kernel":"WKWebview"},"statusbar":{"immersed":"supportedDevice","style":"dark","background":"#fff"},"usingComponents":true,"nvueCompiler":"uni-app","nvueStyleCompiler":"uni-app","nvue":{"flex-direction":"row"},"distribute":{"icons":{"android":{"hdpi":"unpackage/res/icons/72x72.png","xhdpi":"unpackage/res/icons/96x96.png","xxhdpi":"unpackage/res/icons/144x144.png","xxxhdpi":"unpackage/res/icons/192x192.png"},"ios":{"appstore":"unpackage/res/icons/1024x1024.png","ipad":{"app":"unpackage/res/icons/76x76.png","app@2x":"unpackage/res/icons/152x152.png","notification":"unpackage/res/icons/20x20.png","notification@2x":"unpackage/res/icons/40x40.png","proapp@2x":"unpackage/res/icons/167x167.png","settings":"unpackage/res/icons/29x29.png","settings@2x":"unpackage/res/icons/58x58.png","spotlight":"unpackage/res/icons/40x40.png","spotlight@2x":"unpackage/res/icons/80x80.png"},"iphone":{"app@2x":"unpackage/res/icons/120x120.png","app@3x":"unpackage/res/icons/180x180.png","notification@2x":"unpackage/res/icons/40x40.png","notification@3x":"unpackage/res/icons/60x60.png","settings@2x":"unpackage/res/icons/58x58.png","settings@3x":"unpackage/res/icons/87x87.png","spotlight@2x":"unpackage/res/icons/80x80.png","spotlight@3x":"unpackage/res/icons/120x120.png"}}},"google":{"permissions":["<uses-permission android:name=\"android.permission.CHANGE_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.MOUNT_UNMOUNT_FILESYSTEMS\"/>","<uses-permission android:name=\"android.permission.VIBRATE\"/>","<uses-permission android:name=\"android.permission.READ_LOGS\"/>","<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>","<uses-feature android:name=\"android.hardware.camera.autofocus\"/>","<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.CAMERA\"/>","<uses-permission android:name=\"android.permission.GET_ACCOUNTS\"/>","<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>","<uses-permission android:name=\"android.permission.CHANGE_WIFI_STATE\"/>","<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>","<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>","<uses-feature android:name=\"android.hardware.camera\"/>","<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"],"abiFilters":["armeabi-v7a"]},"apple":{},"plugins":{"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}}}},"arguments":"{\"name\":\"me\",\"query\":\"uuid=c4bba940-f69e-11ea-a419-6bafda9d095e&__id__=1\",\"id\":0,\"pathName\":\"pages/home/home\"}","allowsInlineMediaPlayback":true,"safearea":{"background":"rgba(250,250,250,0.90)","bottom":{"offset":"auto"}},"uni-app":{"compilerVersion":"3.3.13","control":"uni-v3","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"row"},"nvueLaunchMode":"normal"},"tabBar":{"iconWidth":"19px","spacing":"4px","color":"#999999","selectedColor":"#FF1D32","borderStyle":"rgba(250,250,250,0.90)","backgroundColor":"rgba(250,250,250,0.90)","list":[{"pagePath":"pages/home/home","iconPath":"static/image/home@3x.png","selectedIconPath":"static/image/home@3x.png","text":"首页"},{"pagePath":"pages/go-order/go-order","iconPath":"static/image/plan@3x.png","selectedIconPath":"static/image/plan@3x.png","text":"下单"},{"pagePath":"pages/purchase/purchase","iconPath":"static/image/shop@3x.png","selectedIconPath":"static/image/shop@3x.png","text":"要货"},{"pagePath":"pages/message/message","iconPath":"static/image/message@3x.png","selectedIconPath":"static/image/message@3x.png","text":"消息"},{"pagePath":"pages/usercenter/usercenter","iconPath":"static/image/usercenter@3x.png","selectedIconPath":"static/image/usercenter@3x.png","text":"我的"}],"height":"50px","child":["lauchwebview"],"selected":0},"launch_path":"__uniappview.html"}}
\ No newline at end of file \ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment