|
@@ -30,14 +30,14 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="product-list__rows">
|
|
|
- <!-- TODO: 数据结构未知暂不修改 -->
|
|
|
<div class="prow" v-for="(item, idx) in list" :key="idx">
|
|
|
<div class="prow-header flex flex-row flex-row-aic">
|
|
|
<div class="prow-header__left">
|
|
|
{{ 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>
|
|
@@ -45,12 +45,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>
|
|
@@ -60,14 +60,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="">
|
|
@@ -77,9 +76,7 @@
|
|
|
</div>
|
|
|
</van-action-sheet>
|
|
|
|
|
|
- <div class="tip" style="font-size: 14px;" @click="handleTips">导入提示</div>
|
|
|
- <div class="tip" style="font-size: 14px;" @click="handleTest">tips</div>
|
|
|
-
|
|
|
+ <!-- NOTE: 上传的触发点 -->
|
|
|
<input ref="importTemlate" :accept="excelSuffix" type="file" name="file" id="file" @change="handleInputFileChange" />
|
|
|
</div>
|
|
|
</template>
|
|
@@ -261,10 +258,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: {
|
|
@@ -278,6 +278,14 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
computed: {
|
|
|
+ showEmptyTxt() {
|
|
|
+ return `还未添加${this.title}`
|
|
|
+ },
|
|
|
+
|
|
|
+ // NOTE: 只有采购商品时才展示价格等相关内容
|
|
|
+ needShowPrice() {
|
|
|
+ return ['1'].includes(this.type)
|
|
|
+ },
|
|
|
showList() {
|
|
|
return Boolean(this.list.length)
|
|
|
},
|
|
@@ -298,8 +306,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)
|
|
|
}
|
|
@@ -338,16 +344,24 @@ export default {
|
|
|
if (Array.isArray(arrs) && arrs.length) this.list = [...arrs]
|
|
|
},
|
|
|
|
|
|
- handleTest() {
|
|
|
- this.list.push({ name: 1 })
|
|
|
- },
|
|
|
-
|
|
|
// NOTE: 处理新增和修改商品
|
|
|
// 更新 flag = 3。 新增 flag = 1
|
|
|
handleAddOrUpdateData(data) {
|
|
|
- console.log('%c add & update data >>>', 'background: blue; color: #fff', data);
|
|
|
-
|
|
|
+ if (!data) return
|
|
|
+ console.log('%c handle AddOrUpdate data >>>', 'background: blue; color: #fff', data);
|
|
|
+
|
|
|
+ const { flag } = data
|
|
|
+ if (flag === '3') { // update
|
|
|
+ // NOTE: 可能存在新商品无Id情况; 要兼容
|
|
|
+ const hasGoodsId = Boolean(data.goods_id)
|
|
|
+ if (!hasGoodsId) data.flag = '1'
|
|
|
+ let idx = this.list.findIndex(goods => hasGoodsId ? goods.goods_id === data.goods_id : goods.__id__ === data.__id__)
|
|
|
+ if (idx >= 0) this.list.splice(idx, 1, { ...data })
|
|
|
+ } else { // add
|
|
|
+ this.list.push({ ...data })
|
|
|
+ }
|
|
|
},
|
|
|
+
|
|
|
// NOTE: 商品库选择数据
|
|
|
handleUpdateList(data) {
|
|
|
const { customCount, goodsStock, item, GoodsPrice } = data
|
|
@@ -379,7 +393,6 @@ export default {
|
|
|
} else {
|
|
|
const _template_ = {
|
|
|
flag: 3,
|
|
|
- id: item.id,
|
|
|
goods_id: item.id,
|
|
|
goods_category_first: item.goods_category_first,
|
|
|
goods_category_id: item.goods_category_id,
|
|
@@ -395,13 +408,10 @@ 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) {
|
|
@@ -409,7 +419,6 @@ export default {
|
|
|
this.handleDownloadTemplate()
|
|
|
break
|
|
|
case 1:
|
|
|
- // this.handleImportFile()
|
|
|
this.$refs.importTemlate.click()
|
|
|
break
|
|
|
}
|
|
@@ -417,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 = ''
|
|
|
}
|
|
@@ -437,48 +458,56 @@ 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,
|
|
|
+ file: fileHref.url
|
|
|
+ })
|
|
|
+
|
|
|
+ if (result.code === 1) {
|
|
|
+ const { error_data = [], apply_goods_data = [] } = result.data
|
|
|
+ if (error_data.length) {
|
|
|
+ // error_list => { msg: String }[]
|
|
|
+ this.handleTipsImport(error_data, apply_goods_data)
|
|
|
+ } else if (apply_goods_data.length) {
|
|
|
+ this.list = [
|
|
|
+ ...this.list,
|
|
|
+ ...apply_goods_data
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ }
|
|
|
} catch (error) {
|
|
|
console.log('%c handleImportFileError >>>', 'background: blue; color: #fff', error);
|
|
|
-
|
|
|
}
|
|
|
|
|
|
},
|
|
|
- // 下载批量导入说明
|
|
|
+
|
|
|
+ // NOTE: 下载批量导入说明
|
|
|
+ // Useless. 功能忽略
|
|
|
handleDownloadHelp() {
|
|
|
- this.$toast('下载批量导入说明')
|
|
|
- console.log('%c printlog >>>', 'background: blue; color: #fff',);
|
|
|
- // downloadFileUseATarget
|
|
|
+ // util/downloadFileUseATarget
|
|
|
+ this.$toast('点击下载模板进行编辑上传')
|
|
|
},
|
|
|
|
|
|
- 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({
|
|
@@ -493,21 +522,33 @@ export default {
|
|
|
},
|
|
|
|
|
|
|
|
|
- // TODO: 更新领用数据时,是重新选择还是弹出弹框
|
|
|
- handleUpdateRow() {
|
|
|
- // this.$router.push({
|
|
|
- // name: 'ProductStore',
|
|
|
- // query
|
|
|
- // })
|
|
|
-
|
|
|
+ // NOTE: 编辑Row
|
|
|
+ handleUpdateRow(item) {
|
|
|
+ this.$store.commit({
|
|
|
+ type: "app/ROUTE_ADD",
|
|
|
+ value: "Goods"
|
|
|
+ })
|
|
|
+ this.$nextTick(() => {
|
|
|
+ this.$router.push({
|
|
|
+ name: 'Goods',
|
|
|
+ query: {
|
|
|
+ flag: '3',
|
|
|
+ edit: JSON.stringify(item)
|
|
|
+ }
|
|
|
+ })
|
|
|
+ })
|
|
|
},
|
|
|
|
|
|
// 前往商品库列表
|
|
|
handleGoPStore() {
|
|
|
this.$router.push({
|
|
|
- name: 'ProductStore'
|
|
|
+ name: 'ProductStore',
|
|
|
+ query: {
|
|
|
+ module: this.type
|
|
|
+ }
|
|
|
})
|
|
|
},
|
|
|
+
|
|
|
// NOTE: 添加新商品
|
|
|
handleAddGoods() {
|
|
|
this.$store.commit({
|
|
@@ -539,7 +580,6 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
beforeDestroy() {
|
|
|
- console.log('%c destory $off updateProductList >>>', 'background: blue; color: #fff',);
|
|
|
vueBus.$off('updateProductList')
|
|
|
vueBus.$off('changeGoods')
|
|
|
},
|