123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629 |
- <template>
- <view class="content">
- <view class="box">
- <view class="hflex acenter jbetween top">
- <view class="order_no">订单编号:{{pageData.order_no}}</view>
- <view class="type type1" v-if="id == 1">采购订单</view>
- <view class="type type2" v-if="id == 2">生产订单</view>
- <view class="type type3" v-if="id == 3">外协订单</view>
- <view class="type type4" v-if="id == 4">海运订单</view>
- </view>
- <view class="title">{{pageData.name}}</view>
- <view class="hflex acenter jbetween padT-16">
- <view class="hflex astart">
- <view class="text_style2" style="width: 96rpx;">地址:</view>
- <view class="text_style2 black">
- {{pageData.address}}
- </view>
- </view>
- <u-icon name="map-fill" color="#506DFF" size="14"></u-icon>
- </view>
- <view class="hflex astart padT-16">
- <view class="text_style2" style="width: 96rpx;">联系人:</view>
- <view class="text_style2 black">
- {{pageData.linkUser}}
- </view>
- </view>
- <view class="hflex acenter jbetween padT-16">
- <view class="hflex astart">
- <view class="text_style2" style="width: 96rpx;">手机号:</view>
- <view class="text_style2 black">
- {{pageData.phone}}
- </view>
- </view>
- <u-icon name="phone-fill" color="#506DFF" size="14"></u-icon>
- </view>
- </view>
- <view class="box">
- <view class="title">商品明细</view>
- <view class="list">
- <block v-for="(item,index) in pageData.goods" :key="index">
- <view class="list_item" v-if="id == 1">
- <view class="item_title cell">{{item.name}}</view>
- <view class="hflex acenter cell">
- <view class="text_style2 padR-20">规格:{{item.norm}}</view>
- <view class="text_style2">数量:{{item.num}}</view>
- </view>
- <view class="hflex acenter cell">
- <view class="text_style2 padR-20">原购买价:{{item.price}}</view>
- </view>
- <view class="hflex acenter fwrap text_style2 cell">质量标准:{{item.standard}}</view>
- <view class="cell" style="width: 100%;">
- <view class="item_btn btn1" v-if="item.type == 1" @click="see(index)">已接单,立即查看</view>
- <view class="item_btn btn1" v-if="item.type == 2" @click="start">立即接单</view>
- <view class="item_btn btn2" v-if="item.type == 3">不用报价,已匹配接单人</view>
- </view>
- </view>
- <view class="list_item" v-if="id == 2 || id == 3">
- <view class="item_title">{{item.name}}</view>
- <view class="hflex acenter cell">
- <view class="text_style2 padR-20" v-if="item.norm">规格型号:{{item.norm}}/桶</view>
- <view class="text_style2" v-if="item.num">生产数量:{{item.norm}}/桶</view>
- </view>
- <view class="hflex acenter jbetween" style="margin-top: 20rpx;">
- <view class="hflex acenter">
- <image src="/static/images/comment/icon_pdf.png" class="item_img"></image>
- <view class="text_style1">{{item.enclosure_name}}</view>
- </view>
- <view class="hflex acenter jcenter item_btn1">
- <u-icon name="download" color="#506DFF" size="10"></u-icon>
- <view>下载附件</view>
- </view>
- </view>
- </view>
- <view class="list_item" v-if="id == 4">
- <view class="item_title cell">{{item.name}}</view>
- <view class="hflex acenter cell">
- <view class="text_style2 padR-20">数量/吨位:{{item.num}}</view>
- </view>
- </view>
- </block>
- </view>
- <view class="" v-if="id == 2 || id == 3">
- <view class="hflex acenter fwrap text_style2 cell">生产技术标准:{{pageData.technology}}</view>
- <view class="hflex acenter fwrap text_style2 cell">生产验收标准:{{pageData.acceptance}}</view>
- </view>
- <view v-if="pageData.imgs.length > 0">
- <view class="title">图片/视频</view>
- <view>
- <block v-for="(item,index) in pageData.imgs" :key="index">
- <image v-if="item.is_img" :src="item.src" class="img" mode="aspectFill"></image>
- <image v-else :src="item.src" mode="aspectFill" class="img"></image>
- </block>
- </view>
- </view>
- <view v-if="id == 4">
- <view class="hflex acenter padT-16">
- <view class="text_style2">包装形式:</view>
- <view class="text_style2 black">{{pageData.form}}</view>
- </view>
- <view class="hflex acenter padT-16">
- <view class="text_style2">装货码头:</view>
- <view class="text_style2 black">{{pageData.loading_dock}}</view>
- </view>
- <view class="hflex acenter padT-16">
- <view class="text_style2">到港码头:</view>
- <view class="text_style2 black">{{pageData.arrival_wharf}}</view>
- </view>
- </view>
- </view>
- <view class="box" style="margin-bottom: 186rpx;" v-if="id != 4">
- <view class="hflex acenter padT-16">
- <view class="text_style2">交货地址:</view>
- <view class="text_style2 black">{{pageData.delivery_address}}</view>
- </view>
- <view class="hflex acenter padT-16">
- <view class="text_style2">交货日期:</view>
- <view class="text_style2 black">{{pageData.delivery_date}}</view>
- </view>
- <view class="hflex acenter padT-16">
- <view class="text_style2">发布日期:</view>
- <view class="text_style2 black">{{pageData.rekease_date}}</view>
- </view>
- </view>
- <view style="margin-bottom: 186rpx;" v-else></view>
- <view class="bottom hflex acenter jbetween">
- <view class="vflex acenter" @click="collect">
- <u-icon name="star" color="#444444" size="20" v-if="pageData.is_collect == 0"></u-icon>
- <u-icon name="star-fill" color="#506DFF" size="20" v-else></u-icon>
- <view class="text_style1">收藏</view>
- </view>
- <view class="vflex acenter" @click="share">
- <image src="/static/images/comment/share.png" mode="" class="bottom_img"></image>
- <view class="text_style1">分享</view>
- </view>
- <view class="bottom_btn" v-if="id == 1">私信聊聊</view>
- <view class="hflex acenter" v-else>
- <view class="bottom_btn1">私信聊聊</view>
- <view class="bottom_btn2" @click="start">开始接单</view>
- </view>
- </view>
- <u-popup :show="quotation_show" mode="center" :round="10" :closeable="true" :safeAreaInsetBottom="false" @close="close">
- <view class="popup">
- <view class="popup_title">填写报价信息</view>
- <view class="input_bg hflex acenter">
- <view class="price">¥</view>
- <u-input v-model="offer" placeholder="填写你的报价" border="none"></u-input>
- </view>
- <view class="hflex acenter">
- <image src="/static/images/comment/icon_tips.png" style="width: 24rpx;height: 24rpx;padding-right: 6rpx"></image>
- <view class="popup_info">报价可先不填,可等评估后再填写</view>
- </view>
- <view class="input_bg hflex acenter" v-if="id == 4">
- <view class="price">报价说明</view>
- <u-input v-model="description" placeholder="例如:税前/税后" border="none"></u-input>
- </view>
- <view class="input_bg hflex acenter" v-else>
- <view class="price">货期</view>
- <u-input v-model="lead_time" placeholder="例如: 1个月" border="none"></u-input>
- </view>
- <view class="input_bg" v-if="id != 4">
- <view class="price">产品介绍以及报价说明</view>
- <u--textarea v-model="description" placeholder="例如:税前/税后" border="none"></u--textarea>
- </view>
- <view class="hflex acenter jbetween" v-if="id == 1">
- <view class="price">是否现货</view>
- <u-switch v-model="is_stock" activeColor="#506dff" @change="change"></u-switch>
- </view>
- <view class="hflex acenter" style="padding-bottom: 20rpx;">
- <view class="price">上传图片及资质证明图片</view>
- <image src="/static/images/comment/icon_tips.png" style="width: 24rpx;height: 24rpx;padding-right: 6rpx"></image>
- <view class="popup_info">最多上传9张图片</view>
- </view>
- <u-upload :fileList="fileList1" @afterRead="afterRead" @delete="deletePic" name="1" multiple :maxCount="9"></u-upload>
- <view class="popup_btn">立即接单</view>
- <view class="price">友情提醒:</view>
- <view class="popup_info">请认真核算报价,报价后不可修改和删除,报价时间约需x天内报价,逾期影响信用等级。</view>
- </view>
- </u-popup>
- <u-popup :show="detail_show" mode="center" :round="10" :closeable="true" :safeAreaInsetBottom="false" @close="close">
- <view class="popup">
- <view class="popup_title">报价信息</view>
- <view class="popup_name">报价说明</view>
- <view class="input_bg">{{pageData.goods[index].description}}</view>
- <view class="popup_name">当前报价</view>
- <view class="hflex acenter input_bg" v-if="pageData.goods[index].one != ''">
- <view class="popup_text">第一次报价</view>
- <view class="red">{{pageData.goods[index].one}}</view>
- </view>
- <view class="hflex acenter input_bg" v-if="pageData.goods[index].two != ''">
- <view class="popup_text">第二次报价</view>
- <view class="red">{{pageData.goods[index].two}}</view>
- </view>
- <view class="hflex acenter input_bg" v-if="pageData.goods[index].three != ''">
- <view class="popup_text">第三次报价</view>
- <view class="red">{{pageData.goods[index].three}}</view>
- </view>
- <view class="popup_name">图片及资质证明图片</view>
- <block v-for="(item,index) in pageData.goods[index].img" :key="index">
- <image :src="item" mode="aspectFill" style="width: 188rpx;height: 188rpx;margin: 0 14rpx 20rpx 0;border-radius: 16rpx;"></image>
- </block>
- <view class="popup_btn">查看详情</view>
- </view>
- </u-popup>
- <share-model :show="share_show" :data="pageData" @cancel="cancel"></share-model>
- </view>
- </template>
- <script>
- import $api from '@/static/js/api.js'
- var that = ''
- export default {
- data() {
- return {
- id: '',
- pageData: {
- is_collect: 0,
- type: 2,
- order_no: 'Cbz20220122130923',
- name: '福建船舶有限公司',
- address: '山东省济南市历下区历元大街188号解放军家属院',
- linkUser: '李建国',
- phone: '189235767865',
- goods: [
- {
- id: 1,
- name: '聚酰胺/非离子表面活性剂Lutensol XP',
- norm: '15kg/桶',
- num: '10桶',
- price: '18999.89',
- type: 1,
- description: '报价说明报价说明报价说明报价说明报价说…',
- one: '2,399.89',
- two: '1,459.89',
- three: '',
- img: '',
- enclosure_name: '在发展中扎实推动共同富裕.pdf',
- standard: '按照国家三级标准规定,按照国家三级标准规定,按照国家三级标准规定,按照国家三级标准规定,'
- },
- {
- id: 1,
- name: '聚酰胺/非离子表面活性剂Lutensol XP',
- norm: '15kg/桶',
- num: '10桶',
- price: '18999.89',
- type: 2,
- standard: '按照国家三级标准规定,按照国家三级标准规定,按照国家三级标准规定,按照国家三级标准规定,'
- },
- {
- id: 1,
- name: '聚酰胺/非离子表面活性剂Lutensol XP',
- norm: '15kg/桶',
- num: '10桶',
- price: '18999.89',
- type: 3,
- standard: '按照国家三级标准规定,按照国家三级标准规定,按照国家三级标准规定,按照国家三级标准规定,'
- }
- ],
- imgs: [
-
- ],
- delivery_address: '山东省济南市历下区XX街道',
- delivery_date: '2022-09-12',
- rekease_date: '2022-06-12',
- form: '散装/货柜/整船/整仓',
- loading_dock: '饶平县海山镇222省道三百门码头附近',
- arrival_wharf: '云霄县福崎北路与沿海大道交叉口东南60米',
- technology: '生产技术标准按照国家三级验收标准规定来说,生产技术标准按照国家三级验收标准规定来说,生产技术标准按照国家…',
- acceptance: '生产技术标准按照国家三级验收标准规定来说,生产技术标准按照国家三级验收',
- },
- quotation_show: false,
- detail_show: false,
- offer: '',
- lead_time: '',
- description: '',
- is_stock: false,
- fileList1: [],
- index: 0,
- share_show: false,
- tab: '',
- }
- },
- onLoad(options) {
- that = this
- that.id = options.id
- that.tab = options.tab
- },
- methods: {
- // 收藏
- collect() {
- if(that.pageData.is_collect == 0) {
- that.pageData.is_collect = 1
- $api.info('收藏成功')
- } else {
- that.pageData.is_collect = 0
- $api.info('取消收藏')
- }
- },
- // 打开填写报价信息
- start() {
- that.quotation_show = true
- },
- // 打开报价信息
- see(index) {
- that.index = index
- that.detail_show = true
- },
- // 关闭弹窗
- close() {
- that.quotation_show = false
- that.detail_show = false
- },
- // 是否现货
- change(e) {
- console.log(e);
- that.is_stock = e
- },
- // 删除图片
- deletePic(event) {
- this[`fileList${event.name}`].splice(event.index, 1)
- },
- // 新增图片
- async afterRead(event) {
- // 当设置 multiple 为 true 时, file 为数组格式,否则为对象格式
- let lists = [].concat(event.file)
- let fileListLen = this[`fileList${event.name}`].length
- lists.map((item) => {
- this[`fileList${event.name}`].push({
- ...item,
- status: 'uploading',
- message: '上传中'
- })
- })
- for (let i = 0; i < lists.length; i++) {
- const result = await this.uploadFilePromise(lists[i].url)
- let item = this[`fileList${event.name}`][fileListLen]
- this[`fileList${event.name}`].splice(fileListLen, 1, Object.assign(item, {
- status: 'success',
- message: '',
- url: result
- }))
- fileListLen++
- }
- },
- uploadFilePromise(url) {
- return new Promise((resolve, reject) => {
- let a = uni.uploadFile({
- url: 'http://192.168.2.21:7001/upload', // 仅为示例,非真实的接口地址
- filePath: url,
- name: 'file',
- formData: {
- user: 'test'
- },
- success: (res) => {
- setTimeout(() => {
- resolve(res.data.data)
- }, 1000)
- }
- });
- })
- },
- // 分享
- share() {
- that.share_show = true
- },
- // 取消
- cancel(e) {
- that.share_show = e
- },
- },
- }
- </script>
- <style lang="scss" scoped>
- .content::v-deep {
- background: url('/static/images/comment/background.png') #f4f4f4 no-repeat;
- background-size: 100%;
- .box {
- margin: 20rpx 30rpx 0;
- width: 690rpx;
- background: #FFFFFF;
- border-radius: 20rpx;
- padding: 20rpx;
-
- .top {
- padding-bottom: 24rpx;
- border-bottom: 1rpx solid #F4F4F4;
- .order_no {
- font-size: 24rpx;
- font-weight: 400;
- color: #222222;
- }
- .type {
- width: 100rpx;
- height: 36rpx;
- background: #506DFF;
- border-radius: 4rpx;
- font-size: 20rpx;
- font-weight: 400;
- color: #FFFFFF;
- text-align: center;
- line-height: 36rpx;
- }
- .type1 {
- background: #506DFF;
- }
- .type2 {
- background: #FEA227;
- }
- .type3 {
- background: #54D2C5;
- }
- .type4 {
- background: #60CE8A;
- }
- }
-
-
- .title {
- margin: 20rpx 0 24rpx;
- font-size: 30rpx;
- font-weight: 500;
- color: #222222;
- }
- .img {
- width: 208rpx;
- height: 208rpx;
- border-radius: 16rpx;
- margin: 0 14rpx 20rpx 0;
- }
- .img:nth-child(3n) {
- margin: 0 0 20rpx;
- }
- .padT-16{
- padding-top: 16rpx;
- }
- .padR-20 {
- padding-right: 20rpx;
- }
- .cell {
- padding: 10rpx 0;
- }
- .list {
- width: 100%;
- .list_item {
- width: 100%;
- box-sizing: border-box;
- padding: 20rpx;
- background: #F4F4F4;
- border-radius: 8px;
- margin-top: 20rpx;
- .item_title {
- font-size: 28rpx;
- font-weight: 400;
- color: #222222;
- }
-
- .item_btn {
- width: 570rpx;
- margin: 0 auto;
- height: 76rpx;
- text-align: center;
- line-height: 76rpx;
- font-size: 32rpx;
- font-weight: 400;
- color: #506DFF;
- }
- .item_btn1 {
- width: 120rpx;
- height: 44rpx;
- border-radius: 22rpx;
- border: 1px solid #506DFF;
- padding: 0 8rpx;
- box-sizing: border-box;
- font-size: 16rpx;
- font-weight: 400;
- color: #506DFF;
- }
- .btn1 {
- background: #EAF4FF;
- border-radius: 12rpx;
- border: 1px solid #536FFE;
- }
- .btn2 {
- background: #C5C5C5;
- border-radius: 6px;
- color: #FFFFFF;
- }
- .item_img {
- width: 36rpx;
- height: 44rpx;
- margin-right: 8rpx;
- }
- }
- }
-
- }
-
- .text_style1 {
- font-size: 20rpx;
- font-weight: 400;
- color: #444444;
- }
- .text_style2 {
- font-size: 24rpx;
- font-weight: 400;
- color: #666666;
- line-height: 34rpx;
- }
- .black {
- color: #222222;
- }
- .bottom {
- width: 100%;
- z-index: 9;
- position: fixed;
- bottom: 0;
- height: 166rpx;
- background: #FFFFFF;
- box-sizing: border-box;
- padding: 8rpx 30rpx 74rpx;
-
- .bottom_btn {
- width: 530rpx;
- height: 84rpx;
- background: #506DFF;
- border-radius: 42rpx;
- font-size: 36rpx;
- font-weight: 500;
- color: #FFFFFF;
- text-align: center;
- line-height: 84rpx;
- }
- .bottom_btn1 {
- width: 204rpx;
- height: 84rpx;
- border-radius: 21px;
- border: 1px solid #506DFF;
- font-size: 36rpx;
- font-weight: 500;
- color: #506DFF;
- text-align: center;
- line-height: 84rpx;
- margin-right: 20rpx;
- }
- .bottom_btn2 {
- width: 300rpx;
- height: 84rpx;
- border-radius: 21px;
- background: #506DFF;
- color: #FFFFFF;
- font-size: 36rpx;
- font-weight: 500;
- text-align: center;
- line-height: 84rpx;
- }
- .bottom_img {
- width: 40rpx;
- height: 40rpx;
- }
-
- }
- .popup {
- width: 670rpx;
- background: #FFFFFF;
- border-radius: 10px;
- box-sizing: border-box;
- padding: 36rpx 30rpx 24rpx;
- .popup_title {
- width: 100%;
- text-align: center;
- font-size: 32rpx;
- font-weight: 500;
- color: #222222;
- margin-bottom: 24rpx;
- }
- .popup_name {
- font-size: 26rpx;
- font-weight: 400;
- color: #222222;
- padding: 28rpx 0 20rpx;
- }
- .popup_text {
- font-size: 22rpx;
- font-weight: 500;
- color: #777777;
- padding-right: 60rpx;
- }
- .input_bg {
- background: #F4F4F4;
- border-radius: 8px;
- box-sizing: border-box;
- padding: 16rpx 20rpx;
- margin: 20rpx 0;
- .price {
- font-size: 32rpx;
- font-weight: 500;
- color: #222222;
- padding-right: 20rpx;
- }
- .u-textarea {
- background-color: #F4F4F4 !important;
- }
- .red {
- font-size: 28rpx;
- font-weight: bold;
- color: #FF3636;
- }
- }
- .popup_info {
- font-size: 20rpx;
- font-weight: 400;
- color: #C0C0C0;
- line-height: 28rpx;
- }
- .popup_btn {
- width: 610rpx;
- height: 80rpx;
- background: #506DFF;
- border-radius: 40rpx;
- font-size: 32rpx;
- font-weight: 500;
- color: #FFFFFF;
- text-align: center;
- line-height: 80rpx;
- margin: 20rpx 0;
- }
- }
- }
- </style>
|