|
|
@@ -9,7 +9,7 @@
|
|
9
|
9
|
</view>
|
|
10
|
10
|
</u-navbar>
|
|
11
|
11
|
<view class="form_list">
|
|
12
|
|
- <u--form labelPosition="top" :model="formData" :rules="rules" ref="addForm" labelWidth="100%">
|
|
|
12
|
+ <u--form labelPosition="top" :model="formData" :rules="rules" ref="addForm" labelWidth="auto">
|
|
13
|
13
|
<u-form-item borderBottom class="u-form-item-col">
|
|
14
|
14
|
<u--textarea v-model="recognitionContent" placeholder='品牌:-
|
|
15
|
15
|
来源:-
|
|
|
@@ -26,7 +26,7 @@
|
|
26
|
26
|
@click="handlePasteRecognition(recognitionContent)"></u-button>
|
|
27
|
27
|
</view>
|
|
28
|
28
|
</u-form-item>
|
|
29
|
|
- <u-form-item label="商品图片" required prop="goodPicFileList" borderBottom>
|
|
|
29
|
+ <u-form-item :label="'商品图片(' + (formData.goodPicFileList.length || 0) + '张)'" required prop="goodPicFileList" borderBottom>
|
|
30
|
30
|
<view class="imgs_scroll">
|
|
31
|
31
|
<ImgsRowScroll v-if="formData.goodPicFileList.length > 0" :isShowDeleteIcon="true"
|
|
32
|
32
|
@deleteImgInfo="getDeleteGoodPicInfo" imgMode="aspectFill" :totalWidth="400"
|
|
|
@@ -83,7 +83,7 @@
|
|
83
|
83
|
@tabChange="handleTabChangeProductCondition" :colNum="2" mode="single" :echoInfo="echoInfoProductCondition">
|
|
84
|
84
|
</TabSelect>
|
|
85
|
85
|
</u-form-item>
|
|
86
|
|
- <u-form-item label="细节图" borderBottom>
|
|
|
86
|
+ <u-form-item :label="'细节图(' + (formData.detailPicFileList.length || 0) + '张)'" borderBottom>
|
|
87
|
87
|
<!-- <view class="detail_pic_container"> -->
|
|
88
|
88
|
<!-- <view>
|
|
89
|
89
|
<text class="tip">视频:</text>
|
|
|
@@ -175,7 +175,7 @@
|
|
175
|
175
|
<PersonPicker ref="recyclePersonPickerRef" title="请选择回收人员"
|
|
176
|
176
|
@selectPerson="handleSelectRecyclePerson"></PersonPicker>
|
|
177
|
177
|
</u-form-item>
|
|
178
|
|
- <u-form-item label="回收留底图" borderBottom>
|
|
|
178
|
+ <u-form-item :label="'回收留底图(' + (formData.recycleBottomFileList.length || 0) + '张)'" borderBottom>
|
|
179
|
179
|
<view class="recycle_bottom_desc">
|
|
180
|
180
|
<u--textarea v-model="formData.recycleBottomDesc" clearable count autoHeight maxlength="250"
|
|
181
|
181
|
height="100" confirmType="done"></u--textarea>
|
|
|
@@ -217,7 +217,7 @@
|
|
217
|
217
|
<u--input v-model="formData.cardYear" placeholder="不填写默认空白保卡" clearable
|
|
218
|
218
|
border="none"></u--input>
|
|
219
|
219
|
</u-form-item>
|
|
220
|
|
- <u-form-item label="保卡图片或独立编码照片留底(仅内部人员可见)" borderBottom>
|
|
|
220
|
+ <u-form-item :label="'保卡图片或独立编码照片留底(' + (formData.productCardPicFileList.length || 0) + '张)'" borderBottom>
|
|
221
|
221
|
<view class="imgs_scroll">
|
|
222
|
222
|
<ImgsRowScroll v-if="formData.productCardPicFileList.length > 0" :isShowDeleteIcon="true"
|
|
223
|
223
|
@deleteImgInfo="getDeleteProductCardPicInfo" imgMode="aspectFill" :totalWidth="400"
|
|
|
@@ -234,7 +234,7 @@
|
|
234
|
234
|
<u--input v-model="formData.productAttachment" placeholder="请输入" clearable
|
|
235
|
235
|
border="none"></u--input>
|
|
236
|
236
|
</u-form-item>
|
|
237
|
|
- <u-form-item label="备注(仅内部人员可见)" borderBottom>
|
|
|
237
|
+ <u-form-item :label="'备注(' + (formData.productDescPicFileList.length || 0) + '张)'" borderBottom>
|
|
238
|
238
|
<view class="recycle_bottom_desc">
|
|
239
|
239
|
<u--textarea v-model="formData.productDesc" clearable count autoHeight maxlength="250"
|
|
240
|
240
|
height="100" confirmType="done"></u--textarea>
|