You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.5 KiB
40 lines
1.5 KiB
<!--
|
|
* @Author: YeeChan
|
|
* @Date: 2021-06-02 11:29:59
|
|
* @Description:
|
|
-->
|
|
<ui-hint>
|
|
· 将本地构建的文件夹上传到远端服务器,先设置游戏名字,每个游戏唯一
|
|
<br>
|
|
· 操作成功后,会将远端url展示在控制台中,自行复制
|
|
<br>
|
|
· 参考:http://renyouNew.5iape.com/remoteGame/游戏名字/
|
|
<br>
|
|
· 当前版本 2.0
|
|
</ui-hint>
|
|
|
|
<ui-box-container class="layout vertical">
|
|
<hr>
|
|
<ui-prop name="游戏名字" type="string" v-value="profile.gameName" tooltip="· 远端文件夹名字">
|
|
</ui-prop>
|
|
<ui-prop name="本地路径" type="string" v-value="profile.localPath" tooltip="· 本地构建的文件夹">
|
|
</ui-prop>
|
|
<br>
|
|
<ui-checkbox v-value="profile.remote">是否远程包?</ui-checkbox>
|
|
....自动打包远程包 remote 文件夹中的资源,远程地址不需要加remote
|
|
<hr>
|
|
<div class="layout horizontal">
|
|
<!-- <div class="flex-none"><ui-button id="onBtnClickUpload" style="width: 100px;" class="blue" @confirm="onBtnClickUpload">上传</ui-button></div> -->
|
|
<div class="flex-none">
|
|
<ui-button id="onBtnClickUpload2" style="width: 100px;" class="blue" @confirm="onBtnClickUpload2">打包上传
|
|
</ui-button>
|
|
</div>
|
|
<div class="flex-1">
|
|
<ui-progress value="0" v-value="uploadProgress"></ui-progress>
|
|
</div>
|
|
<div>
|
|
<ui-button id="btn" @confirm="onBtnClickSave">保存配置</ui-button>
|
|
</div>
|
|
</div>
|
|
<hr>
|
|
</ui-box-container> |