Commit 6a2acbe5 by chenxin

fix:一些bug

parent d2ddf1ac
......@@ -46,7 +46,7 @@ export default {
return;
}
// 启用限制图片大小
if (binding.value.limit.type) {
if (binding.value.limit && binding.value.limit.type) {
const { width, height } = binding.value.limit;
verificationPicFile(el, width, height)
.then(res => {
......
......@@ -160,7 +160,7 @@
<img :src="scope.row.memberImgUrl || defaultAvatar" width="32" height="32" alt="" />
<div class="inline-block">
<p>{{ scope.row.memberName || '--' }}</p>
<p class="fz13 gray">{{ scope.row.receivePhone || '--' }}</p>
<p class="fz13 gray">{{ scope.row.memberPhoneNumber || '--' }}</p>
</div>
</template>
</el-table-column>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment