123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753 |
- <template>
- <popu>
- <div class="app-container">
- <div class="menu-list">
- <div>
- <div class="main-title">
- <div class="title">常用菜单</div>
- <div class="el-icon-setting" @click="dialogVisible = !dialogVisible" />
- </div>
- <div class="child">
- <el-row :gutter="20">
- <el-col
- v-for="(it, idx) in normsMenuList"
- :key="idx"
- class="item"
- :span="4"
- style="margin-top: 16px; padding: 3px 20px"
- >
- <el-link class="link" :underline="false" @click="clickMenu(it.curUrl)">{{ it.moduleName }}</el-link>
- </el-col>
- </el-row>
- </div>
- </div>
- <div v-for="(item, index) in menuList" :key="index" class="group">
- <div v-if="item.moduleName != '首页'">
- <div class="main-title">
- <div class="title">{{ item.moduleName }}</div>
- </div>
- <div v-if="item.children && item.children.length" class="child">
- <el-row :gutter="20">
- <el-col v-for="(it, idx) in item.children" :key="idx" class="item" :span="4">
- <el-link class="link" :underline="false" @click="clickMenu(it.curUrl)">{{ it.moduleName }}</el-link>
- </el-col>
- </el-row>
- </div>
- <div v-else class="child">
- <div class="item">
- <el-link class="link" :underline="false" @click="clickMenu(item.curUrl)">{{ item.moduleName }}</el-link>
- </div>
- </div>
- </div>
- </div>
- </div>
- <!-- 弹窗 -->
- <el-dialog title="菜单配置" :visible.sync="dialogVisible" width="70%">
- <el-checkbox-group v-model="checkList" :max="10">
- <div v-for="(item, index) in menuList" :key="index" class="group">
- <div v-if="item.moduleName != '首页'">
- <div v-if="item.children && item.children.length" class="dia-child">
- <el-checkbox v-for="(it, idx) in item.children" :key="idx" :label="it.moduleId" class="dia-item">{{
- it.moduleName
- }}</el-checkbox>
- </div>
- <div v-else class="child">
- <el-checkbox class="dia-item" :label="item.moduleId">{{ item.moduleName }}</el-checkbox>
- </div>
- </div>
- </div>
- </el-checkbox-group>
- <div class="dia-tip">( {{ checkList.length }} / 10 )注:最多选10个导航菜单</div>
- <span slot="footer" class="dialog-footer">
- <el-button
- @click="
- dialogVisible = false
- checkList = []
- "
- >取 消</el-button
- >
- <el-button type="primary" @click="handleSaveMenu">确 定</el-button>
- </span>
- </el-dialog>
- <el-dialog
- title="消息"
- :visible.sync="showMessages"
- :append-to-body="true"
- width="50%"
- :show-close="false"
- :close-on-click-modal="false"
- >
- <el-radio-group v-model="type" size="mini" @change="checkFn">
- <el-radio-button label="1">系统通知</el-radio-button>
- <el-radio-button label="2">文件下发</el-radio-button>
- <el-radio-button label="3">返利确认单</el-radio-button>
- <el-radio-button label="4">物流通知</el-radio-button>
- <el-radio-button label="5">到货通知</el-radio-button>
- </el-radio-group>
- <br />
- <br />
- <!-- 系统通知 -->
- <div v-show="type == '1'" class="table">
- <el-table
- ref="table"
- v-loading="listLoading"
- class="cql"
- :data="dataList"
- element-loading-text="Loading"
- border
- fit
- highlight-current-row
- stripe
- >
- <el-table-column align="center" type="index" min-width="160" show-overflow-tooltip />
- <el-table-column align="center" label="标题" prop="title" min-width="160" show-overflow-tooltip />
- <el-table-column align="center" label="来源" prop="source" min-width="160" show-overflow-tooltip />
- <el-table-column align="center" label="时间" prop="issueTime" min-width="160" show-overflow-tooltip />
- <el-table-column align="center" label="" min-width="160" show-overflow-tooltip>
- <template slot-scope="scope">
- <el-button type="text" class="textColor" @click="lookInDialog(scope.row.id)">查看</el-button>
- </template>
- </el-table-column>
- </el-table>
- </div>
- <!-- 文件下发 -->
- <div v-show="type == '2'" class="table">
- <el-table
- ref="table"
- v-loading="listLoading"
- :data="fileList"
- element-loading-text="Loading"
- border
- fit
- highlight-current-row
- stripe
- >
- <el-table-column align="center" type="index" min-width="160" show-overflow-tooltip />
- <el-table-column align="center" label="标题" prop="title" min-width="160" show-overflow-tooltip />
- <el-table-column
- align="center"
- label="来源"
- prop="operatorNickName"
- min-width="160"
- show-overflow-tooltip
- />
- <el-table-column align="center" label="时间" prop="createTime" min-width="160" show-overflow-tooltip />
- <el-table-column align="center" label="操作" min-width="160" show-overflow-tooltip>
- <template slot-scope="scope">
- <el-button type="text" class="textColor" @click="downloadFn(scope.row.id)">下载</el-button>
- </template>
- </el-table-column>
- </el-table>
- </div>
- <!-- 返利确认单 -->
- <div v-show="type == '3'" class="table">
- <el-table
- ref="table"
- v-loading="listLoading"
- :data="rebateList"
- element-loading-text="Loading"
- border
- fit
- highlight-current-row
- stripe
- >
- <el-table-column align="center" type="index" min-width="160" show-overflow-tooltip />
- <el-table-column
- align="center"
- label="经销商名称"
- prop="customerName"
- min-width="160"
- show-overflow-tooltip
- />
- <el-table-column align="center" label="确认人" prop="examineBy" min-width="160" show-overflow-tooltip />
- <el-table-column align="center" label="确认时间" prop="examineTime" min-width="160" show-overflow-tooltip />
- <el-table-column align="center" label="" min-width="160" show-overflow-tooltip>
- <template slot-scope="scope">
- <el-button type="text" class="textColor" @click="secondFn(scope.row.rebateOrderId)">{{
- isCustomer ? '确认' : '复核'
- }}</el-button>
- </template>
- </el-table-column>
- </el-table>
- </div>
- <!-- 物流通知 -->
- <div v-show="type == '4'" class="table">
- <el-table
- ref="table"
- v-loading="listLoading"
- :data="invoiceOrderList"
- element-loading-text="Loading"
- border
- fit
- highlight-current-row
- stripe
- >
- <el-table-column align="center" type="index" min-width="160" show-overflow-tooltip />
- <el-table-column align="center" label="发货单" prop="id" min-width="160" show-overflow-tooltip>
- <template slot-scope="scope">
- <el-link v-if="!isCustomer" type="primary" :underline="false" @click="handleJump(scope.row.id)">{{
- scope.row.id
- }}</el-link>
- <template v-else>{{ scope.row.id }}</template>
- </template>
- </el-table-column>
- <el-table-column
- align="center"
- label="内容"
- prop="orderTrackStatus"
- min-width="160"
- show-overflow-tooltip
- />
- <el-table-column align="center" label="时间" prop="orderTrackTime" min-width="160" show-overflow-tooltip />
- <el-table-column align="center" label="收货地址" prop="address" min-width="160" show-overflow-tooltip>
- <template slot-scope="scope">
- {{ scope.row.address ? scope.row.address : '——' }}
- </template>
- </el-table-column>
- <el-table-column align="center" label="收货客户" prop="receivingName" min-width="160" show-overflow-tooltip>
- <template slot-scope="scope">{{ scope.row.receivingName ? scope.row.receivingName : '——' }}</template>
- </el-table-column>
- <el-table-column align="center" label="" min-width="80" show-overflow-tooltip fixed="right">
- <template slot-scope="scope">
- <el-button type="text" class="textColor" @click="handLogistics(scope.row)">查看</el-button>
- </template>
- </el-table-column>
- </el-table>
- </div>
- <!-- 到货通知 -->
- <div v-show="type == '5'" class="table">
- <el-table
- ref="table"
- v-loading="listLoading"
- :data="arrivalNoticeList"
- element-loading-text="Loading"
- border
- fit
- highlight-current-row
- stripe
- >
- <el-table-column
- property="materialOldNumber"
- align="left"
- min-width="120"
- label="产品编号"
- show-overflow-tooltip
- />
- <el-table-column
- property="materialNumber"
- align="left"
- min-width="100"
- label="物料编码"
- show-overflow-tooltip
- />
- <el-table-column
- property="materialName"
- align="left"
- min-width="250"
- label="产品名称"
- show-overflow-tooltip
- />
- <el-table-column
- property="specification"
- align="left"
- min-width="350"
- label="规格型号"
- show-overflow-tooltip
- />
- <el-table-column property="stockName" align="left" min-width="100" label="到货仓库" show-overflow-tooltip />
- <el-table-column
- property="updateTime"
- align="left"
- min-width="200"
- label="到货通知时间"
- show-overflow-tooltip
- />
- </el-table>
- </div>
- <br />
- <br />
- <!-- 分页 -->
- <div class="fr">
- <el-pagination
- :current-page="currentPage"
- :page-sizes="[10, 20, 30, 50]"
- :page-size="10"
- layout="total, sizes, prev, pager, next, jumper"
- :total="listTotal"
- @size-change="handleSizeChange"
- @current-change="handleCurrentChange"
- />
- </div>
- <br /><br />
- <!-- 内层弹窗 -->
- <el-dialog width="40%" title="消息标题" :visible.sync="inDialog" append-to-body>
- <div class="detail-container">
- <div class="title">{{ detailData.title }}</div>
- <div class="text">
- 发布人:{{ detailData.issueNickName }}<el-divider direction="vertical" />发布时间:{{
- detailData.issueTime
- }}
- </div>
- <el-divider />
- <div class="content">{{ detailData.content }}</div>
- <el-divider v-if="detailData.files && detailData.files.length > 0" />
- <div v-if="detailData.files && detailData.files.length > 0" class="file">
- <div>附件:</div>
- <div class="file-list">
- <div v-for="(item, index) in detailData.files" :key="index" class="item">
- <el-image
- v-if="checkFileType(item.url) == 'image'"
- class="img"
- :src="imageURL + item.url"
- :preview-src-list="[imageURL + item.url]"
- />
- <div v-else class="box2" @click="openLink(item.url)">
- <img v-if="checkFileType(item.url) == 'word'" src="@/assets/common/word.png" />
- <img v-if="checkFileType(item.url) == 'excel'" src="@/assets/common/excel.png" />
- <img v-if="checkFileType(item.url) == 'ppt'" src="@/assets/common/ppt.png" />
- <img v-if="checkFileType(item.url) == 'pdf'" src="@/assets/common/pdf.png" />
- <div class="name ellipsis-3">{{ item.name }}</div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <div slot="footer" class="dialog-footer">
- <el-button size="mini" type="primary" @click="confirmCheck(detailData.noticeId)">确认接收</el-button>
- <el-button size="mini" @click="inDialog = false">关 闭</el-button>
- </div>
- </el-dialog>
- <div slot="footer" class="dialog-footer">
- <el-button type="primary" size="mini" @click="closeFn">关闭</el-button>
- </div>
- </el-dialog>
- <el-dialog title="物流信息" :visible.sync="visible" width="60%" @close="onClose" :close-on-click-modal="false">
- <el-timeline class="logistics" :reverse="false" v-if="logisticsDetail.length">
- <el-timeline-item
- placement="top"
- type="success"
- v-for="(item, index) in logisticsDetail"
- :key="index"
- :timestamp="item.time"
- >
- <el-row :gutter="20">
- <el-col class="logistics-title"> {{ item.status }} </el-col>
- <el-col>
- <div class="flex">
- <div>{{ item.context }}</div>
- <!-- <div>{{ item.createTime }}</div> -->
- </div>
- </el-col>
- </el-row>
- </el-timeline-item>
- </el-timeline>
- <div v-else class="tip">暂无物流信息</div>
- </el-dialog>
- </div>
- </popu>
- </template>
- <script>
- import {
- getNoticeList,
- getComListList,
- getComListDownload,
- getNoticeDetail,
- confirmCheck,
- getRebateOrderList,
- getRouter,
- getMenuList,
- setMenuList,
- getListInvoiceOrder
- } from '@/api/dashboard'
- import { getArrivalNotice } from '@/api/stock'
- import { getListOrderTrack } from '@/api/supply/pickup'
- import { getFileUrl } from '@/api/common'
- import { mapGetters } from 'vuex'
- import popu from '@/components/template/popu.vue'
- export default {
- name: 'Dashboard',
- components: {
- popu
- },
- created() {
- this.getDataList({
- pageSize: this.pageSize,
- pageNum: this.currentPage,
- readFlag: false
- })
- getRouter({
- flag: 'index',
- adminUserId: this.userid
- }).then(res => {
- this.menuList = res.data
- console.log(res.data)
- })
- this.getMenuList()
- },
- computed: {
- ...mapGetters(['showMessages', 'userid', 'isCustomer'])
- },
- data() {
- return {
- imageURL: this.$imageUrl,
- type: '1',
- currentPage: 1, // 当前页码
- pageSize: 10, // 每页数量
- listTotal: 0, // 列表总数
- dataList: [],
- listLoading: false, // 列表加载loading
- fileList: [],
- inDialog: false,
- detailData: [],
- rebateList: [],
- // isCustomer: JSON.parse(localStorage.getItem('supply_user')).isCustomer,
- menuList: [],
- dialogVisible: false,
- checkList: [],
- normsMenuList: [],
- invoiceOrderList: [],
- bol: true,
- visible: false,
- orderId: '',
- logisticsDetail: []
- }
- },
- methods: {
- // 获取常用菜单列表
- getMenuList() {
- getMenuList().then(res => {
- this.normsMenuList = res.data
- if (this.normsMenuList.length) {
- this.normsMenuList.forEach(k => {
- this.checkList.push(k.moduleId)
- })
- }
- })
- },
- // 保存常用菜单
- handleSaveMenu() {
- setMenuList({ adminModuleIds: this.checkList.join(',') }).then(res => {
- this.$successMsg('设置成功')
- this.checkList = []
- this.getMenuList()
- this.dialogVisible = false
- })
- },
- // 打开链接
- openLink(url) {
- getFileUrl({ key: url }).then(res => {
- window.open(res.data)
- })
- },
- // 复核
- secondFn(id) {
- this.$router.push({
- path: '/finance/rebate/rebate_list',
- query: {
- id
- }
- })
- this.$store.commit('user/showMessage', 'no')
- },
- // 确认查收
- confirmCheck(id) {
- confirmCheck({ noticeIds: id }).then(res => {
- this.$successMsg('查收成功')
- this.inDialog = false
- this.getDataList({
- pageSize: this.pageSize,
- pageNum: this.currentPage,
- readFlag: false
- })
- })
- },
- // 检查文件类型
- checkFileType(url) {
- if (!url) return ''
- const fileSuffix = url.substring(url.lastIndexOf('.') + 1)
- if (['jpg', 'jpeg', 'png'].includes(fileSuffix)) {
- return 'image'
- } else if (['doc', 'docx', 'dot', 'wps', 'wpt'].includes(fileSuffix)) {
- return 'word'
- } else if (['xls', 'xlsx', 'xlt', 'et', 'ett'].includes(fileSuffix)) {
- return 'excel'
- } else if (['ppt', 'pptx', 'dps', 'dpt', 'pot', 'pps'].includes(fileSuffix)) {
- return 'ppt'
- } else if (['pdf'].includes(fileSuffix)) {
- return 'pdf'
- } else {
- return ''
- }
- },
- // 查看
- async lookInDialog(id) {
- const res = await getNoticeDetail({ id })
- // console.log(res, 7898);
- this.detailData = res.data
- this.inDialog = true
- },
- // 下载
- async downloadFn(id) {
- const res = await getComListDownload({ id })
- if (res.data) {
- window.open(this.imageURL + res.data)
- }
- },
- // 获取文件列表数据
- async getFileList(data) {
- const res = await getComListList(data)
- this.fileList = res.data.records
- this.listTotal = res.data.total
- },
- // 更改每页数量
- handleSizeChange(val) {
- this.pageSize = val
- this.currentPage = 1
- if (this.type == 1) {
- this.getDataList({
- pageSize: this.pageSize,
- pageNum: this.currentPage,
- readFlag: false
- })
- }
- if (this.type == 2) {
- this.getFileList({
- needDown: true,
- pageSize: this.pageSize,
- pageNo: this.currentPage
- })
- }
- if (this.type == 3) {
- this.getRebateList({
- pageSize: this.pageSize,
- pageNum: this.currentPage,
- isSecondExamine: false
- })
- }
- if (this.type == 4) {
- this.getListInvoiceOrder({
- pageSize: this.pageSize,
- pageNum: this.currentPage
- })
- }
- if (this.type == 5) {
- this.getArrivalNotice({
- pageSize: this.pageSize,
- pageNum: this.currentPage
- })
- }
- },
- // 更改当前页
- handleCurrentChange(val) {
- this.currentPage = val
- if (this.type == 1) {
- this.getDataList({
- pageSize: this.pageSize,
- pageNum: this.currentPage,
- readFlag: false
- })
- }
- if (this.type == 2) {
- this.getFileList({
- needDown: true,
- pageSize: this.pageSize,
- pageNo: this.currentPage
- })
- }
- if (this.type == 3) {
- this.getRebateList({
- pageSize: this.pageSize,
- pageNum: this.currentPage,
- isSecondExamine: false
- })
- }
- if (this.type == 4) {
- this.getListInvoiceOrder({
- pageSize: this.pageSize,
- pageNum: this.currentPage
- })
- }
- if (this.type == 5) {
- this.getArrivalNotice({
- pageSize: this.pageSize,
- pageNum: this.currentPage
- })
- }
- },
- // 获取返利确认单数据
- async getRebateList(data) {
- const res = await getRebateOrderList(data)
- this.rebateList = res.data.records
- this.listTotal = res.data.total
- },
- // 获取列表数据
- async getDataList(data) {
- const res = await getNoticeList(data)
- console.log(res)
- this.dataList = res.data.records
- this.listTotal = res.data.total
- },
- // 获取物流列表
- async getListInvoiceOrder(data) {
- const res = await getListInvoiceOrder(data)
- this.invoiceOrderList = res.data.records
- this.listTotal = res.data.total
- },
- async getArrivalNotice(data) {
- const res = await getArrivalNotice(data)
- this.arrivalNoticeList = res.data.records
- this.listTotal = res.data.total
- },
- // 选择
- checkFn(v) {
- this.$refs.table.doLayout()
- this.type = v
- if (v == 1) {
- this.getDataList({
- pageSize: this.pageSize,
- pageNum: this.currentPage,
- readFlag: false
- })
- }
- if (v == 2) {
- this.getFileList({
- needDown: true,
- pageSize: this.pageSize,
- pageNo: this.currentPage
- })
- }
- if (v == 3) {
- this.getRebateList({
- pageSize: this.pageSize,
- pageNum: this.currentPage,
- isSecondExamine: false
- })
- }
- if (v == 4) {
- this.getListInvoiceOrder({
- pageSize: this.pageSize,
- pageNum: this.currentPage
- })
- }
- if (this.type == 5) {
- this.getArrivalNotice({
- pageSize: this.pageSize,
- pageNum: this.currentPage
- })
- }
- },
- // 关闭
- closeFn() {
- this.$store.commit('user/showMessage', 'no')
- },
- // 点击菜单
- clickMenu(path) {
- const curlArr = ['/notice', '/issue']
- if (curlArr.includes(path)) {
- path += '/index'
- }
- this.$router.push({
- path
- })
- },
- handLogistics(row) {
- getListOrderTrack({ orderId: row.id }).then(res => {
- this.logisticsDetail = res.data
- })
- this.orderId = row.id
- this.visible = true
- },
- onClose() {
- this.logisticsDetail = []
- this.orderId = ''
- this.visible = false
- },
- handleJump(id) {
- this.$router.push({ path: `/exwarehouse/sum_list?id=${id}` })
- this.$store.commit('user/SET_MESSAGE', false)
- this.inDialog = false
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .dashboard {
- &-container {
- background: #f5f5f5;
- padding: 30px;
- min-height: calc(100vh - 86px);
- .top-container {
- .today-content {
- font-size: 14px;
- }
- }
- }
- }
- .cql {
- ::v-deep.el-table__header-wrapper {
- background-color: #f5f7fa;
- }
- }
- .dia-menu-title {
- padding: 10px 0;
- color: #000;
- font-weight: bold;
- }
- .dia-tip {
- padding: 10px 0;
- color: #000;
- font-weight: bold;
- }
- .dia-child {
- display: flex;
- flex-wrap: wrap;
- }
- .dia-item {
- flex: 0 1 220px;
- padding: 3px 0;
- }
- .menu-list {
- .main-title {
- margin: 10px 0 0;
- .el-icon-setting {
- cursor: pointer;
- font-size: 22px;
- }
- }
- .group {
- margin-bottom: 20px;
- .child {
- display: flex;
- flex-wrap: wrap;
- padding-left: 10px;
- .el-row {
- width: 100%;
- }
- .item {
- margin-top: 16px;
- }
- }
- }
- ::v-deep .el-link--inner {
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- }
- .logistics-title {
- padding-bottom: 10px;
- }
- .tip {
- height: 200px;
- text-align: center;
- line-height: 200px;
- }
- </style>
|