Fix it on a workstation.

このコミットが含まれているのは:
テクニカル諏訪子 2018-01-25 05:47:13 +09:00
コミット 982f42661c
8個のファイルの変更17473行の追加17376行の削除

34703
public/js/app.js vendored

ファイル差分が大きすぎるため省略します 差分を読み込み

ファイルの表示

@ -0,0 +1,37 @@
<template>
<div class="panel panel-default">
<div class="panel-heading">@lang('entry.changelog', ['version' => '2.0'])</div>
<div class="panel-body">
<div class="container">
<div class="row">
<div class="col-md-12">
{{ changelog }}
</div>
</div>
</div>
</div>
</div>
</template>
<script>
export default {
name: 'entry-changelog',
data: function () {
return {
id: 1,
changelog: ''
}
},
created: function () {
axios.get('/api/rpc/file/getfilechangelog/' + this.id).then(data => {
this.changelog = data.data[0].changelog;
})
}
}
</script>
<style>
.col {
text-align: center;
}
</style>

ファイルの表示

@ -0,0 +1,37 @@
<template>
<div class="panel panel-default">
<div class="panel-heading">@lang('entry.description')</div>
<div class="panel-body">
<div class="container">
<div class="row">
<div class="col-md-12">
{{ description }}
</div>
</div>
</div>
</div>
</div>
</template>
<script>
export default {
name: 'entry-description',
data: function () {
return {
id: 1,
description: ''
}
},
created: function () {
axios.get('/api/rpc/file/getfiledescription/' + this.id).then(data => {
this.description = data.data[0].description;
})
}
}
</script>
<style>
.col {
text-align: center;
}
</style>

ファイルの表示

@ -0,0 +1,15 @@
<template>
<div class="container">
<div class="row">
<div class="col-md-12">
(IMG)
</div>
</div>
</div>
</template>
<script>
export default {
name: 'entry-screenshots'
}
</script>

ファイルの表示

@ -0,0 +1,32 @@
<template>
<div class="container">
<div class="row">
<div class="col-md-12">
{{ description }}
</div>
</div>
</div>
</template>
<script>
export default {
name: 'entry-description',
data: function () {
return {
id: 1,
description: ''
}
},
created: function () {
axios.get('/api/rpc/file/getfiledescription/' + this.id).then(data => {
this.description = data.data[0].description;
})
}
}
</script>
<style>
.col {
text-align: center;
}
</style>

ファイルの表示

@ -18,8 +18,8 @@
}
},
created: function () {
axios.get('/api/rpc/file/getfilechangelog' + this.id).then(data => {
this.changelog = data.data.changelog;
axios.get('/api/rpc/file/getfilechangelog/' + this.id).then(data => {
this.changelog = data.data[0].changelog;
})
}
}

ファイルの表示

@ -18,8 +18,8 @@
}
},
created: function () {
axios.get('/api/rpc/file/getfiledescription' + this.id).then(data => {
this.description = data.data.description;
axios.get('/api/rpc/file/getfiledescription/' + this.id).then(data => {
this.description = data.data[0].description;
})
}
}

ファイルの表示

@ -1,5 +1,4 @@
@extends('layouts.app')
@section('content')
<div class="container">
<div class="row">
@ -63,20 +62,8 @@
<entry-screenshots />
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">@lang('entry.description')</div>
<div class="panel-body">
<entry-description />
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">@lang('entry.changelog', ['version' => '2.0'])</div>
<div class="panel-body">
<entry-changelog />
</div>
</div>
<entry-description />
<entry-changelog />
</div>
</div>
</div>