Browse Source

云打包

master
huangjiajun 15 hours ago
parent
commit
eb4224c329
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      app/svc/cloud_bundle/svc_list.go

+ 3
- 3
app/svc/cloud_bundle/svc_list.go View File

@@ -33,7 +33,7 @@ func List(c *gin.Context) {
tmp := md.CloudBundleList{
Id: utils.IntToStr(v.Id),
BuildId: v.BuildId,
Version: "v" + v.Version,
Version: v.Version,
Os: utils.IntToStr(v.Os),
State: utils.IntToStr(v.State),
Memo: v.Memo,
@@ -56,13 +56,13 @@ func List(c *gin.Context) {
resp.LastBit = "64"
resp.LastIsCombine = "0"
if lastAndroid != nil {
resp.LastAndroid = "v" + lastAndroid.Version
resp.LastAndroid = lastAndroid.Version
resp.LastBit = lastAndroid.Bit
resp.LastIsCombine = lastAndroid.IsCombine
}
lastIos, _ := NewCloudBundleDb.GetCloudBundleLast("2")
if lastIos != nil {
resp.ListIos = "v" + lastIos.Version
resp.ListIos = lastIos.Version
}
resp.List = noticeList
e.OutSuc(c, resp, nil)


Loading…
Cancel
Save