|
@@ -44,12 +44,12 @@
|
|
|
<div class="prow-middle flex flex-row flex--row-aic" :key="idx">
|
|
|
<div class="flex flex-row flex-row-aic">
|
|
|
<div class="tags">{{ goodsStock.name }}</div>
|
|
|
- <div class="price">¥{{ goodsStock.price }}</div>
|
|
|
+ <div v-show="needShowPrice" class="price">¥{{ goodsStock.price }}</div>
|
|
|
</div>
|
|
|
<div class="count">x{{ goodsStock.stock }}</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
- <div class="prow-total">
|
|
|
+ <div class="prow-total" v-show="needShowPrice">
|
|
|
<span>¥</span>{{ item.goods_stock | sumPrice }}
|
|
|
</div>
|
|
|
</div>
|
|
@@ -59,14 +59,13 @@
|
|
|
</template>
|
|
|
<template v-else>
|
|
|
<div class="product-store__empty">
|
|
|
- 还未添加领用物品
|
|
|
+ {{ showEmptyTxt }}
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
-
|
|
|
<!-- NOTE: 弹窗提示批量导入 -->
|
|
|
<van-action-sheet v-model="productStoreActionsheetVisibility" :actions="actions" cancel-text="取消"
|
|
|
- close-on-click-action @cancel="onCancel" @select="handleSelectSheet">
|
|
|
+ close-on-click-action @select="handleSelectSheet">
|
|
|
<div class="action-sheet-container" slot="description" @click="handleDownloadHelp">
|
|
|
<div class="icon">
|
|
|
<img src="" alt="">
|
|
@@ -76,8 +75,7 @@
|
|
|
</div>
|
|
|
</van-action-sheet>
|
|
|
|
|
|
- <div class="tip" style="font-size: 14px;" @click="handleTips">导入提示</div>
|
|
|
-
|
|
|
+ <!-- NOTE: 上传的触发点 -->
|
|
|
<input ref="importTemlate" :accept="excelSuffix" type="file" name="file" id="file" @change="handleInputFileChange" />
|
|
|
</div>
|
|
|
</template>
|
|
@@ -259,10 +257,13 @@
|
|
|
|
|
|
<script>
|
|
|
|
|
|
+import { postImportFile, getImportTemplate } from '@/api/common';
|
|
|
import { excelSuffix } from '@/utils/constant'
|
|
|
+import { downloadFileUseATarget } from '@/utils/util';
|
|
|
import upload from '@/utils/upload';
|
|
|
import vueBus from '@/utils/vueBus';
|
|
|
|
|
|
+
|
|
|
export default {
|
|
|
name: 'CProductStore',
|
|
|
props: {
|
|
@@ -276,6 +277,14 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
computed: {
|
|
|
+ showEmptyTxt() {
|
|
|
+ return `还未添加${this.title}`
|
|
|
+ },
|
|
|
+
|
|
|
+ // NOTE: 只有采购商品时才展示价格等相关内容
|
|
|
+ needShowPrice() {
|
|
|
+ return ['1'].includes(this.type)
|
|
|
+ },
|
|
|
showList() {
|
|
|
return Boolean(this.list.length)
|
|
|
},
|
|
@@ -296,8 +305,6 @@ export default {
|
|
|
return title
|
|
|
},
|
|
|
renderInfoList() {
|
|
|
- console.log('--- renderInfoList??');
|
|
|
- // if (this.list.length < 2) return this.list
|
|
|
if (this.showMore) return this.list
|
|
|
return this.list.slice(0, 2)
|
|
|
}
|
|
@@ -400,13 +407,11 @@ export default {
|
|
|
}
|
|
|
]
|
|
|
}
|
|
|
+ console.log('%c printlog >>>', 'background: blue; color: #fff', _template_);
|
|
|
+
|
|
|
this.list = [...this.list, _template_]
|
|
|
}
|
|
|
},
|
|
|
- onCancel() {
|
|
|
- this.$toast('取消')
|
|
|
- // Toast('取消');
|
|
|
- },
|
|
|
|
|
|
handleSelectSheet(action, idx) {
|
|
|
switch (idx) {
|
|
@@ -414,7 +419,6 @@ export default {
|
|
|
this.handleDownloadTemplate()
|
|
|
break
|
|
|
case 1:
|
|
|
- // this.handleImportFile()
|
|
|
this.$refs.importTemlate.click()
|
|
|
break
|
|
|
}
|
|
@@ -422,18 +426,30 @@ export default {
|
|
|
/**
|
|
|
* @description 下载文件模板
|
|
|
*/
|
|
|
- handleDownloadTemplate() {
|
|
|
- this.$toast('通过a链接下载文件')
|
|
|
- // downloadFileUseATarget
|
|
|
+ async handleDownloadTemplate() {
|
|
|
+ try {
|
|
|
+ const formData = {
|
|
|
+ module: this.type
|
|
|
+ }
|
|
|
+ const result = await getImportTemplate(formData)
|
|
|
+ if (result.code === 1) {
|
|
|
+ const { url } = result.data
|
|
|
+ if (url) { // url 存在下载
|
|
|
+ downloadFileUseATarget(url)
|
|
|
+ } else this.$toast('请联系网络管理员')
|
|
|
+ }
|
|
|
+ } catch (error) {
|
|
|
+ console.log('%c handleDownloadTemplate >>>', 'background: blue; color: #fff', error);
|
|
|
+ }
|
|
|
},
|
|
|
|
|
|
// listener input:file change
|
|
|
- handleInputFileChange(event) {
|
|
|
+ async handleInputFileChange(event) {
|
|
|
let files = event.target.files
|
|
|
if (files.length) {
|
|
|
let file = files[0]
|
|
|
console.log('%c change file >>>', 'background: blue; color: #fff', file);
|
|
|
- this.handleImportFile(file)
|
|
|
+ await this.handleImportFile(file)
|
|
|
} else {
|
|
|
this.$refs.importTemlate.value = ''
|
|
|
}
|
|
@@ -442,48 +458,57 @@ export default {
|
|
|
// import file
|
|
|
async handleImportFile(file) {
|
|
|
try {
|
|
|
+ // update file
|
|
|
const fileHref = await upload(file)
|
|
|
- console.log('%c fileHref >>>', 'background: blue; color: #fff', fileHref);
|
|
|
-
|
|
|
- // TODO: 导入模板Api
|
|
|
- // const result = await postFileTemplate({
|
|
|
- // href: fileHref
|
|
|
- // })
|
|
|
- // if (result.code === 1) {
|
|
|
- // console.log('%c handleImportFile >>>', 'background: blue; color: #fff', result.data);
|
|
|
- // }
|
|
|
+
|
|
|
+ // post import file
|
|
|
+ const result = await postImportFile({
|
|
|
+ module: this.type,
|
|
|
+ url: fileHref.url
|
|
|
+ })
|
|
|
+
|
|
|
+ if (result.code === 1) {
|
|
|
+ const { error_list = [], success_list = [] } = result.data
|
|
|
+ if (error_list.length) {
|
|
|
+ // error_list => { msg: String }[]
|
|
|
+ this.handleTipsImport(error_list, success_list)
|
|
|
+ } else if (success_list.length) {
|
|
|
+ this.list = [
|
|
|
+ ...this.list,
|
|
|
+ ...success_list
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ }
|
|
|
} catch (error) {
|
|
|
console.log('%c handleImportFileError >>>', 'background: blue; color: #fff', error);
|
|
|
-
|
|
|
}
|
|
|
|
|
|
},
|
|
|
+
|
|
|
+ // TODO: 批量导入模板说明
|
|
|
// 下载批量导入说明
|
|
|
handleDownloadHelp() {
|
|
|
this.$toast('下载批量导入说明')
|
|
|
console.log('%c printlog >>>', 'background: blue; color: #fff',);
|
|
|
- // downloadFileUseATarget
|
|
|
+ // util/downloadFileUseATarget
|
|
|
},
|
|
|
|
|
|
- handleTips() {
|
|
|
+ // NOTE: 提醒某某商品库存不足。让用户选择是否申领/采购
|
|
|
+ handleTipsImport(errs, arrs) {
|
|
|
this.$dialog.confirm({
|
|
|
- message: `
|
|
|
- 1、导入的物品-学生秋季校服商品库不存在
|
|
|
- 2、导入的物品-老师办公用品A4纸商品库不存在
|
|
|
- 3、导入的物品-库存不足,缺少5件
|
|
|
- `,
|
|
|
+ message: errs.map((item, idx) => `${idx + 1}、${item.msg}}`).join('\t\n'),
|
|
|
confirmButtonText: '取消申领',
|
|
|
confirmButtonColor: 'rgba(0, 122, 255, 1)',
|
|
|
cancelButtonText: '按已有的库存申领'
|
|
|
- }).then(res => {
|
|
|
- // TODO: 取消申请
|
|
|
- console.log(res);
|
|
|
- }).catch(err => {
|
|
|
- // TODO: 继续领取
|
|
|
- console.log(err);
|
|
|
+ }).catch(() => {
|
|
|
+ this.list = [
|
|
|
+ ...this.list,
|
|
|
+ ...arrs
|
|
|
+ ]
|
|
|
})
|
|
|
},
|
|
|
|
|
|
+ // NOTE: 删除单项
|
|
|
handleRemoveRow(item, idx) {
|
|
|
let article = item.goods_name
|
|
|
this.$dialog.confirm({
|
|
@@ -518,9 +543,13 @@ export default {
|
|
|
// 前往商品库列表
|
|
|
handleGoPStore() {
|
|
|
this.$router.push({
|
|
|
- name: 'ProductStore'
|
|
|
+ name: 'ProductStore',
|
|
|
+ query: {
|
|
|
+ module: this.type
|
|
|
+ }
|
|
|
})
|
|
|
},
|
|
|
+
|
|
|
// NOTE: 添加新商品
|
|
|
handleAddGoods() {
|
|
|
this.$store.commit({
|