|
@@ -214,9 +214,26 @@
|
|
|
<div class=TrendsDongTai>
|
|
|
<Steps direction="vertical"
|
|
|
:active="0">
|
|
|
- <Step v-for="(item , index) in action "
|
|
|
- :key="index">
|
|
|
- <h3>{{ item.action.action }}</h3>
|
|
|
+ <Step v-for="(item , index) in action " :key="index">
|
|
|
+ <h3 v-if="item.action.action.startsWith('删除了')">
|
|
|
+ <ww-open-data type="userName" :openid="item.action.userid"></ww-open-data>
|
|
|
+ {{ item.action.action }}
|
|
|
+ </h3>
|
|
|
+ <h3 v-else-if="item.action.action.endsWith('删除了')">
|
|
|
+ {{ item.action.action }}
|
|
|
+ <ww-open-data type="userName" :openid="item.action.userid"></ww-open-data>
|
|
|
+ </h3>
|
|
|
+ <h3 v-else-if="item.action.action.startsWith('添加了')">
|
|
|
+ <ww-open-data type="userName" :openid="item.action.userid"></ww-open-data>
|
|
|
+ {{ item.action.action }}
|
|
|
+ </h3>
|
|
|
+ <h3 v-else-if="item.action.action.endsWith('分配给')">
|
|
|
+ <ww-open-data type="userName" :openid="item.action.userid"></ww-open-data>
|
|
|
+ {{ item.action.action }}
|
|
|
+ </h3>
|
|
|
+ <h3 v-else>
|
|
|
+ {{ item.action.action }}
|
|
|
+ </h3>
|
|
|
<p>{{ item.create_datetime }}</p>
|
|
|
</Step>
|
|
|
</Steps>
|
|
@@ -1170,6 +1187,7 @@ export default {
|
|
|
line-height: 4vh;
|
|
|
margin-top: 2vw;
|
|
|
font-size: 1.2rem;
|
|
|
+ white-space: nowrap;
|
|
|
}
|
|
|
}
|
|
|
.OrderDingdan {
|