|
@@ -25,10 +25,10 @@
|
|
|
|
|
|
<div class="search-w">
|
|
|
<div class="date-w">
|
|
|
- <span class="label">拍摄时间</span>
|
|
|
- <vueDate showClear v-model="startTime" placeholder="开始时间" :isDateDisabled="isAfter" :weekdays="weekdays" :months="months"></vueDate>
|
|
|
+ <span class="label">{{ $t('manage.sceneAdmin.createTime') }}</span>
|
|
|
+ <vueDate showClear v-model="startTime" :placeholder="$t('manage.sceneAdmin.startTime')" :isDateDisabled="isAfter" :weekdays="weekdays" :months="months"></vueDate>
|
|
|
<span>-</span>
|
|
|
- <vueDate showClear v-model="endTime" placeholder="结束时间" :isDateDisabled="isBefore" :weekdays="weekdays" :months="months"></vueDate>
|
|
|
+ <vueDate showClear v-model="endTime" :placeholder="$t('manage.sceneAdmin.endTime')" :isDateDisabled="isBefore" :weekdays="weekdays" :months="months"></vueDate>
|
|
|
</div>
|
|
|
<div class="tab-search">
|
|
|
<input
|
|
@@ -40,7 +40,7 @@
|
|
|
|
|
|
<!-- <i class="iconfont icon-sousuo" @click="gotoSearch(searchKey)"></i> -->
|
|
|
</div>
|
|
|
- <div class="search-btn" @click="gotoSearch(searchKey)">查询</div>
|
|
|
+ <div class="search-btn" @click="gotoSearch(searchKey)">{{ $t('manage.sceneAdmin.search')}}</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
@@ -314,6 +314,10 @@ export default {
|
|
|
this.getCooTotal()
|
|
|
this.getList()
|
|
|
}
|
|
|
+ if (this.language !== 'zh') {
|
|
|
+ this.weekdays = ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
|
|
|
+ this.months = ['January', 'February', 'March', 'April','May', 'June', 'July', 'August','September', 'October', 'November', 'December']
|
|
|
+ }
|
|
|
},
|
|
|
methods: {
|
|
|
changeType (status) {
|
|
@@ -1131,7 +1135,7 @@ $font-color: #2d2d2d;
|
|
|
border: 1px solid #ccc;
|
|
|
}
|
|
|
.date-w {
|
|
|
- margin-right: 20px;
|
|
|
+ margin-right: 15px;
|
|
|
.label {
|
|
|
margin-right: 10px;
|
|
|
font-size: 14px;
|
|
@@ -1147,7 +1151,7 @@ $font-color: #2d2d2d;
|
|
|
padding: 0 20px;
|
|
|
line-height: 28px;
|
|
|
background: #1fe4dc;
|
|
|
- margin-left: 20px;
|
|
|
+ margin-left: 15px;
|
|
|
cursor: pointer;
|
|
|
// font-weight: bold;
|
|
|
}
|