ソースを参照

[VersionBeta] V.1.0.0.0

[Adds]
1.回滚代码
2.设置版本
3.修改客户端登录问题
4.面包屑样式提交
new-cli
xzx 4年前
コミット
10df90e0ee
5個のファイルの変更16行の追加10行の削除
  1. +4
    -4
      config/prod.env.js
  2. +2
    -2
      src/views/components_web/head/head.vue
  3. +2
    -1
      src/views/login.vue
  4. +5
    -3
      src/views/main_web/workspace.vue
  5. +3
    -0
      static/css/main.css

+ 4
- 4
config/prod.env.js ファイルの表示

@@ -5,9 +5,9 @@ module.exports = {
// API_WEB:'"https://tszcloud.com/"', // API_WEB:'"https://tszcloud.com/"',
// OFFICE_WEB:'"https://office.tszcloud.com"' // OFFICE_WEB:'"https://office.tszcloud.com"'


// API_HOST:'"https://bapi.tszcloud.com/api/"',
// API_WEB:'"https://beta.tszcloud.com/"',
// OFFICE_WEB:'"https://office.tszcloud.com"'
API_HOST:'"http://192.168.5.32:9003/api/"',
API_HOST:'"https://bapi.tszcloud.com/api/"',
API_WEB:'"https://beta.tszcloud.com/"',
OFFICE_WEB:'"https://office.tszcloud.com"'
//API_HOST:'"http://192.168.5.32:9003/api/"',
// API_WEB:'"http://192.168.5.32:9099/"', // API_WEB:'"http://192.168.5.32:9099/"',
} }

+ 2
- 2
src/views/components_web/head/head.vue ファイルの表示

@@ -306,7 +306,7 @@
<li @click="toAboutYiYun"> <li @click="toAboutYiYun">
<span class="fl">关于探索者</span> <span class="fl">关于探索者</span>
<i class="el-collapse-item__arrow el-icon-arrow-right right-list_btn"></i> <i class="el-collapse-item__arrow el-icon-arrow-right right-list_btn"></i>
<span class="right-list_beizhu">版本V1.0.0.8</span>
<span class="right-list_beizhu">版本V2.0.0.1</span>
</li> </li>
</ul> </ul>
</div> </div>
@@ -401,7 +401,7 @@
<div class="pxline"></div> <div class="pxline"></div>
<div> <div>
<div class="user_Img"><img src="" alt=""></div> <div class="user_Img"><img src="" alt=""></div>
<div class="userNamelabel">探索者 版本V 1.0.0.7</div>
<div class="userNamelabel">版本V2.0.0.1</div>
<div> <div>
<span class="introlisttitle">探索者平台介绍</span> <span class="introlisttitle">探索者平台介绍</span>
<p class="downtext_beizhu mt-10">探索者协同是一款方便、快捷、功能多样的办公软件,堪称设计人员的最佳拍档</p> <p class="downtext_beizhu mt-10">探索者协同是一款方便、快捷、功能多样的办公软件,堪称设计人员的最佳拍档</p>


+ 2
- 1
src/views/login.vue ファイルの表示

@@ -496,10 +496,11 @@ export default {
) { ) {
userName = response.data.data.phone; userName = response.data.data.phone;
} }
back.startService( back.startService(
sessionStorage.userId, sessionStorage.userId,
sessionStorage.companyId, sessionStorage.companyId,
sessionStorage.userName,
userName,
response.data.data.passWord response.data.data.passWord
); );
if (thisApp.isRemember) { if (thisApp.isRemember) {


+ 5
- 3
src/views/main_web/workspace.vue ファイルの表示

@@ -2926,7 +2926,7 @@ export default {
} }
thisApp.nowFolder = thisApp.listUserFolders[thisApp.nowFolderIndex]; thisApp.nowFolder = thisApp.listUserFolders[thisApp.nowFolderIndex];
thisApp.listFiles(); thisApp.listFiles();
thisApp.timer=setInterval(()=>{thisApp.listFiles()}, 60*1000);
thisApp.timer=setInterval(()=>{thisApp.listFiles()}, 3 * 1000);
// thisApp.loadMyAppInstanceList(); // thisApp.loadMyAppInstanceList();
} }
}) })
@@ -3798,7 +3798,6 @@ export default {
) )
}) })
.then(response => { .then(response => {
console.log(response);
if (response.data.state == 1) { if (response.data.state == 1) {
thisApp.$notify({ thisApp.$notify({
title: "温馨提示", title: "温馨提示",
@@ -3807,6 +3806,8 @@ export default {
offset: 30, offset: 30,
duration: 2000 duration: 2000
}); });
file.downloadStatus = 1;
file.isDownload=true;
var archid = file.archID; var archid = file.archID;
var filename = file.archName + "." + file.extension; var filename = file.archName + "." + file.extension;
var folderID = file.folderID; var folderID = file.folderID;
@@ -3844,7 +3845,8 @@ export default {
*/ */
clientUpload() { clientUpload() {
if (this.isClient) { if (this.isClient) {
back.uploadFile();
this.showNewFiledialog=false;
back.uploadFile(this.listUserFolders[this.nowFolderIndex].folderID);
} }
}, },
/** /**


+ 3
- 0
static/css/main.css ファイルの表示

@@ -629,6 +629,9 @@ ul {
float: left; float: left;
line-height: 28px line-height: 28px
} }
.yiyun_text-title-workspace{
display: flex
}
.yiyun_text-title-workspace a{ .yiyun_text-title-workspace a{
font-size: 18px; font-size: 18px;
color: #A7A8B7; color: #A7A8B7;


読み込み中…
キャンセル
保存