Compare commits
2 Commits
acccadd43a
...
6ba54c8bcd
| Author | SHA1 | Date | |
|---|---|---|---|
| 6ba54c8bcd | |||
|
|
eaaceb9595 |
@@ -74,8 +74,8 @@
|
||||
@get-checked-columns="getCheckedColumns"
|
||||
@selection-change="handleSelectionChange"
|
||||
>
|
||||
<el-table-column type="selection" width="60" />
|
||||
<el-table-column type="expand">
|
||||
<el-table-column type="selection" width="60" fixed="left" />
|
||||
<el-table-column type="expand" fixed="left">
|
||||
<template #default="{ row }">
|
||||
<div class="p-10px flex justify-center">
|
||||
<VueDraggable
|
||||
@@ -91,8 +91,8 @@
|
||||
stripe
|
||||
style="width: 80%; margin: 0 auto"
|
||||
>
|
||||
<el-table-column prop="productName" label="成交产品" />
|
||||
<el-table-column prop="specsName" label="产品规格" />
|
||||
<el-table-column prop="productName" label="成交产品" width="120px" />
|
||||
<el-table-column prop="specsName" label="产品规格" width="120px" />
|
||||
<el-table-column prop="signNum" label="成交数量" width="90px" />
|
||||
<el-table-column prop="remark" label="成交备注" width="100px" />
|
||||
<el-table-column label="生产状态" width="160px">
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
|
||||
<el-table v-loading="loading" :data="tableList" border stripe>
|
||||
<el-table-column type="index" width="50" fixed="left" />
|
||||
<el-table-column prop="nickname" label="姓名" width="80" />
|
||||
<el-table-column prop="nickname" label="姓名" width="80" fixed="left" />
|
||||
<el-table-column
|
||||
v-for="(item, index) in new Date().getMonth() + 1"
|
||||
:key="index"
|
||||
|
||||
@@ -49,7 +49,7 @@
|
||||
|
||||
<!-- 列表 -->
|
||||
<el-table v-loading="loading" class="mt-20px" :data="tableList" border>
|
||||
<el-table-column type="expand" width="30">
|
||||
<el-table-column type="expand" width="30" fixed="left">
|
||||
<template #default="{ row }">
|
||||
<div class="pl-100px pr-100px">
|
||||
<el-table :data="row.productSpecList">
|
||||
@@ -71,16 +71,16 @@
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column key="productId" label="产品编码" prop="productId" />
|
||||
<el-table-column show-overflow-tooltip label="产品名称" min-width="200" prop="productName" />
|
||||
<el-table-column label="分类" min-width="90" prop="productCategoryName" />
|
||||
<el-table-column label="品牌" min-width="90" prop="productBrandName" />
|
||||
<el-table-column show-overflow-tooltip label="产品名称" min-width="100" prop="productName" />
|
||||
<el-table-column label="分类" width="90" prop="productCategoryName" />
|
||||
<el-table-column label="品牌" width="90" prop="productBrandName" />
|
||||
<el-table-column label="商品图" min-width="80">
|
||||
<template #default="{ row }">
|
||||
<el-image :src="row.mainImage" @click="imagePreview(row.mainImage)" class="w-30px h-30px" />
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="简介" min-width="70" prop="productIntro" />
|
||||
<el-table-column :formatter="dateFormatter" label="创建时间" prop="createTime" width="180" />
|
||||
<el-table-column label="简介" min-width="200" prop="productIntro" />
|
||||
<el-table-column :formatter="dateFormatter" label="创建时间" prop="createTime" width="120" />
|
||||
<el-table-column v-for="item in diyFieldList" :key="item.clueParamId" :label="item.label">
|
||||
<template #default="{ row }">
|
||||
<div v-if="item.component == 'DatePicker'">
|
||||
|
||||
Reference in New Issue
Block a user