@@ -193,7 +193,7 @@ export default class Calender extends Vue {
const dt = new Date(data)
let month = ''
month = this.formatMonth(dt.getMonth() + 1)
- return month + ' ' + dt.getDate() + ',' + dt.getFullYear()
+ return month + ' ' + dt.getDate() + ', ' + dt.getFullYear()
}
// 格式化月份
@@ -25,7 +25,7 @@
<a class="link" :href="apiDomain">API Tools</a>
<a class="link" :href="apiDomain + '/api/docs/introduction'">Documentation</a>
<a class="link" :href="apiDomain + '/api/pricing'">Pricing</a>
- <a class="link btn" :href="apiDomain + '/api/contact'">Contact Us</a>
+ <a class="link btn" :href="apiDomain + '/contact-us'">Contact Us</a>
</nav>
</div>
<div v-show="dropdownShow" class="dropdown-menu" :class="dropdownShow && 'active'">
@@ -40,7 +40,7 @@
</el-popover>
<div class="user-photo" v-popover:popover><p>{{ user && user.name.slice(0, 1) }}</p></div>
</template>
@@ -21,7 +21,7 @@
:class="{'picked' : datePickerValue.length !== 0}"
ref="date-picker">
</el-date-picker> -->
- <span @click="selectTime(4)">{{( datePickerValue.length === 2 ? fillerDate(datePickerValue[0]) + ' - ' + fillerDate(datePickerValue[1]) : 'Custom' )}}</span>
+ <span @click="selectTime(4)">{{( datePickerValue.length === 2 ? fillerDate(datePickerValue[0]).replace(/,/g, ", ") + ' - ' + fillerDate(datePickerValue[1]).replace(/,/g, ", ") : 'Custom' )}}</span>
<Calender v-show="showCalender" @checkedDate="checkedDate" :userFirstLogin="userFirstLogin"></Calender>
</li>
</ul>
@@ -0,0 +1,3 @@
+module.exports = {
+ productionSourceMap: false
+}