|
@@ -3,11 +3,14 @@
|
|
|
<div class="detail-rows-container__title flex flex-row flex-aic">
|
|
|
<div>
|
|
|
<span>{{ title }}</span>
|
|
|
- <!-- TODO: 物品明细 - 下载按钮 -->
|
|
|
+ <span v-if="$attrs.module === 4 && type === 'projects'" class="download-info"
|
|
|
+ @click="handleDownloadInfo($attrs.id)">
|
|
|
+ <img src="../../../assets/approve/download.png" alt="">
|
|
|
+ 下载
|
|
|
+ </span>
|
|
|
</div>
|
|
|
|
|
|
- <!-- TODO: 采购明细 展开&收起 -->
|
|
|
- <div class="more-box" v-if="type === 'projects'" @click="() => more = !more">
|
|
|
+ <div class="more-box" v-if="type === 'projects' && value.length > 2" @click="() => more = !more">
|
|
|
<span>{{ moreText }}</span>
|
|
|
<van-icon v-if="more" name="arrow-up" />
|
|
|
<van-icon v-else name="arrow-down" />
|
|
@@ -17,43 +20,44 @@
|
|
|
<div v-if="[undefined, ''].includes(type)" class="value value--common">{{ value }}</div>
|
|
|
<div class="value value--link" v-else-if="type === 'link'">{{ value }}</div>
|
|
|
|
|
|
- <!-- TODO: 后期添加 filter -->
|
|
|
<div class="value value--common" v-else-if="type === 'date'">{{ value }}</div>
|
|
|
|
|
|
- <!-- TODO: 类型枚举 -->
|
|
|
<div class="value value--common" v-else-if="type === 'type'">{{ value }}</div>
|
|
|
|
|
|
- <!-- TODO: 明细 后期会有更加细致的划分。 因为有11种模块 -->
|
|
|
+ <!-- : 明细 后期会有更加细致的划分 -->
|
|
|
<template v-else-if="type === 'projects'">
|
|
|
<!-- 采购商品明细 -->
|
|
|
+ <!-- 领用明细 -->
|
|
|
+ <!-- 入库明细 -->
|
|
|
+
|
|
|
<div class="projects-box-wrapper">
|
|
|
- <div class="projects-box" v-for="(item, idx) in value" :key="idx">
|
|
|
+ <div class="projects-box" v-for="(item, idx) in handleListenMore(value)" :key="idx">
|
|
|
<div class="projects__header flex flex-row flex-row--aic">
|
|
|
- <div class="title">{{ item.projectName }}</div>
|
|
|
- <div class="count">x{{ item.count }}</div>
|
|
|
+ <div class="title">{{ item.goods_name }}</div>
|
|
|
</div>
|
|
|
- <div class="projects__footer flex flex-row flex-row-aic">
|
|
|
- <div class="tags">
|
|
|
- <span v-for="(tag, tagidx) in item.tags" :key="tagidx">
|
|
|
- {{ tag }} {{ item.tags.length - 1 !== tagidx ? ';' : '' }}
|
|
|
+ <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.money }}
|
|
|
+ <div class="money" v-if="$attrs.module === 1">
|
|
|
+ ¥{{ item.total_price }}
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
-
|
|
|
</template>
|
|
|
|
|
|
-
|
|
|
<!-- NOTE: 附件材料 -->
|
|
|
<template v-else-if="type === 'files'">
|
|
|
<div class="files-container">
|
|
|
- <div class="files-row flex flex-row flex-row-aic" v-for="(file, idx) in value" :key="idx">
|
|
|
+ <div class="files-row flex flex-row flex-row-aic" v-for="(file, idx) in handleFormatFiles(value)"
|
|
|
+ :key="idx">
|
|
|
<div class="icon">
|
|
|
- <!-- NOTE: 根据文件类型放置Icon -->
|
|
|
+ <img :src="handleGetFileImgPath(file.type)" alt="">
|
|
|
</div>
|
|
|
<div class="files-row__info">
|
|
|
<div class="files-name">{{ file.name }}</div>
|
|
@@ -63,7 +67,6 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
-
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
@@ -82,6 +85,12 @@
|
|
|
<script>
|
|
|
import { ImagePreview } from 'vant'
|
|
|
|
|
|
+import { getStaticLinkInfo } from '@/utils/util'
|
|
|
+
|
|
|
+import { excelSuffix, wordSuffix, pdfSuffix, pictureSuffix } from '@/utils/constant'
|
|
|
+
|
|
|
+// import { downloadFileUseATarget } from '@/utils/util';
|
|
|
+
|
|
|
export default {
|
|
|
props: {
|
|
|
title: {
|
|
@@ -112,22 +121,82 @@ export default {
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
- more: true, // 展开与收起的`more`key
|
|
|
+ excelSuffix,
|
|
|
+ wordSuffix,
|
|
|
+ pdfSuffix,
|
|
|
+ pictureSuffix,
|
|
|
+ more: false, // 展开与收起的`more`keyword
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
+ // NOTE: 根据类型获取图片链接
|
|
|
+ handleGetFileImgPath(type) {
|
|
|
+ if (pictureSuffix.includes(type)) return require("../../../assets/icon-pic.png")
|
|
|
+ else if (wordSuffix.includes(type)) return require("../../../assets/icon-word.png")
|
|
|
+ else if (pdfSuffix.includes(type)) return require("../../../assets/icon-pdf.png")
|
|
|
+ else if (excelSuffix.includes(type)) return require("../../../assets/icon-excel.png")
|
|
|
+ return ""
|
|
|
+ },
|
|
|
// TODO: Review files
|
|
|
handleReviewFiles(file, index) {
|
|
|
- console.log('handleReviewFile', file, index);
|
|
|
+ if (pictureSuffix.includes(file.type)) {
|
|
|
+ ImagePreview({
|
|
|
+ images: [file.url],
|
|
|
+ startPosition: 0
|
|
|
+ })
|
|
|
+ } else {
|
|
|
+ console.log('handleReviewFile, 等待开发', file, index);
|
|
|
+ }
|
|
|
},
|
|
|
|
|
|
- // NOTE: Review images
|
|
|
+ // Review images
|
|
|
handleReviewImages(files, idx) {
|
|
|
ImagePreview({
|
|
|
images: files.map(file => file.url),
|
|
|
startPosition: idx
|
|
|
})
|
|
|
+ },
|
|
|
+
|
|
|
+ // NOTE: 根据 `more` 字段展示数据内容
|
|
|
+ handleListenMore(list) {
|
|
|
+ let more = this.more
|
|
|
+ let len = list.length
|
|
|
+ if (len > 2 && !more) return list.slice(0, 2)
|
|
|
+ return list
|
|
|
+ },
|
|
|
+
|
|
|
+ // NOTE: 加工 files 数组
|
|
|
+ handleFormatFiles(files) {
|
|
|
+ return files.map(file => {
|
|
|
+ const { name, suffix, url } = getStaticLinkInfo(file.url)
|
|
|
+ return {
|
|
|
+ url,
|
|
|
+ type: suffix,
|
|
|
+ name
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+
|
|
|
+ // TODO: Download goods info
|
|
|
+ // TODO: 缺少接口
|
|
|
+ async handleDownloadInfo(id) {
|
|
|
+ try {
|
|
|
+ console.log('%c info-id >>>', 'background: blue; color: #fff', id);
|
|
|
+ // 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);
|
|
|
+ }
|
|
|
}
|
|
|
+
|
|
|
}
|
|
|
|
|
|
}
|
|
@@ -155,6 +224,16 @@ export default {
|
|
|
margin-left: 2px;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ .download-info {
|
|
|
+ margin-left: 10px;
|
|
|
+ color: @link-color;
|
|
|
+
|
|
|
+ img {
|
|
|
+ width: 12px;
|
|
|
+ height: 12px;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
.value {
|
|
@@ -183,20 +262,13 @@ export default {
|
|
|
&-box {
|
|
|
|
|
|
.title,
|
|
|
- .tags {
|
|
|
+ .category_name {
|
|
|
font-size: @font-size-common;
|
|
|
font-weight: 400;
|
|
|
color: #191A1E;
|
|
|
line-height: 18px;
|
|
|
}
|
|
|
|
|
|
- .count {
|
|
|
- font-size: @font-size-third;
|
|
|
- font-weight: 400;
|
|
|
- color: #727273;
|
|
|
- line-height: 18px;
|
|
|
- }
|
|
|
-
|
|
|
&:last-child {
|
|
|
.projects__footer {
|
|
|
border-bottom: initial;
|
|
@@ -213,17 +285,36 @@ export default {
|
|
|
}
|
|
|
|
|
|
&__footer {
|
|
|
- justify-content: space-between;
|
|
|
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;
|
|
|
- color: rgb(244, 86, 66);
|
|
|
line-height: 18px;
|
|
|
+ padding: 6px 0;
|
|
|
+ color: rgb(244, 86, 66);
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -238,15 +329,14 @@ export default {
|
|
|
|
|
|
&-row {
|
|
|
.icon {
|
|
|
- width: 35px;
|
|
|
- height: 42px;
|
|
|
- background: #FFCF95;
|
|
|
+ width: 40px;
|
|
|
+ height: 40px;
|
|
|
margin-right: 12px;
|
|
|
- border-radius: 6px;
|
|
|
- overflow: hidden;
|
|
|
- }
|
|
|
|
|
|
- // &__info {}
|
|
|
+ img {
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
&-name {
|