|
@@ -9,22 +9,26 @@
|
|
<template v-slot:footer>
|
|
<template v-slot:footer>
|
|
<view v-if="item.lzzt == '0'"
|
|
<view v-if="item.lzzt == '0'"
|
|
style="width: 60px;display: flex;flex-direction: column;background-image: url('../../static/images/caogao.png');background-position: left;background-size:58px 58px;background-repeat: no-repeat;">
|
|
style="width: 60px;display: flex;flex-direction: column;background-image: url('../../static/images/caogao.png');background-position: left;background-size:58px 58px;background-repeat: no-repeat;">
|
|
- <text>{{item.updateTime.substring(0,8) || item.createTime.substring(0,8)}}</text>
|
|
|
|
|
|
+ <text v-if="item.updateTime">{{item.updateTime.substring(0,8) }}</text>
|
|
|
|
+ <text v-else>{{item.createTime.substring(0,8) }}</text>
|
|
<text>{{item.lrSpyj || '无'}}</text>
|
|
<text>{{item.lrSpyj || '无'}}</text>
|
|
</view>
|
|
</view>
|
|
<view v-else-if="item.lzzt == '1' || item.lzzt == '2'"
|
|
<view v-else-if="item.lzzt == '1' || item.lzzt == '2'"
|
|
style="width: 60px;display: flex;flex-direction: column;background-image: url('../../static/images/daishenhe.png');background-position: left;background-size:58px 58px;background-repeat: no-repeat;">
|
|
style="width: 60px;display: flex;flex-direction: column;background-image: url('../../static/images/daishenhe.png');background-position: left;background-size:58px 58px;background-repeat: no-repeat;">
|
|
- <text>{{item.updateTime.substring(0,8) || item.createTime.substring(0,8)}}</text>
|
|
|
|
|
|
+ <text v-if="item.updateTime">{{item.updateTime.substring(0,8) }}</text>
|
|
|
|
+ <text v-else>{{item.createTime.substring(0,8) }}</text>
|
|
<text>{{item.lrSpyj || '无'}}</text>
|
|
<text>{{item.lrSpyj || '无'}}</text>
|
|
</view>
|
|
</view>
|
|
<view v-else-if="item.lzzt == '3'"
|
|
<view v-else-if="item.lzzt == '3'"
|
|
style="width: 60px;display: flex;flex-direction: column;background-image: url('../../static/images/tongguo.png');background-position: left;background-size:58px 58px;background-repeat: no-repeat;">
|
|
style="width: 60px;display: flex;flex-direction: column;background-image: url('../../static/images/tongguo.png');background-position: left;background-size:58px 58px;background-repeat: no-repeat;">
|
|
- <text>{{item.updateTime.substring(0,8) || item.createTime.substring(0,8)}}</text>
|
|
|
|
|
|
+ <text v-if="item.updateTime">{{item.updateTime.substring(0,8) }}</text>
|
|
|
|
+ <text v-else>{{item.createTime.substring(0,8) }}</text>
|
|
<text>{{item.lrSpyj || '无'}}</text>
|
|
<text>{{item.lrSpyj || '无'}}</text>
|
|
</view>
|
|
</view>
|
|
<view v-else-if="item.lzzt == '4'"
|
|
<view v-else-if="item.lzzt == '4'"
|
|
style="width: 60px;display: flex;flex-direction: column;background-image: url('../../static/images/jujue.png');background-position: left;background-size:58px 58px;background-repeat: no-repeat;">
|
|
style="width: 60px;display: flex;flex-direction: column;background-image: url('../../static/images/jujue.png');background-position: left;background-size:58px 58px;background-repeat: no-repeat;">
|
|
- <text>{{item.updateTime.substring(0,8) || item.createTime.substring(0,8)}}</text>
|
|
|
|
|
|
+ <text v-if="item.updateTime">{{item.updateTime.substring(0,8) }}</text>
|
|
|
|
+ <text v-else>{{item.createTime.substring(0,8) }}</text>
|
|
<text>{{item.lrSpyj || '无'}}</text>
|
|
<text>{{item.lrSpyj || '无'}}</text>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
</template>
|