Browse Source

修改账户列表明细,当用户没有用户姓名时,显示------

main
daimenglei 1 month ago
parent
commit
5333aaac3a
  1. 1
      src/views/business/userAccount/index.vue

1
src/views/business/userAccount/index.vue

@ -55,6 +55,7 @@
<span v-if="scope.row.userType == 0">{{ scope.row.userInfoName }}</span> <span v-if="scope.row.userType == 0">{{ scope.row.userInfoName }}</span>
<span v-if="scope.row.userType == 1">{{ scope.row.merchantName }}</span> <span v-if="scope.row.userType == 1">{{ scope.row.merchantName }}</span>
<span v-if="scope.row.userType == 2">{{ scope.row.agentName }}</span> <span v-if="scope.row.userType == 2">{{ scope.row.agentName }}</span>
<span v-if="scope.row.userInfoName == null && scope.row.merchantName == null && scope.row.agentName == null ">------</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column :label="$t('business.supplementaryInfo.userAccount.accountCode')" align="center" prop="accountCode"/> <el-table-column :label="$t('business.supplementaryInfo.userAccount.accountCode')" align="center" prop="accountCode"/>

Loading…
Cancel
Save