|
@@ -0,0 +1,191 @@
|
|
|
+<template>
|
|
|
+ <div class="procure-info-container flex flex-col">
|
|
|
+ <div class="main">
|
|
|
+ <div class="main-title">物品明细</div>
|
|
|
+ <div class="projects-box-wrapper" v-for="(item, idx) in list" :key="idx">
|
|
|
+ <div class="projects-box">
|
|
|
+ <div class="projects__header flex flex-row flex-row--aic">
|
|
|
+ <div class="title">{{ item.goods_name }}</div>
|
|
|
+ </div>
|
|
|
+ <div class="projects__footer">
|
|
|
+ <div class="tags flex flex-row flex-row-aic" v-for="(stock, tagidx) in item.goods_stock" :key="tagidx">
|
|
|
+ <span class="category_name">
|
|
|
+ {{ stock.name }}
|
|
|
+ </span>
|
|
|
+ <span class="category_count">x{{ stock.stock }}</span>
|
|
|
+ </div>
|
|
|
+ <div class="money">
|
|
|
+ ¥{{ item.total_price }}
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="footer flex flex-row flex-row-aic">
|
|
|
+ <div class="footer__item flex flex-col" @click="handleDownloadFileEvent">
|
|
|
+ <img :src="require('@/assets/icons-print.png')" alt="">
|
|
|
+ <span>下载文件</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+/**
|
|
|
+ * @name 采购明细详情
|
|
|
+ */
|
|
|
+
|
|
|
+import { SAVE_PROCURE_INFO_TEMPORARY } from '@/utils/constant'
|
|
|
+
|
|
|
+
|
|
|
+export default {
|
|
|
+ name: 'ProcureInfo',
|
|
|
+ data: () => ({
|
|
|
+ list: []
|
|
|
+ }),
|
|
|
+ created() {
|
|
|
+ this.init()
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ init() {
|
|
|
+ let arrs = localStorage.getItem(SAVE_PROCURE_INFO_TEMPORARY)
|
|
|
+ if (arrs) {
|
|
|
+ arrs = JSON.parse(arrs)
|
|
|
+ this.list = arrs.map(item => ({
|
|
|
+ ...item,
|
|
|
+ goods_stock: JSON.parse(item.goods_stock)
|
|
|
+ }))
|
|
|
+ console.log('%c list >>>', 'background: blue; color: #fff', this.list);
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
+ // NOTE: 下载文件
|
|
|
+ // TODO: 下载文件接口
|
|
|
+ handleDownloadFileEvent() {
|
|
|
+ try {
|
|
|
+ this.$toast('功能迭代中...')
|
|
|
+ } catch (error) {
|
|
|
+ console.log('download file err>>', error);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="less" scoped>
|
|
|
+@import url("@/styles/variables.less");
|
|
|
+
|
|
|
+.procure-info-container {
|
|
|
+ padding-top: 10px;
|
|
|
+ height: 100%;
|
|
|
+ box-sizing: border-box;
|
|
|
+
|
|
|
+
|
|
|
+ &>.main {
|
|
|
+ height: 0;
|
|
|
+ flex: 1;
|
|
|
+ overflow: auto;
|
|
|
+ padding: 10px 12px;
|
|
|
+ background-color: #fff;
|
|
|
+ }
|
|
|
+
|
|
|
+ .main-title {
|
|
|
+ font-size: 16px;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #727273;
|
|
|
+ line-height: 30px;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ .footer {
|
|
|
+ padding-top: 10px;
|
|
|
+ padding-bottom: 20px;
|
|
|
+ justify-content: center;
|
|
|
+
|
|
|
+ &__item {
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+
|
|
|
+ img {
|
|
|
+ width: 40px;
|
|
|
+ height: 40px;
|
|
|
+ }
|
|
|
+
|
|
|
+ span {
|
|
|
+ font-size: 14px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ // 商品明细
|
|
|
+ .projects {
|
|
|
+ &-box-wrapper {
|
|
|
+ padding: 16px 12px;
|
|
|
+ background-color: rgba(248, 248, 248, 1);
|
|
|
+ border-radius: 7px;
|
|
|
+ }
|
|
|
+
|
|
|
+ &-box {
|
|
|
+
|
|
|
+ .title,
|
|
|
+ .category_name {
|
|
|
+ font-size: @font-size-common;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #191A1E;
|
|
|
+ line-height: 18px;
|
|
|
+ }
|
|
|
+
|
|
|
+ &:last-child {
|
|
|
+ .projects__footer {
|
|
|
+ border-bottom: initial;
|
|
|
+ padding-bottom: initial;
|
|
|
+ margin-bottom: initial;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ &__header {
|
|
|
+ justify-content: space-between;
|
|
|
+ padding-bottom: 10px;
|
|
|
+ overflow: hidden;
|
|
|
+ }
|
|
|
+
|
|
|
+ &__footer {
|
|
|
+ padding-bottom: 10px;
|
|
|
+ border-bottom: 1px solid #D8D8D8;
|
|
|
+ margin-bottom: 10px;
|
|
|
+ overflow: hidden;
|
|
|
+
|
|
|
+ .tags {
|
|
|
+ justify-content: space-between;
|
|
|
+ padding: 2px 0;
|
|
|
+
|
|
|
+ .category {
|
|
|
+ &_name {
|
|
|
+ font-size: 14px;
|
|
|
+ color: #868686;
|
|
|
+ }
|
|
|
+
|
|
|
+ &_count {
|
|
|
+ font-size: @font-size-third;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #727273;
|
|
|
+ line-height: 18px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .money {
|
|
|
+ font-size: @font-size-common;
|
|
|
+ font-weight: 500;
|
|
|
+ line-height: 18px;
|
|
|
+ padding: 6px 0;
|
|
|
+ color: rgb(244, 86, 66);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|