|
@@ -36,7 +36,8 @@
|
|
|
{{ item.goods_name }}
|
|
|
</div>
|
|
|
<div class="prow-header__right">
|
|
|
- <span class="update" @click="handleUpdateRow(item, idx)">更改</span>
|
|
|
+ <!-- NOTE: flag == 2 不可以修改 -->
|
|
|
+ <span class="update" v-show="item.flag != 2" @click="handleUpdateRow(item, idx)">更改</span>
|
|
|
<span class="remove" @click="handleRemoveRow(item, idx)">删除</span>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -408,7 +409,6 @@ export default {
|
|
|
]
|
|
|
}
|
|
|
console.log('%c printlog >>>', 'background: blue; color: #fff', _template_);
|
|
|
-
|
|
|
this.list = [...this.list, _template_]
|
|
|
}
|
|
|
},
|
|
@@ -464,18 +464,18 @@ export default {
|
|
|
// post import file
|
|
|
const result = await postImportFile({
|
|
|
module: this.type,
|
|
|
- url: fileHref.url
|
|
|
+ file: fileHref.url
|
|
|
})
|
|
|
|
|
|
if (result.code === 1) {
|
|
|
- const { error_list = [], success_list = [] } = result.data
|
|
|
- if (error_list.length) {
|
|
|
+ const { error_data = [], apply_goods_data = [] } = result.data
|
|
|
+ if (error_data.length) {
|
|
|
// error_list => { msg: String }[]
|
|
|
- this.handleTipsImport(error_list, success_list)
|
|
|
- } else if (success_list.length) {
|
|
|
+ this.handleTipsImport(error_data, apply_goods_data)
|
|
|
+ } else if (apply_goods_data.length) {
|
|
|
this.list = [
|
|
|
...this.list,
|
|
|
- ...success_list
|
|
|
+ ...apply_goods_data
|
|
|
]
|
|
|
}
|
|
|
}
|
|
@@ -485,12 +485,11 @@ export default {
|
|
|
|
|
|
},
|
|
|
|
|
|
- // TODO: 批量导入模板说明
|
|
|
- // 下载批量导入说明
|
|
|
+ // NOTE: 下载批量导入说明
|
|
|
+ // Useless. 功能忽略
|
|
|
handleDownloadHelp() {
|
|
|
- this.$toast('下载批量导入说明')
|
|
|
- console.log('%c printlog >>>', 'background: blue; color: #fff',);
|
|
|
// util/downloadFileUseATarget
|
|
|
+ this.$toast('点击下载模板进行编辑上传')
|
|
|
},
|
|
|
|
|
|
// NOTE: 提醒某某商品库存不足。让用户选择是否申领/采购
|