需求变更
This commit is contained in:
@@ -19,7 +19,7 @@
|
|||||||
<div class="AppAnnounceDetail-select">
|
<div class="AppAnnounceDetail-select">
|
||||||
<div class="userSelcet">
|
<div class="userSelcet">
|
||||||
<span style="color: #606266;" v-if="girdList.length">{{ girdList.length ? girdList[0].girdName : '' }}</span>
|
<span style="color: #606266;" v-if="girdList.length">{{ girdList.length ? girdList[0].girdName : '' }}</span>
|
||||||
<span v-else>可选范围</span>
|
<span v-else>选择网格</span>
|
||||||
<i class="el-icon-arrow-up" v-if="!girdList.length"></i>
|
<i class="el-icon-arrow-up" v-if="!girdList.length"></i>
|
||||||
<i class="el-icon-circle-close" v-if="girdList.length" @click.stop="girdList = [], search.girdId = '', search.current = 1, getList()"></i>
|
<i class="el-icon-circle-close" v-if="girdList.length" @click.stop="girdList = [], search.girdId = '', search.current = 1, getList()"></i>
|
||||||
</div>
|
</div>
|
||||||
@@ -51,7 +51,12 @@
|
|||||||
<el-table-column slot="goods" width="280px" label="商品" align="left">
|
<el-table-column slot="goods" width="280px" label="商品" align="left">
|
||||||
<template slot-scope="{ row }">
|
<template slot-scope="{ row }">
|
||||||
<div class="goods">
|
<div class="goods">
|
||||||
<img :src="row.imageUrl">
|
<ai-uploader
|
||||||
|
:instance="instance"
|
||||||
|
disabled
|
||||||
|
:value="[{url: row.imageUrl}]"
|
||||||
|
:limit="1">
|
||||||
|
</ai-uploader>
|
||||||
<span :title="row.merchandiseName">{{ row.merchandiseName }}</span>
|
<span :title="row.merchandiseName">{{ row.merchandiseName }}</span>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@@ -74,7 +74,12 @@
|
|||||||
<el-table-column slot="goods" width="240px" label="商品" align="left">
|
<el-table-column slot="goods" width="240px" label="商品" align="left">
|
||||||
<template slot-scope="{ row }">
|
<template slot-scope="{ row }">
|
||||||
<div class="goods">
|
<div class="goods">
|
||||||
<img :src="row.imageUrl">
|
<ai-uploader
|
||||||
|
:instance="instance"
|
||||||
|
disabled
|
||||||
|
:value="[{url: row.imageUrl}]"
|
||||||
|
:limit="1">
|
||||||
|
</ai-uploader>
|
||||||
<span>{{ row.merchandiseName }}</span>
|
<span>{{ row.merchandiseName }}</span>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
Reference in New Issue
Block a user