报价单中标管理
parent
2113567b7d
commit
82e7439766
@ -0,0 +1,19 @@
|
|||||||
|
import request from '@/plugin/axios'
|
||||||
|
|
||||||
|
// 获得报价单产品中标分页
|
||||||
|
export function getQuotationSheetBiddingPage(query) {
|
||||||
|
return request({
|
||||||
|
url: '/bs/quotation-sheet/pageBidding',
|
||||||
|
method: 'get',
|
||||||
|
params: query
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// 获得报价单产品中标
|
||||||
|
export function getQuotationSheetBidding(id) {
|
||||||
|
return request({
|
||||||
|
url: '/bs/quotation-sheet/getBidding?id=' + id,
|
||||||
|
method: 'get'
|
||||||
|
})
|
||||||
|
}
|
@ -0,0 +1,187 @@
|
|||||||
|
<template>
|
||||||
|
<div class="student-card common-list-contain">
|
||||||
|
<div class="student-base">
|
||||||
|
<div class="list-box">
|
||||||
|
<!-- <div class="box-lf">
|
||||||
|
<van-image width="3rem" height="3rem" fit="cover" :src="require('@/assets/images/invoice.png')" />
|
||||||
|
<div class="bt">{{}}</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="box-cr">
|
||||||
|
<div class="cr-bt" style="margin-top: 0.6rem">
|
||||||
|
<!-- <div
|
||||||
|
class="tags"
|
||||||
|
:style="`border: 1px solid ${
|
||||||
|
handleFilterStatus(
|
||||||
|
DICT_TYPE.BS_EXPENSE_APPLY_STATUS,
|
||||||
|
itemData.status
|
||||||
|
).color
|
||||||
|
};color:${
|
||||||
|
handleFilterStatus(
|
||||||
|
DICT_TYPE.BS_EXPENSE_APPLY_STATUS,
|
||||||
|
itemData.status
|
||||||
|
).color
|
||||||
|
}`"
|
||||||
|
>
|
||||||
|
{{
|
||||||
|
handleFilterStatus(
|
||||||
|
DICT_TYPE.BS_EXPENSE_APPLY_STATUS,
|
||||||
|
itemData.status
|
||||||
|
).label
|
||||||
|
}}
|
||||||
|
</div> -->
|
||||||
|
</div>
|
||||||
|
<div class="ct-md">
|
||||||
|
<div style="margin-top: 0.3rem; color: #333">
|
||||||
|
报价编号: {{ itemData.number }}
|
||||||
|
</div>
|
||||||
|
<div style="margin-top: 0.3rem; color: #333">
|
||||||
|
产品名称: {{ itemData.productName }}
|
||||||
|
</div>
|
||||||
|
<div style="margin-top: 0.3rem; color: #333">
|
||||||
|
招标方式:
|
||||||
|
{{
|
||||||
|
getDictDataLabel(DICT_TYPE.BS_QUOTATION_TYPE, itemData.type) ||
|
||||||
|
''
|
||||||
|
}}
|
||||||
|
</div>
|
||||||
|
<div style="margin-top: 0.3rem; color: #333">
|
||||||
|
申请人: {{ itemData.applicantName }}
|
||||||
|
</div>
|
||||||
|
<div style="margin-top: 0.3rem; color: #333">
|
||||||
|
报价截止时间:
|
||||||
|
{{
|
||||||
|
itemData.cutoffTime &&
|
||||||
|
dayjs(itemData.cutoffTime).format('YY/MM/DD')
|
||||||
|
}}
|
||||||
|
</div>
|
||||||
|
<div style="margin-top: 0.3rem; color: #333">
|
||||||
|
中标状态:
|
||||||
|
{{
|
||||||
|
getDictDataLabel(DICT_TYPE.BS_SUPPLIER_TYPE, itemData.isWin) ||
|
||||||
|
''
|
||||||
|
}}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="box-rt">
|
||||||
|
<van-icon
|
||||||
|
class="icon-box"
|
||||||
|
@click="handleShow(itemData.id)"
|
||||||
|
name="eye-o"
|
||||||
|
color="#05A9FF"
|
||||||
|
size="25"
|
||||||
|
/>
|
||||||
|
<van-icon
|
||||||
|
class="icon-box"
|
||||||
|
v-hasPermi="['bs:customer-contract:update']"
|
||||||
|
@click="handleEdit(itemData.id, itemData.status, itemData.creator)"
|
||||||
|
name="edit"
|
||||||
|
:color="
|
||||||
|
!(
|
||||||
|
itemData.status == 0 ||
|
||||||
|
(itemData.status == 3 && userInfo.id == itemData.creator)
|
||||||
|
)
|
||||||
|
? '#ccc'
|
||||||
|
: ''
|
||||||
|
"
|
||||||
|
size="25"
|
||||||
|
/>
|
||||||
|
<van-icon
|
||||||
|
class="icon-box"
|
||||||
|
v-hasPermi="['bs:customer-contract:delete']"
|
||||||
|
@click="handleDel(itemData.id, itemData.status, itemData.creator)"
|
||||||
|
name="delete-o"
|
||||||
|
:color="
|
||||||
|
!(
|
||||||
|
itemData.status == 0 ||
|
||||||
|
(itemData.status == 3 && userInfo.id == itemData.creator)
|
||||||
|
)
|
||||||
|
? '#ccc'
|
||||||
|
: '#EC3359'
|
||||||
|
"
|
||||||
|
size="25"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { getDictDataLabel, handleFilterStatus } from '@/utils/dict'
|
||||||
|
import dayjs from 'dayjs'
|
||||||
|
import { Dialog } from 'vant'
|
||||||
|
export default {
|
||||||
|
props: {
|
||||||
|
itemData: {
|
||||||
|
required: true,
|
||||||
|
default: () => {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
components: {},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
jumoStudentId: null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
activated() {
|
||||||
|
if (this.jumoStudentId) {
|
||||||
|
this.handleUpdataInfo()
|
||||||
|
}
|
||||||
|
},
|
||||||
|
mounted() {},
|
||||||
|
computed: {
|
||||||
|
userInfo() {
|
||||||
|
return JSON.parse(window.localStorage.getItem('userInfo') || { dept: {} })
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
handleMerge(id, status) {
|
||||||
|
if (status == 0) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
},
|
||||||
|
handleEdit(id, status, creator) {
|
||||||
|
if (!(status == 0 || (status == 3 && this.userInfo.id == creator))) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
this.jumoStudentId = id
|
||||||
|
this.$router.push({
|
||||||
|
path: '/custom',
|
||||||
|
query: { id, type: 'edit' }
|
||||||
|
})
|
||||||
|
},
|
||||||
|
/* handleDel(id, status, creator) {
|
||||||
|
if (!(status == 0 || (status == 3 && this.userInfo.id == creator))) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
Dialog.confirm({
|
||||||
|
title: '提示',
|
||||||
|
message: '你确定要删除吗?'
|
||||||
|
}).then(() => {
|
||||||
|
deleteCustomerContract(id).then(() => {
|
||||||
|
this.$emit('onAllRefresh')
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}, */
|
||||||
|
handleFilterStatus,
|
||||||
|
getDictDataLabel,
|
||||||
|
handleShow(id) {
|
||||||
|
this.jumoStudentId = id
|
||||||
|
this.$router.push({
|
||||||
|
path: '/quotationSheetBidding',
|
||||||
|
query: { id, type: 'show' }
|
||||||
|
})
|
||||||
|
},
|
||||||
|
dayjs,
|
||||||
|
handleUpdataInfo() {
|
||||||
|
this.jumoStudentId = null
|
||||||
|
this.$emit('onUpdataInfo', this.itemData.id)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
@import '@/assets/style/common/newList.scss';
|
||||||
|
</style>
|
@ -0,0 +1,253 @@
|
|||||||
|
<template>
|
||||||
|
<div id="orderHeader">
|
||||||
|
<div class="hf-l-seacrch" v-if="isActSearch">
|
||||||
|
<form action="/">
|
||||||
|
<van-search v-model="listQuery.contractNumber" shape="round" show-action placeholder="请输入合同编号" :clearable="false" @search="onKeywordSearch" @cancel="onKeywordCancel" />
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
<div class="header-filter" :style="isActSearch ? 'padding: 0 0 0 0.5rem' : ''">
|
||||||
|
<div class="hf-l-list" v-show="!isActSearch">
|
||||||
|
<van-dropdown-menu class="hf-l-list-menu">
|
||||||
|
<!-- 供应商名称 -->
|
||||||
|
<van-dropdown-item title="供应商名称" :title-class="isHtab1 ? 'common-act-color' : ''" @open="handleDropOpen()" ref="vanDropItem1">
|
||||||
|
<div class="hf-drop-view">
|
||||||
|
<div class="hf-drop-contain">
|
||||||
|
<div class="hr-drop-filter-item" @click.stop="handleClass1(item.id)" v-for="item in spList" :key="item.value">
|
||||||
|
<van-icon v-if="listQuery.supplierId && listQuery.supplierId == item.value" name="success" color="#0088FE" />
|
||||||
|
<span :class="{'hr-drop-filter-item-act': listQuery.supplierId && listQuery.supplierId == item.id }">{{item.companyName}}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="common-double-button">
|
||||||
|
<van-button class="common-double-button-l" @click="handleReset()">重置</van-button>
|
||||||
|
<van-button class="common-double-button-r" @click="handleConfirm">确定</van-button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</van-dropdown-item>
|
||||||
|
<!-- 类别 -->
|
||||||
|
<van-dropdown-item title="合同状态" :title-class="isHtab4 ? 'common-act-color' : ''" @open="handleDropOpen()" ref="vanDropItem4">
|
||||||
|
<div class="hf-drop-view">
|
||||||
|
<div class="hf-drop-contain">
|
||||||
|
<div class="hr-drop-filter-item" @click.stop="handleClass2(item.value)" v-for="item in stateList" :key="item.value">
|
||||||
|
<van-icon v-if="listQuery.contractType && listQuery.contractType == item.value" name="success" color="#0088FE" />
|
||||||
|
<span :class="{'hr-drop-filter-item-act': listQuery.contractType && listQuery.contractType == item.value }">{{item.label}}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="common-double-button">
|
||||||
|
<van-button class="common-double-button-l" @click="handleReset()">重置</van-button>
|
||||||
|
<van-button class="common-double-button-r" @click="handleConfirm">确定</van-button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</van-dropdown-item>
|
||||||
|
</van-dropdown-menu>
|
||||||
|
</div>
|
||||||
|
<div class="hf-r-list" v-show="!isActSearch">
|
||||||
|
<div class="hf-r-list-item" @click="handleSearch">
|
||||||
|
<div class="hf-r-icon-bg">
|
||||||
|
<van-icon name="search" class="hf-r-icon" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<van-popup position="bottom" safe-area-inset-bottom v-model="moreFilterShow" :lock-scroll="true" round get-container="#app" lazy-render>
|
||||||
|
<div class="common-popup moreContain">
|
||||||
|
<div class="common-popup-header">
|
||||||
|
<div></div>
|
||||||
|
<div class="common-popup-header-title">
|
||||||
|
<span>筛选</span>
|
||||||
|
</div>
|
||||||
|
<div class="common-popup-header-close">
|
||||||
|
<van-icon name="cross" @click="moreFilterShow = false" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="common-popup-body moreContain-body">
|
||||||
|
<van-form ref="filterForm" :show-error-message="false" validate-trigger="" :submit-on-enter="false">
|
||||||
|
<RePick v-model="listQuery.remark" label="bumen" :list="areaTree" isLastSelect isCascader isShowSearch title="行程" titleKey="name" isCascaderAllLevelNameSymnol isCell clearable />
|
||||||
|
</van-form>
|
||||||
|
</div>
|
||||||
|
<div class="common-popup-footer">
|
||||||
|
<van-button style="width: 8rem; margin-right: 1rem;" round @click="handleMoreReset">重置</van-button>
|
||||||
|
<van-button type="info" style="width: 8rem;" round @click.stop="handleMoreConfirm">确认</van-button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</van-popup>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { mapState, mapGetters } from 'vuex'
|
||||||
|
import { getDictDatas, DICT_TYPE } from "@/utils/dict";
|
||||||
|
import { dayTextFormatter } from '@/utils'
|
||||||
|
import dayjs from 'dayjs'
|
||||||
|
export default {
|
||||||
|
props: {
|
||||||
|
listType: String, // 'detail' 详情
|
||||||
|
paramProp: Object,
|
||||||
|
spList: Array, // 供应商列表
|
||||||
|
},
|
||||||
|
components: {
|
||||||
|
RePick: () => import('@/components/ReComponents/RePick'),
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
defaultDate: null,
|
||||||
|
dayTextFormatter: dayTextFormatter,
|
||||||
|
isActSearch: false,
|
||||||
|
moreFilterShow: false,
|
||||||
|
isSearch: false,
|
||||||
|
// courseStateList: [
|
||||||
|
// { text: '全部', id: 25 },
|
||||||
|
// { text: '已取消', id: 0 },
|
||||||
|
// { text: '生效中', id: 1 }
|
||||||
|
// ],
|
||||||
|
listQuery: {},
|
||||||
|
}
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
isHtab1() {
|
||||||
|
let isShow = false
|
||||||
|
if (this.paramProp.supplierId) isShow = true
|
||||||
|
return isShow
|
||||||
|
},
|
||||||
|
isHtab4() {
|
||||||
|
let isShow = false
|
||||||
|
if (this.paramProp.contractType) isShow = true
|
||||||
|
return isShow
|
||||||
|
},
|
||||||
|
areaTree() {
|
||||||
|
return this.$store.getters.areaTree
|
||||||
|
},
|
||||||
|
isMoreAct() {
|
||||||
|
let bol = false
|
||||||
|
const listQuery = this.paramProp || {}
|
||||||
|
if (listQuery.remark) {
|
||||||
|
bol = true
|
||||||
|
}
|
||||||
|
return bol
|
||||||
|
},
|
||||||
|
stateList() {
|
||||||
|
return getDictDatas(DICT_TYPE.BS_EXPENSE_APPLY_STATUS) || []
|
||||||
|
}
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
methods: {
|
||||||
|
// 日历重置
|
||||||
|
handleDateReset() {
|
||||||
|
this.listQuery.startDate = null
|
||||||
|
this.listQuery.endDate = null
|
||||||
|
this.defaultDate = null
|
||||||
|
this.$refs.vanCalendar && this.$refs.vanCalendar.reset()
|
||||||
|
},
|
||||||
|
handleDateSelect(val) {
|
||||||
|
if (val.filter(item => item).length === 2) {
|
||||||
|
this.listQuery.startDate = `${dayjs(val[0]).format('YYYY/MM/DD')} 00:00:00 `
|
||||||
|
this.listQuery.endDate = `${dayjs(val[1]).format('YYYY/MM/DD')} 23:59:59 `
|
||||||
|
}
|
||||||
|
},
|
||||||
|
handleQuickDate(e) {
|
||||||
|
this.defaultDate = [dayjs(e.time[0]).toDate(), dayjs(e.time[1]).toDate()]
|
||||||
|
this.listQuery.startDate = `${e.time[0]} 00:00:00`
|
||||||
|
this.listQuery.endDate = `${e.time[1]} 23:59:59`
|
||||||
|
},
|
||||||
|
handleConfirm() {
|
||||||
|
this.$refs.vanDropItem4 && this.$refs.vanDropItem4.toggle(false)
|
||||||
|
this.$refs.vanDropItem1 && this.$refs.vanDropItem1.toggle(false)
|
||||||
|
this.$emit('onListQuery', this.listQuery)
|
||||||
|
},
|
||||||
|
|
||||||
|
onKeywordCancel() {
|
||||||
|
this.listQuery.contractNumber = null
|
||||||
|
this.isActSearch = false
|
||||||
|
this.isSearch = false
|
||||||
|
this.onKeywordSearch()
|
||||||
|
},
|
||||||
|
onKeywordSearch() {
|
||||||
|
this.$emit('onListQuery', this.listQuery)
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
// 处理供应商
|
||||||
|
handleClass1(val) {
|
||||||
|
this.listQuery.supplierId = val
|
||||||
|
},
|
||||||
|
handleClass2(val) {
|
||||||
|
this.listQuery.contractType = val
|
||||||
|
},
|
||||||
|
// 处理状态 type : 1 状态 2 缴费类型 3 换班类型
|
||||||
|
handleState(val, type) {
|
||||||
|
if (type == 1) {
|
||||||
|
const i = this.listQuery.states.findIndex(item => item === val)
|
||||||
|
if (i > -1) {
|
||||||
|
this.listQuery.states.splice(i, 1)
|
||||||
|
} else {
|
||||||
|
this.listQuery.states.push(val)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (type == 2 || type == 3) {
|
||||||
|
const i = this.listQuery.types.findIndex(item => item === val)
|
||||||
|
if (i > -1) {
|
||||||
|
this.listQuery.types.splice(i, 1)
|
||||||
|
} else {
|
||||||
|
this.listQuery.types.push(val)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
handleInit() {
|
||||||
|
this.listQuery = {
|
||||||
|
...this.paramProp
|
||||||
|
}
|
||||||
|
if (!(this.listQuery.startDate && this.listQuery.endDate)) {
|
||||||
|
this.handleDateReset()
|
||||||
|
}
|
||||||
|
},
|
||||||
|
handleDropOpen() {
|
||||||
|
this.handleInit()
|
||||||
|
},
|
||||||
|
onSearch() {
|
||||||
|
this.handleConfirm()
|
||||||
|
},
|
||||||
|
// 搜索
|
||||||
|
handleSearch() {
|
||||||
|
this.handleInit()
|
||||||
|
this.listQuery.contractNumber = this.paramProp.contractNumber
|
||||||
|
this.isActSearch = true
|
||||||
|
},
|
||||||
|
|
||||||
|
handleSearchCancel() {
|
||||||
|
this.listQuery.contractNumber = null
|
||||||
|
this.isActSearch = false
|
||||||
|
this.onKeywordSearch()
|
||||||
|
},
|
||||||
|
// 更多筛选
|
||||||
|
handleMoreFilter() {
|
||||||
|
this.handleInit()
|
||||||
|
this.moreFilterShow = true
|
||||||
|
},
|
||||||
|
|
||||||
|
// 更多重置
|
||||||
|
handleMoreReset() {
|
||||||
|
this.listQuery.remark = null
|
||||||
|
},
|
||||||
|
handleMoreConfirm() {
|
||||||
|
this.$emit('onListQuery', this.listQuery)
|
||||||
|
this.moreFilterShow = false
|
||||||
|
},
|
||||||
|
handleReset() {
|
||||||
|
this.listQuery.contractType = null
|
||||||
|
this.listQuery.supplierId = null
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
@import './index.scss';
|
||||||
|
</style>
|
@ -0,0 +1,328 @@
|
|||||||
|
<template>
|
||||||
|
<!-- 报价单中标管理 -->
|
||||||
|
<div>
|
||||||
|
<!-- <HeaderFilter
|
||||||
|
:listType="listType"
|
||||||
|
:spList="spList"
|
||||||
|
@onListQuery="handleListQuery"
|
||||||
|
:paramProp="listQuery"
|
||||||
|
/> -->
|
||||||
|
<!-- 重新的搜索 -->
|
||||||
|
<div style="padding: 10px">
|
||||||
|
<van-field
|
||||||
|
v-model="queryForm.number"
|
||||||
|
placeholder="请输入"
|
||||||
|
label="报价编号"
|
||||||
|
clearable
|
||||||
|
input-align="left"
|
||||||
|
/>
|
||||||
|
<RePick
|
||||||
|
v-model="queryForm.type"
|
||||||
|
titleKey="label"
|
||||||
|
idKey="value"
|
||||||
|
title="招标方式"
|
||||||
|
:name="`type`"
|
||||||
|
label="招标方式"
|
||||||
|
:list="getDictDatas(DICT_TYPE.BS_QUOTATION_TYPE)"
|
||||||
|
isCell
|
||||||
|
clearable
|
||||||
|
input-align="left"
|
||||||
|
/>
|
||||||
|
<van-field
|
||||||
|
v-model="queryForm.productName"
|
||||||
|
placeholder="请输入"
|
||||||
|
label="产品名称"
|
||||||
|
clearable
|
||||||
|
input-align="left"
|
||||||
|
/>
|
||||||
|
<div
|
||||||
|
style="display: flex; justify-content: space-around; margin-top: 10px"
|
||||||
|
>
|
||||||
|
<van-button
|
||||||
|
type="info"
|
||||||
|
@click="handleSearch"
|
||||||
|
size="small"
|
||||||
|
style="width: 80px"
|
||||||
|
>搜索</van-button
|
||||||
|
>
|
||||||
|
<van-button
|
||||||
|
type="info"
|
||||||
|
@click="rstSearch"
|
||||||
|
size="small"
|
||||||
|
style="width: 80px"
|
||||||
|
>重置</van-button
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<RMList
|
||||||
|
:moreLoading.sync="moreLoading"
|
||||||
|
:refreshing.sync="refreshing"
|
||||||
|
:finished.sync="finished"
|
||||||
|
@onLoad="handleLoad"
|
||||||
|
@onRefresh="handleRefresh"
|
||||||
|
isMore
|
||||||
|
:tableList="tableList"
|
||||||
|
>
|
||||||
|
<div>
|
||||||
|
<MyQuotationSheetBiddingListCard
|
||||||
|
v-for="(item, index) in tableList"
|
||||||
|
:key="item.id"
|
||||||
|
:itemData="item"
|
||||||
|
:listType="listType"
|
||||||
|
@onUpdataInfo="handleUpdataInfo($event, index)"
|
||||||
|
@onAllRefresh="handleAllRefresh"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</RMList>
|
||||||
|
<div class="common-bottom-btns" style="bottom: 8rem">
|
||||||
|
<div class="common-bottom-btn" @click="handleTopPage">
|
||||||
|
<img src="@/assets/images/icons/top.png" alt="" />
|
||||||
|
<span>回到顶部</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="common-bottom-btns"
|
||||||
|
v-hasPermi="['bs:supplier-contract:create']"
|
||||||
|
style="bottom: 10rem"
|
||||||
|
>
|
||||||
|
<div class="common-bottom-btn" @click="handleToAdd">
|
||||||
|
<img src="@/assets/images/icons/add.png" alt="" />
|
||||||
|
<span>添加申请</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="common-bottom-btns" style="bottom: 6rem">
|
||||||
|
<div class="common-bottom-btn" @click="handleBack">
|
||||||
|
<img src="@/assets/images/icons/home.png" alt="" />
|
||||||
|
<span>返回首页</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { getScrollTop } from '@/utils'
|
||||||
|
|
||||||
|
import { getQuotationSheetBiddingPage } from '@/api/bs/myQuotationSheetBidding'
|
||||||
|
import { getSupplierCompanyPage } from '@/api/bs/supplierMsg'
|
||||||
|
import { getDictDatas } from '@/utils/dict'
|
||||||
|
import { mapState } from 'vuex'
|
||||||
|
import dayjs from 'dayjs'
|
||||||
|
export default {
|
||||||
|
props: {
|
||||||
|
listType: String // EnrollmentOrder: 报名订单 EnrollmentCollection: 报名收款 ShiftRecord: 换班记录 WaitPay: 待支付
|
||||||
|
},
|
||||||
|
components: {
|
||||||
|
// HeaderFilter: () => import('./HeaderFilter.vue'),
|
||||||
|
RMList: () => import('@/components/ReComponents/RMList'),
|
||||||
|
MyQuotationSheetBiddingListCard: () =>
|
||||||
|
import('@/components/MyQuotationSheetBiddingListCard'),
|
||||||
|
RePick: () => import('@/components/ReComponents/RePick')
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
height: 0,
|
||||||
|
moreLoading: false,
|
||||||
|
refreshing: false,
|
||||||
|
finished: false,
|
||||||
|
tableList: [],
|
||||||
|
spList: [],
|
||||||
|
listQuery: {
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 10
|
||||||
|
},
|
||||||
|
// 搜索表单
|
||||||
|
queryForm: {
|
||||||
|
productName: null,
|
||||||
|
number: null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
...mapState({
|
||||||
|
singlePageSize: (state) => state.common.setting.singlePageSize,
|
||||||
|
pageSize: (state) => state.common.setting.pageSize
|
||||||
|
})
|
||||||
|
},
|
||||||
|
activated() {
|
||||||
|
this.handleScrollInit()
|
||||||
|
},
|
||||||
|
deactivated() {
|
||||||
|
window.removeEventListener('scroll', this.handleScroll)
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
this.handleInit()
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
// 搜索
|
||||||
|
handleSearch() {
|
||||||
|
let queryParams = {
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: this.singlePageSize,
|
||||||
|
...this.queryForm
|
||||||
|
}
|
||||||
|
this.$loading(true, 'tableLoading')
|
||||||
|
getQuotationSheetBiddingPage(queryParams)
|
||||||
|
.then((res) => {
|
||||||
|
let resList = (res.data && res.data.list) || []
|
||||||
|
this.tableList = resList
|
||||||
|
})
|
||||||
|
.finally(() => {
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.refreshing = false
|
||||||
|
this.$loading(false, 'tableLoading')
|
||||||
|
})
|
||||||
|
// this.$loading(false, `cTableLoading_${this.listType}`)
|
||||||
|
})
|
||||||
|
},
|
||||||
|
// 重置
|
||||||
|
rstSearch() {
|
||||||
|
this.queryForm = {
|
||||||
|
productName: null,
|
||||||
|
number: null
|
||||||
|
}
|
||||||
|
this.handleInit()
|
||||||
|
},
|
||||||
|
handleBack() {
|
||||||
|
history.back()
|
||||||
|
},
|
||||||
|
handleInitSpList() {
|
||||||
|
/* let queryParams = {
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: this.singlePageSize
|
||||||
|
}
|
||||||
|
getQuotationSheetBiddingPage(queryParams).then((res) => {
|
||||||
|
this.spList = res.data.list || []
|
||||||
|
}) */
|
||||||
|
|
||||||
|
getSupplierCompanyPage({
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 1000
|
||||||
|
}).then((res) => {
|
||||||
|
this.spList = res.data.list || []
|
||||||
|
})
|
||||||
|
},
|
||||||
|
handleSetSingle(id) {
|
||||||
|
return new Promise((resolve, reject) => {
|
||||||
|
let listQuery = {
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: this.singlePageSize
|
||||||
|
}
|
||||||
|
getQuotationSheetBiddingPage(listQuery)
|
||||||
|
.then((res) => {
|
||||||
|
let arr = ((res.data && res.data.list) || []).filter(
|
||||||
|
(item) => item.id == id
|
||||||
|
)
|
||||||
|
resolve(arr)
|
||||||
|
})
|
||||||
|
.catch((err) => {
|
||||||
|
reject(err)
|
||||||
|
})
|
||||||
|
})
|
||||||
|
},
|
||||||
|
handleUpdataInfo(id, index) {
|
||||||
|
this.$loading(true, 'singleReset')
|
||||||
|
this.handleSetSingle(id)
|
||||||
|
.then((arr) => {
|
||||||
|
if (arr.length) {
|
||||||
|
this.tableList.splice(index, 1, arr[0])
|
||||||
|
}
|
||||||
|
this.$loading(false, 'singleReset')
|
||||||
|
})
|
||||||
|
.catch(() => {
|
||||||
|
this.$loading(false, 'singleReset')
|
||||||
|
})
|
||||||
|
},
|
||||||
|
handleListQuery(paramProp) {
|
||||||
|
this.listQuery = {
|
||||||
|
...paramProp,
|
||||||
|
invoiceDate: paramProp.startDate && [
|
||||||
|
dayjs(paramProp.startDate).format('YYYY-MM-DD HH:ss:mm'),
|
||||||
|
dayjs(paramProp.endDate).format('YYYY-MM-DD HH:ss:mm')
|
||||||
|
]
|
||||||
|
}
|
||||||
|
this.finished = false
|
||||||
|
this.handleRefresh()
|
||||||
|
},
|
||||||
|
handleScroll() {
|
||||||
|
getScrollTop().then((height) => {
|
||||||
|
this.height = height
|
||||||
|
})
|
||||||
|
},
|
||||||
|
handleScrollInit() {
|
||||||
|
window.addEventListener('scroll', this.handleScroll)
|
||||||
|
window.scrollTo(0, this.height)
|
||||||
|
// this.handleInit()
|
||||||
|
},
|
||||||
|
|
||||||
|
handleScrollToTop() {
|
||||||
|
window.scrollTo(0, 0)
|
||||||
|
this.height = 0
|
||||||
|
},
|
||||||
|
handleToAdd() {
|
||||||
|
/* this.$router.push({
|
||||||
|
path: '/supplier',
|
||||||
|
query: {
|
||||||
|
type: 'add'
|
||||||
|
}
|
||||||
|
}) */
|
||||||
|
},
|
||||||
|
handleAllRefresh() {
|
||||||
|
// this.getTableList('refresh')
|
||||||
|
this.handleRefresh()
|
||||||
|
},
|
||||||
|
handleInit() {
|
||||||
|
this.handleInitSpList()
|
||||||
|
this.getTableList('init')
|
||||||
|
},
|
||||||
|
|
||||||
|
handleTopPage() {
|
||||||
|
window.scrollTo(0, 0)
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.height = 0
|
||||||
|
})
|
||||||
|
},
|
||||||
|
handleRefresh() {
|
||||||
|
this.listQuery.pageNo = 1
|
||||||
|
this.finished = false
|
||||||
|
this.getTableList('refresh')
|
||||||
|
},
|
||||||
|
handleLoad() {
|
||||||
|
this.listQuery.pageNo += 1
|
||||||
|
this.getTableList('more')
|
||||||
|
},
|
||||||
|
|
||||||
|
getTableList(val) {
|
||||||
|
const query = {
|
||||||
|
...this.listQuery
|
||||||
|
}
|
||||||
|
this.moreLoading = true
|
||||||
|
this.$loading(true, 'tableLoading')
|
||||||
|
getQuotationSheetBiddingPage(query)
|
||||||
|
.then((res) => {
|
||||||
|
let resList = (res.data && res.data.list) || []
|
||||||
|
if (['init', 'refresh'].includes(val)) {
|
||||||
|
this.tableList = resList
|
||||||
|
this.handleScrollToTop()
|
||||||
|
} else {
|
||||||
|
this.tableList = this.tableList.concat(resList)
|
||||||
|
}
|
||||||
|
if (resList.length < this.pageSize) {
|
||||||
|
this.finished = true
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.finally(() => {
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.moreLoading = false
|
||||||
|
this.refreshing = false
|
||||||
|
this.$loading(false, 'tableLoading')
|
||||||
|
})
|
||||||
|
// this.$loading(false, `cTableLoading_${this.listType}`)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<style scoped lang="scss">
|
||||||
|
// @import '~@/assets/style/common/list.scss';
|
||||||
|
</style>
|
@ -0,0 +1,163 @@
|
|||||||
|
$hf-contain-p: 0 1.2rem;
|
||||||
|
$hf-contain-f: 0.76rem;
|
||||||
|
$hf-high-color: #0088fe;
|
||||||
|
// 激活的颜色
|
||||||
|
$hf-high-color: #0088fe;
|
||||||
|
.header-filter {
|
||||||
|
.hf-r-icon-bg-act {
|
||||||
|
.van-icon {
|
||||||
|
color: $hf-high-color !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
background: #ffffff;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
padding: $hf-contain-p;
|
||||||
|
|
||||||
|
.hf-l-list {
|
||||||
|
.hf-l-list-menu {
|
||||||
|
/deep/.van-dropdown-menu__bar {
|
||||||
|
height: auto;
|
||||||
|
box-shadow: none;
|
||||||
|
|
||||||
|
.van-dropdown-menu__item {
|
||||||
|
flex: inherit;
|
||||||
|
margin-right: 1rem;
|
||||||
|
|
||||||
|
.van-dropdown-menu__title {
|
||||||
|
padding: 0.6rem 0.4rem 0.6rem 0;
|
||||||
|
font-size: $hf-contain-f;
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
border: 1px solid;
|
||||||
|
padding: 0.1rem;
|
||||||
|
border-color: transparent transparent #333333 #333333;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.van-dropdown-menu__title--active {
|
||||||
|
color: $hf-high-color;
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
border-color: transparent transparent $hf-high-color $hf-high-color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.hf-r-list {
|
||||||
|
display: flex;
|
||||||
|
|
||||||
|
.hf-r-list-item {
|
||||||
|
margin-left: 0.4rem;
|
||||||
|
|
||||||
|
.hf-r-icon-bg {
|
||||||
|
background: #d7d7d7;
|
||||||
|
width: 1.5rem;
|
||||||
|
height: 1.5rem;
|
||||||
|
border-radius: 1.5rem;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.hf-drop-view {
|
||||||
|
padding: $hf-contain-p;
|
||||||
|
padding-bottom: 0.8rem;
|
||||||
|
|
||||||
|
.hf-drop-contain {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
padding-bottom: 0.8rem;
|
||||||
|
|
||||||
|
.hr-drop-filter-item {
|
||||||
|
padding: $hf-contain-p;
|
||||||
|
font-size: $hf-contain-f;
|
||||||
|
width: 50%;
|
||||||
|
box-sizing: border-box;
|
||||||
|
padding: 0.8rem 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hr-drop-filter-item-act {
|
||||||
|
color: $hf-high-color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 快捷筛选
|
||||||
|
.hf-drop-quick {
|
||||||
|
margin-top: 1rem;
|
||||||
|
|
||||||
|
.hf-drop-quick-item {
|
||||||
|
margin-bottom: 1.5rem;
|
||||||
|
|
||||||
|
.hf-drop-quick-title {
|
||||||
|
color: #333333;
|
||||||
|
font-size: 0.84rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hf-drop-quick-list {
|
||||||
|
display: flex;
|
||||||
|
margin: 0.6rem 0;
|
||||||
|
font-size: $hf-contain-f;
|
||||||
|
|
||||||
|
.hf-drop-quick-list-item {
|
||||||
|
border: 1px solid #f3f3f3;
|
||||||
|
background: #f3f3f3;
|
||||||
|
margin-right: 0.8rem;
|
||||||
|
padding: 0.4rem 0.6rem;
|
||||||
|
border-radius: 1rem;
|
||||||
|
transition: background-color, color 0.2s linear;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hf-drop-quick-list-item-act {
|
||||||
|
background: #ffffff;
|
||||||
|
color: $hf-high-color;
|
||||||
|
border: 1px solid $hf-high-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hf-drop-quick-list-item-checkbox {
|
||||||
|
margin-right: 1rem;
|
||||||
|
|
||||||
|
/deep/.van-checkbox__label {
|
||||||
|
margin-left: 0.2rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.hf-drop-quick-calendar {
|
||||||
|
/deep/.van-calendar__header {
|
||||||
|
box-shadow: none;
|
||||||
|
border-bottom: 1px solid #eeeeee;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.hf-drop-contain-empty {
|
||||||
|
color: #666666;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 0.8rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.searchInput {
|
||||||
|
padding: 0.3rem 0;
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
|
.van-search__content {
|
||||||
|
background: #ffffff;
|
||||||
|
border: 1px solid #f3f3f3;
|
||||||
|
border-radius: 0.3rem;
|
||||||
|
|
||||||
|
/deep/input {
|
||||||
|
caret-color: #0088fe;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,23 @@
|
|||||||
|
<template>
|
||||||
|
<!-- 报价单中标管理列表 -->
|
||||||
|
<div>
|
||||||
|
<UserList listType="myQuotationSheetBidding" ref="userList" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: 'contract-myQuotationSheetBidding',
|
||||||
|
created() {
|
||||||
|
// 注入缓存
|
||||||
|
this.$EventBus.$emit('handleAddLive', 'contract-myQuotationSheetBidding')
|
||||||
|
},
|
||||||
|
activated() {
|
||||||
|
// 清除合同审批缓存
|
||||||
|
this.$EventBus.$emit('handleResetLive', 'contract-myQuotationSheetBidding')
|
||||||
|
},
|
||||||
|
components: {
|
||||||
|
UserList: () => import('./components/UserList')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
@ -0,0 +1,163 @@
|
|||||||
|
<template>
|
||||||
|
<div class="common-list-contain">
|
||||||
|
<div class="common-form">
|
||||||
|
<van-form
|
||||||
|
ref="form"
|
||||||
|
:show-error-message="false"
|
||||||
|
validate-trigger=""
|
||||||
|
:submit-on-enter="false"
|
||||||
|
>
|
||||||
|
<div class="trips-box">
|
||||||
|
<div class="item-box">
|
||||||
|
<van-field
|
||||||
|
v-model="form.number"
|
||||||
|
required
|
||||||
|
placeholder="请输入"
|
||||||
|
:disabled="disabled"
|
||||||
|
:rules="[{ required: true, message: '请输入' }]"
|
||||||
|
label="报价编号"
|
||||||
|
clearable
|
||||||
|
input-align="right"
|
||||||
|
/>
|
||||||
|
<van-field
|
||||||
|
v-model="form.productName"
|
||||||
|
required
|
||||||
|
placeholder="请输入"
|
||||||
|
:disabled="disabled"
|
||||||
|
:rules="[{ required: true, message: '请输入' }]"
|
||||||
|
label="产品名称"
|
||||||
|
clearable
|
||||||
|
input-align="right"
|
||||||
|
/>
|
||||||
|
<RePick
|
||||||
|
v-model="form.type"
|
||||||
|
isRequrie
|
||||||
|
titleKey="label"
|
||||||
|
idKey="value"
|
||||||
|
title="招标方式"
|
||||||
|
:name="`type`"
|
||||||
|
:disabled="disabled"
|
||||||
|
label="招标方式"
|
||||||
|
:list="getDictDatas(DICT_TYPE.BS_QUOTATION_TYPE)"
|
||||||
|
isCell
|
||||||
|
clearable
|
||||||
|
/>
|
||||||
|
<van-field
|
||||||
|
v-model="form.applicantName"
|
||||||
|
required
|
||||||
|
placeholder="请输入"
|
||||||
|
:disabled="disabled"
|
||||||
|
:rules="[{ required: true, message: '请输入' }]"
|
||||||
|
label="申请人"
|
||||||
|
clearable
|
||||||
|
input-align="right"
|
||||||
|
/>
|
||||||
|
<van-field
|
||||||
|
v-model="form.cutoffTime"
|
||||||
|
placeholder="请输入"
|
||||||
|
:disabled="disabled"
|
||||||
|
label="报价截止时间"
|
||||||
|
clearable
|
||||||
|
input-align="right"
|
||||||
|
/>
|
||||||
|
<van-field
|
||||||
|
v-model="form.remark"
|
||||||
|
placeholder="请输入"
|
||||||
|
:disabled="disabled"
|
||||||
|
label="备注信息"
|
||||||
|
clearable
|
||||||
|
input-align="right"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</van-form>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- <div class="trips-box">
|
||||||
|
<div class="item-box">
|
||||||
|
<UploadFile :typeStr="typeStr" :fileList="form.files" />
|
||||||
|
</div>
|
||||||
|
</div> -->
|
||||||
|
<BottomBtn
|
||||||
|
ref="BottomBtn"
|
||||||
|
:isAuthorised="isAuthorised"
|
||||||
|
@onBtConfirm="handleBtConfirm"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { listData } from '@/api/system/dict/data'
|
||||||
|
import { getDictDatas } from '@/utils/dict'
|
||||||
|
import dayjs from 'dayjs'
|
||||||
|
import { getQuotationSheetBidding } from '@/api/bs/myQuotationSheetBidding'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'contract-quotationSheetBidding',
|
||||||
|
components: {
|
||||||
|
UploadFile: () => import('@/components/UploadFile'),
|
||||||
|
RePick: () => import('@/components/ReComponents/RePick'),
|
||||||
|
BottomBtn: () => import('@/components/BottomBtn')
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
isAuthorised: false,
|
||||||
|
typeStr: null, // show: 查看 edit: 编辑: 其他新增
|
||||||
|
id: null,
|
||||||
|
// 遮罩层
|
||||||
|
loading: true,
|
||||||
|
// 表单参数
|
||||||
|
form: {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
disabled() {
|
||||||
|
return ['show'].includes(this.$route.query.type)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
this.handleInitForm()
|
||||||
|
/* this.$loading(true)
|
||||||
|
this.handleInitList().then(() => {
|
||||||
|
this.$loading(false)
|
||||||
|
this.handleInitForm()
|
||||||
|
}) */
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
handleInitForm() {
|
||||||
|
const { id, type } = this.$route.query || {}
|
||||||
|
this.typeStr = type
|
||||||
|
if (id) {
|
||||||
|
getQuotationSheetBidding(id).then((res) => {
|
||||||
|
this.form = {
|
||||||
|
...(res.data || {})
|
||||||
|
}
|
||||||
|
this.isAuthorised = res.data.isAuthorised
|
||||||
|
if (this.form.cutoffTime) {
|
||||||
|
this.form.cutoffTime = dayjs(this.form.cutoffTime).format(
|
||||||
|
'YYYY/MM/DD'
|
||||||
|
)
|
||||||
|
}
|
||||||
|
if (this.form.purchasingCategoriesId) {
|
||||||
|
this.form.purchasingCategoriesId = String(
|
||||||
|
this.form.purchasingCategoriesId
|
||||||
|
)
|
||||||
|
}
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs.BottomBtn.handleFilterBtnList()
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}
|
||||||
|
},
|
||||||
|
handleInitList() {
|
||||||
|
return new Promise((resolve) => {})
|
||||||
|
},
|
||||||
|
handleBtConfirm() {
|
||||||
|
console.log(111)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<style scoped lang="scss">
|
||||||
|
@import '~@/assets/style/common/form.scss';
|
||||||
|
</style>
|
Loading…
Reference in New Issue