45 lines
761 B
Vue
45 lines
761 B
Vue
<style lang="scss" scoped>
|
|
.instructRecord-ctn{
|
|
padding: $paddingTB $paddingLR;
|
|
:not(not){
|
|
box-sizing: border-box;
|
|
}
|
|
}
|
|
.instructRecord-list{
|
|
|
|
}
|
|
.instructRecord-box{
|
|
margin-bottom: 50rpx;
|
|
&-header{
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
&-time{
|
|
padding-top: 20rpx;
|
|
}
|
|
}
|
|
</style>
|
|
|
|
<template>
|
|
<view class="instructRecord-ctn">
|
|
<view class="instructRecord-list">
|
|
<view class="instructRecord-box" v-for="(item,index) in 4" >
|
|
<view class="instructRecord-box-header">
|
|
<text>恢复油电</text>
|
|
<text>发送成功</text>
|
|
</view>
|
|
<view class="instructRecord-box-time">
|
|
2020年9月29日11:20:46
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default{
|
|
|
|
}
|
|
</script>
|
|
|