|
@@ -0,0 +1,247 @@
|
|
|
|
+<template>
|
|
|
|
+ <div class="product-store-container">
|
|
|
|
+ <div class="product-store__header flex flex-row flex-row-aic">
|
|
|
|
+ <div class="left-title">
|
|
|
|
+ <span>领用明细</span>
|
|
|
|
+ <span class="required">*</span>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="right-content flex flex-row flex-row-aic">
|
|
|
|
+ <span @click="productStoreActionsheetVisibility = true" >批量导入</span>
|
|
|
|
+ <span class="divider"></span>
|
|
|
|
+ <span @click="handleGoPStore">商品库选择</span>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <template v-if="list.length">
|
|
|
|
+ </template>
|
|
|
|
+
|
|
|
|
+ <template v-else>
|
|
|
|
+ <div class="product-store__empty">
|
|
|
|
+ 还未添加领用物品
|
|
|
|
+ </div>
|
|
|
|
+ </template>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ <!-- NOTE: 弹窗提示批量导入 -->
|
|
|
|
+ <van-action-sheet
|
|
|
|
+ v-model="productStoreActionsheetVisibility"
|
|
|
|
+ :actions="actions"
|
|
|
|
+ cancel-text="取消"
|
|
|
|
+ close-on-click-action
|
|
|
|
+ @cancel="onCancel"
|
|
|
|
+ @select="handleSelectSheet"
|
|
|
|
+ >
|
|
|
|
+ <div
|
|
|
|
+ class="action-sheet-container"
|
|
|
|
+ slot="description"
|
|
|
|
+ @click="handleDownloadHelp">
|
|
|
|
+ <div class="icon">
|
|
|
|
+ <img src="" alt="">
|
|
|
|
+ </div>
|
|
|
|
+ <div class="title">批量导入方法说明.Excel</div>
|
|
|
|
+ <div class="sub-title">264.45 KB</div>
|
|
|
|
+ </div>
|
|
|
|
+ </van-action-sheet>
|
|
|
|
+
|
|
|
|
+ <div class="tip" style="font-size: 14px;" @click="handleTips">tishi</div>
|
|
|
|
+
|
|
|
|
+ <input
|
|
|
|
+ ref="importTemlate"
|
|
|
|
+ :accept="excelSuffix"
|
|
|
|
+ type="file"
|
|
|
|
+ name="file"
|
|
|
|
+ id="file"
|
|
|
|
+ @change="handleInputFileChange"
|
|
|
|
+ />
|
|
|
|
+ </div>
|
|
|
|
+</template>
|
|
|
|
+
|
|
|
|
+<style lang="less" scoped>
|
|
|
|
+@import url('@/styles/variables.less');
|
|
|
|
+.product-store {
|
|
|
|
+ &-container {
|
|
|
|
+ margin-top: 10px;
|
|
|
|
+
|
|
|
|
+ #file {
|
|
|
|
+ font-size: 0;
|
|
|
|
+ width: 0;
|
|
|
|
+ height: 0;
|
|
|
|
+ visibility: hidden;
|
|
|
|
+ line-height: 0;
|
|
|
|
+ padding-block: 0;
|
|
|
|
+ padding-inline: 0;
|
|
|
|
+ position: absolute;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ &__header {
|
|
|
|
+ padding: 4px 12px 8px;
|
|
|
|
+ justify-content: space-between;
|
|
|
|
+ .left-title {
|
|
|
|
+ font-size: @font-size-common;
|
|
|
|
+ color: #727273;
|
|
|
|
+ .required {
|
|
|
|
+ color: red;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ .right-content {
|
|
|
|
+ font-size: @font-size-third;
|
|
|
|
+ span {
|
|
|
|
+ color: @link-color;
|
|
|
|
+ }
|
|
|
|
+ .divider {
|
|
|
|
+ display: inline-block;
|
|
|
|
+ width: 1px;
|
|
|
|
+ height: 10px;
|
|
|
|
+ margin: 0 8px;
|
|
|
|
+ background-color: rgba(151, 151, 151, 0.5);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ &__empty {
|
|
|
|
+ font-size: @font-size-secondery;
|
|
|
|
+ font-weight: 400;
|
|
|
|
+ color: #191A1E;
|
|
|
|
+ line-height: 20px;
|
|
|
|
+ padding: 15px 12px;
|
|
|
|
+ background-color: @white;
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+.action-sheet-container {
|
|
|
|
+ .icon {
|
|
|
|
+ img {
|
|
|
|
+ width: 35px;
|
|
|
|
+ height: 42px;
|
|
|
|
+ background: #DFECFD;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ .title {
|
|
|
|
+ font-size: 12px;
|
|
|
|
+ font-weight: 400;
|
|
|
|
+ color: #191A1E;
|
|
|
|
+ line-height: 18px;
|
|
|
|
+ }
|
|
|
|
+ .sub-title {
|
|
|
|
+ font-size: 12px;
|
|
|
|
+ font-weight: 400;
|
|
|
|
+ color: #9A9A9A;
|
|
|
|
+ line-height: 18px;
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+</style>
|
|
|
|
+
|
|
|
|
+<script>
|
|
|
|
+
|
|
|
|
+import { excelSuffix } from '@/utils/constant'
|
|
|
|
+import upload from '@/utils/upload';
|
|
|
|
+import vueBus from '@/utils/vueBus';
|
|
|
|
+
|
|
|
|
+export default {
|
|
|
|
+ name: 'CProductStore',
|
|
|
|
+ data: () => ({
|
|
|
|
+ excelSuffix: excelSuffix.join(','),
|
|
|
|
+ productStoreActionsheetVisibility: false,
|
|
|
|
+ actions: [
|
|
|
|
+ { name: '下载模板', color: 'rgba(0, 122, 255, 1)' },
|
|
|
|
+ { name: '导入模板', color: 'rgba(0, 122, 255, 1)' },
|
|
|
|
+ ],
|
|
|
|
+ list: []
|
|
|
|
+ }),
|
|
|
|
+
|
|
|
|
+ created () {
|
|
|
|
+ vueBus.$on('updateProductList', this.handleUpdateList)
|
|
|
|
+ },
|
|
|
|
+ methods: {
|
|
|
|
+ handleUpdateList(data) {
|
|
|
|
+ console.log('emit', data);
|
|
|
|
+ },
|
|
|
|
+ onCancel() {
|
|
|
|
+ this.$toast('取消')
|
|
|
|
+ // Toast('取消');
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ handleSelectSheet (action, idx) {
|
|
|
|
+ switch(idx) {
|
|
|
|
+ case 0:
|
|
|
|
+ this.handleDownloadTemplate()
|
|
|
|
+ break
|
|
|
|
+ case 1:
|
|
|
|
+ // this.handleImportFile()
|
|
|
|
+ this.$refs.importTemlate.click()
|
|
|
|
+ break
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ /**
|
|
|
|
+ * @description 下载文件模板
|
|
|
|
+ */
|
|
|
|
+ handleDownloadTemplate () {
|
|
|
|
+ this.$toast('通过a链接下载文件')
|
|
|
|
+ // downloadFileUseATarget
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ // listener input:file change
|
|
|
|
+ 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)
|
|
|
|
+ } else {
|
|
|
|
+ this.$refs.importTemlate.value = ''
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ // import file
|
|
|
|
+ async handleImportFile (file) {
|
|
|
|
+ try {
|
|
|
|
+ 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);
|
|
|
|
+ // }
|
|
|
|
+ } catch (error) {
|
|
|
|
+ console.log('%c handleImportFileError >>>', 'background: blue; color: #fff', error);
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ },
|
|
|
|
+ // 下载批量导入说明
|
|
|
|
+ handleDownloadHelp () {
|
|
|
|
+ this.$toast('下载批量导入说明')
|
|
|
|
+ console.log('%c printlog >>>', 'background: blue; color: #fff', );
|
|
|
|
+ // downloadFileUseATarget
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ handleTips () {
|
|
|
|
+ this.$dialog.confirm({
|
|
|
|
+ message: `
|
|
|
|
+ 1、导入的物品-学生秋季校服商品库不存在
|
|
|
|
+ 2、导入的物品-老师办公用品A4纸商品库不存在
|
|
|
|
+ 3、导入的物品-库存不足,缺少5件
|
|
|
|
+ `,
|
|
|
|
+ confirmButtonText: '取消申领',
|
|
|
|
+ confirmButtonColor: 'rgba(0, 122, 255, 1)',
|
|
|
|
+ cancelButtonText: '按已有的库存申领'
|
|
|
|
+ }).then(res => {
|
|
|
|
+ // TODO: 取消申请
|
|
|
|
+ console.log(res);
|
|
|
|
+ }).catch(err => {
|
|
|
|
+ // TODO: 继续领取
|
|
|
|
+ console.log(err);
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ // 前往商品库列表
|
|
|
|
+ handleGoPStore () {
|
|
|
|
+ this.$router.push({
|
|
|
|
+ name: 'ProductStore'
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ beforeDestroy () {
|
|
|
|
+ vueBus.$off('updateProductList', this.handleUpdateList)
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+</script>
|