|
@@ -84,6 +84,12 @@
|
|
|
<div>{{ rTime(scope.row.startTime) }}</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
+ <!-- 质量:上线次数 -->
|
|
|
+ <template #deployStartTsSlot="{scope}">
|
|
|
+ <div @click.stop>
|
|
|
+ <div>{{ moment(scope.row.deployStartTs * 1000).format("YYYY-MM-DD hh:mm:ss") }}</div>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
</dmTable>
|
|
|
<!-- 下拉 -->
|
|
|
<div class="footer-laout" @click.stop>
|
|
@@ -107,6 +113,7 @@
|
|
|
// import { mapGetters } from 'vuex'
|
|
|
import { bugList } from '@/api/defectManage'
|
|
|
import _ from 'lodash'
|
|
|
+import moment from 'moment'
|
|
|
import { getReportList } from '@/api/reportTemplate'
|
|
|
import dmTable from '@/components/baseTable/table'
|
|
|
// import timeline from '@/components/timeline/index'
|
|
@@ -205,6 +212,7 @@ export default {
|
|
|
this.drawer = false
|
|
|
},
|
|
|
methods: {
|
|
|
+ moment,
|
|
|
print(slotProp) {
|
|
|
console.log(slotProp)
|
|
|
},
|