|
@@ -8,20 +8,20 @@
|
|
|
<text class="date-text">{{ item.addTime.substr(5,11) }}</text>
|
|
<text class="date-text">{{ item.addTime.substr(5,11) }}</text>
|
|
|
</view>
|
|
</view>
|
|
|
<view class="staff-info">
|
|
<view class="staff-info">
|
|
|
- <text class="staff-name">{{ item.staffName }}</text>
|
|
|
|
|
|
|
+ <text class="staff-name">{{ item.staffName!=''?item.staffName:'系统' }}</text>
|
|
|
</view>
|
|
</view>
|
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
|
<view class="record-content">
|
|
<view class="record-content">
|
|
|
<view class="event-section">
|
|
<view class="event-section">
|
|
|
- <text class="event-label">变更事项</text>
|
|
|
|
|
|
|
+ <text class="event-label">事项</text>
|
|
|
<text class="event-value">{{ item.event }}</text>
|
|
<text class="event-value">{{ item.event }}</text>
|
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
|
<view class="change-section">
|
|
<view class="change-section">
|
|
|
<view class="change-item">
|
|
<view class="change-item">
|
|
|
<text class="change-label">变化前</text>
|
|
<text class="change-label">变化前</text>
|
|
|
- <text class="change-value before">{{ item.beforeName }}</text>
|
|
|
|
|
|
|
+ <text class="change-value before">{{ item.beforeName!=''?item.beforeName:'普通用户' }}</text>
|
|
|
</view>
|
|
</view>
|
|
|
<view class="change-arrow">
|
|
<view class="change-arrow">
|
|
|
<text class="arrow-icon">→</text>
|
|
<text class="arrow-icon">→</text>
|
|
@@ -57,7 +57,7 @@ export default {
|
|
|
methods: {
|
|
methods: {
|
|
|
async init(){
|
|
async init(){
|
|
|
let id = this.option.id ? this.option.id : 0
|
|
let id = this.option.id ? this.option.id : 0
|
|
|
- const res = await getMemberChange({ page:this.list.page,customId:id })
|
|
|
|
|
|
|
+ const res = await getMemberChange({ page:this.list.page,hdId:id })
|
|
|
if (this.$util.isEmpty(res.data.list)){
|
|
if (this.$util.isEmpty(res.data.list)){
|
|
|
this.completes(res)
|
|
this.completes(res)
|
|
|
return
|
|
return
|