会员管理成员维护编辑、列表修改

This commit is contained in:
fengachen
2021-08-31 16:58:55 +08:00
parent c7a8f3483a
commit c55ab80414
8 changed files with 70 additions and 9 deletions
+29
View File
@@ -0,0 +1,29 @@
<template>
<div>
<img src=".././../assets/imgs/zero.png"/>
<!-- <img src=".././../assets/imgs/finished.png"/>-->
<!-- <img src=".././../assets/imgs/half.png"/>-->
<!-- <img src=".././../assets/imgs/error.png"/>-->
</div>
</template>
<script>
export default {
name: "StatusSlot",
props: {
statuObj: {
type: Object,
required: true
}
},
computed: {
status() {
return this.statuObj
}
}
}
</script>
<style scoped lang="less">
</style>