review + mall:快递公司管理

This commit is contained in:
YunaiV 2023-05-24 23:40:46 +08:00
parent 349a39e72f
commit b12aefe46e
2 changed files with 3 additions and 3 deletions

View File

@ -38,7 +38,6 @@
</template> </template>
</Dialog> </Dialog>
</template> </template>
<script setup lang="ts" name="ExpressForm"> <script setup lang="ts" name="ExpressForm">
import { DICT_TYPE, getIntDictOptions } from '@/utils/dict' import { DICT_TYPE, getIntDictOptions } from '@/utils/dict'
import { CommonStatusEnum } from '@/utils/constants' import { CommonStatusEnum } from '@/utils/constants'

View File

@ -57,7 +57,7 @@
<el-table-column label="快递公司名称" prop="name" /> <el-table-column label="快递公司名称" prop="name" />
<el-table-column label="快递公司 logo " prop="logo"> <el-table-column label="快递公司 logo " prop="logo">
<template #default="scope"> <template #default="scope">
<img v-if="scope.row.logo" :src="scope.row.logo" alt="快递公司logo" class="h-25px" /> <img v-if="scope.row.logo" :src="scope.row.logo" alt="快递公司logo" class="h-100px" />
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="排序" align="center" prop="sort" /> <el-table-column label="排序" align="center" prop="sort" />
@ -118,6 +118,7 @@ const queryParams = reactive({
}) })
const queryFormRef = ref() // const queryFormRef = ref() //
const exportLoading = ref(false) // const exportLoading = ref(false) //
/** 查询列表 */ /** 查询列表 */
const getList = async () => { const getList = async () => {
loading.value = true loading.value = true