fix : 修复移动端详情排版

This commit is contained in:
2024-08-03 18:21:13 +08:00
parent a55031ed70
commit eaed989525
7 changed files with 236 additions and 128 deletions

View File

@@ -18,7 +18,7 @@
</template>
<script setup>
import {Loading, Close, CircleCheckFilled, MoreFilled} from '@element-plus/icons-vue'
import {Loading, Close, CircleCheckFilled, MoreFilled,RefreshLeft} from '@element-plus/icons-vue'
const props = defineProps({
row: {
@@ -72,6 +72,10 @@ const initUser = (user) => {
user["icon"] = MoreFilled
user["color"] = "#c0c4cc"
}
if (state === 'ROLLBACK') {
user["icon"] = RefreshLeft
user["color"] = "#f78f5f"
}
return user;
}