File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/views/mall/trade/delivery/express Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 13
13
<el-form-item label =" 快递公司名称" prop =" name" >
14
14
<el-input v-model =" formData.name" placeholder =" 请输入快递名称" />
15
15
</el-form-item >
16
- <el-form-item label =" 快递公司logo " prop =" logo" >
16
+ <el-form-item label =" 快递公司 logo " prop =" logo" >
17
17
<UploadImg v-model =" formData.logo" :limit =" 1" :is-show-tip =" false" />
18
18
<div style =" font-size : 10px " class =" pl-10px" >推荐 180x180 图片分辨率</div >
19
19
</el-form-item >
38
38
</template >
39
39
</Dialog >
40
40
</template >
41
-
42
41
<script setup lang="ts" name="ExpressForm">
43
42
import { DICT_TYPE , getIntDictOptions } from ' @/utils/dict'
44
43
import { CommonStatusEnum } from ' @/utils/constants'
Original file line number Diff line number Diff line change 57
57
<el-table-column label =" 快递公司名称" prop =" name" />
58
58
<el-table-column label =" 快递公司 logo " prop =" logo" >
59
59
<template #default =" scope " >
60
- <img v-if =" scope.row.logo" :src =" scope.row.logo" alt =" 快递公司logo" class =" h-25px " />
60
+ <img v-if =" scope.row.logo" :src =" scope.row.logo" alt =" 快递公司logo" class =" h-100px " />
61
61
</template >
62
62
</el-table-column >
63
63
<el-table-column label =" 排序" align =" center" prop =" sort" />
@@ -118,6 +118,7 @@ const queryParams = reactive({
118
118
})
119
119
const queryFormRef = ref () // 搜索的表单
120
120
const exportLoading = ref (false ) // 导出的加载中
121
+
121
122
/** 查询列表 */
122
123
const getList = async () => {
123
124
loading .value = true
You can’t perform that action at this time.
0 commit comments