| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693 |
- <template>
- <view>
- <view class="inner-box">
- <!-- 收货人 -->
- <view class="address-box" v-if="address==null" @click="openAddress()">
- <view class="left">
- <view class="name-box">
- <text class="text name">添加收货地址</text>
- </view>
- </vie>
- </view>
- <view class="arrow-box">
- <image src="https://bjyjb-1362704775.cos.ap-chongqing.myqcloud.com/app/newImages/shopping/arrow_gray.png" mode=""></image>
- </view>
- </view>
- <view class="address-box" v-if="address!=null" @click="openAddress()">
- <view class="left">
- <view class="name-box">
- <text class="text name">{{address.realName}}</text>
- <text class="text" v-if="address.phone!=null">{{address.phone}}</text>
- </view>
- <view class="address">
- {{address.province}}{{address.city}}{{address.district}}{{address.detail}}
- </view>
- </view>
- <view class="arrow-box">
- <image src="https://bjyjb-1362704775.cos.ap-chongqing.myqcloud.com/app/newImages/shopping/arrow_gray.png" mode=""></image>
- </view>
- </view>
- <!-- 药品列表 -->
- <view class="goods-list">
- <view v-for="(item,index) in carts" :key="index" class="item" @click="showDetail(item)">
- <view class="img-box">
- <image :src="source=='audit'?item.image : item.productAttrImage||item.productImage" mode="aspectFill"></image>
- </view>
- <view class="info-box">
- <view>
- <view class="name-box ellipsis2">
- <view class="myotctxt" style="margin-right: 10rpx;" v-show="item.productType" :style="{background:_background(item.productType)}">{{$getDictLabelName("storeProductType",item.productType)}}</view>
- {{ item.commonName&&item.commonName!=='-'?item.commonName:item.productName }}
- </view>
- <view class="spec ellipsis2">{{item.productAttrName}}</view>
- </view>
- <view class="price-num">
- <view class="price">
- <text class="unit">¥</text>
- <text class="num">{{item.price?item.price.toFixed(2):'0.00'}}</text>
- </view>
- <view class="num">x{{item.cartNum}}</view>
- </view>
- </view>
- </view>
- <!-- 小计 -->
- <view class="sub-total">
- <text class="label">合计金额:</text>
- <view class="price">
- <text class="unit">¥</text>
- <text class="num">{{price.payPrice?price.payPrice.toFixed(2):'0.00'}}</text>
- </view>
- </view>
- </view>
-
- </view>
- <!-- 底部按钮 -->
- <view class="btn-foot">
- <view class="right">
- <view class="total" >
- <text class="label">总金额:</text>
- <view class="price">
- <text class="unit">¥</text>
- <text class="num">{{price.totalPrice?price.totalPrice.toFixed(2):'0.00'}}</text>
- </view>
- </view>
- <template v-if="showBtn">
- <view class="btn" @click="openUpdateMoney()" v-if="source!='audit'">
- 实收金额
- </view>
- <view class="btn" v-if="!disabled">
- 分享
- <button class="share" data-name="shareBtn" open-type="share">分享</button>
- </view>
- <view class="btn" v-else @click="handleShare()">提交订单</view>
- </template>
- </view>
- </view>
- <modal v-if="inputShow" title="实收金额" confirm-text="保存" cancel-text="取消" @cancel="cancelUpdateMoney" @confirm="confirm">
- <input type="text" v-model="inputTxt" placeholder="请输入实收金额" class="intxt" maxlength="8" />
- </modal>
- </view>
- </template>
- <script>
- import {getSalesOrder,getSalesOrders,updateSalseOrderMoney,sharePrepare,changeListDetail,salesVoucherCacheAddress,checkPrescriptionDrug} from '../api/companyOrder.js'
- export default {
- data() {
- return {
- inputShow:false,
- inputTxt:null,
- orderKey:null,
- price:{
- payPrice:0.00,
- totalPrice:0.00,
- },
- carts:[],
- disabled: true,
- source:'', // audit审核页过来的
- auditId:'',
- address:null,
- addressId: null,
- auditMoney: false,
- companyUserId: '',
- dataKey: '',
- productIds: '',
- showBtn: false,
- isPrescribe: false,
- answerMedicine: {},
- }
- },
- computed: {
- _background() {
- //productType: 1:OTC,2:Rx,3:非药品,4:器械
- return (productType)=> {
- switch (productType) {
- case 1: return '#37E2EA' // OTC
- case 2: return 'red' // Rx
- case 3: return '#2583EB' // 非药品
- case 4: return '#999' // 器械
- default: return '#ccc'
- }
- }
- }
- },
- onLoad(option) {
- this.source = option.source || ''
- uni.hideShareMenu()
- // this.disabled = true
- if(this.source == 'audit') {
- // uni.hideShareMenu()
- // this.disabled = true
- this.auditId = option.auditId || ''
- this.sharePrepare()
- this.getDetail()
- } else {
- this.orderKey=option.orderKey;
- // uni.showShareMenu()
- // uni.hideShareMenu()
- this.getSalesOrder();
- }
- uni.$on('updateAddress', (e) => {
- this.addressId=e.addressId;
- this.address=e;
- })
- this.companyUserId = uni.getStorageSync('companyUserId')
- },
- //发送给朋友
- onShareAppMessage(res) {
- return {
- title: "互易享",
- path: '/pages_company/order/confirmOrder?orderKey='+this.orderKey+'&companyUserId='+this.companyUserId+"&dataKey="+this.dataKey,
- imageUrl: 'https://bjyjb-1362704775.cos.ap-chongqing.myqcloud.com/app/newImages/sharelogo.png' //分享图标,路径可以是本地文件路径、代码包文件路径或者网络图片路径.支持PNG及JPG。显示图片长宽比是 5:4
- }
-
- },
- onUnload() {
- uni.$off('updateAddress')
- },
- methods: {
- openAddress(){
- uni.navigateTo({
- url: '/pages_user/address'
- })
- },
- handleShare() {
- if(!this.addressId) {
- uni.showToast({
- title: '请选择地址',
- icon: 'none'
- })
- return
- }
- const param = {
- addressId:this.addressId,
- companyUserId:uni.getStorageSync('companyUserId')
- }
- this.saveCacheAddress(param)
- },
- saveCacheAddress(param,type) {
- uni.showLoading({
- title: '保存中'
- })
- salesVoucherCacheAddress(param).then(res=>{
- uni.hideLoading()
- if(res.code ==200) {
- this.dataKey = res.dataKey
- if(type==1) {
- this.confirmUpdateMoney()
- } else {
- if(this.isPrescribe) {
- uni.navigateTo({
- url: '/pages_company/order/editUserOrderPrescribe?orderKey='+this.orderKey+'&companyUserId='+this.companyUserId+"&dataKey="+this.dataKey+'&answerMedicine='+encodeURIComponent(JSON.stringify(this.answerMedicine)),
- })
- } else {
- uni.showToast({
- title: '提交成功,去分享吧',
- icon: 'none'
- })
- this.dataKey = res.dataKey
- this.disabled = false
- uni.showShareMenu()
- }
- }
-
- } else {
- uni.showToast({
- title: res.msg,
- icon: 'none'
- })
- }
- })
- },
- checkPrescriptionDrug() {
- this.showBtn = false
- checkPrescriptionDrug({productIds:this.productIds}).then(res=>{
- if(res.code == 200) {
- this.showBtn = true
- this.isPrescribe = res.data
- this.answerMedicine = this.carts.map(it=>({
- medicineId:it.productId,
- number: it.num
- }))
- } else {
- uni.showToast({
- title: res.msg,
- icon: 'none'
- })
- }
- })
- },
- openUpdateMoney(){
- if(this.auditMoney) {
- uni.showModal({
- title: '提示',
- content: '✅ 实收金额改价申请审核中!',
- showCancel: false,
- success: function (res) {
- if (res.confirm) {
- console.log('用户点击确认');
- } else if (res.cancel) {
- console.log('用户点击取消');
- }
- }
- });
- return
- }
- this.inputShow = true
- },
- cancelUpdateMoney(){
- this.inputShow = false
- },
- confirm() {
- // if(parseFloat(this.inputTxt)>0){
- // if(this.addressId) {
- // const param = {
- // addressId:this.addressId,
- // companyUserId:uni.getStorageSync('companyUserId')
- // }
- // this.saveCacheAddress(param,1)
- // } else {
- // this.confirmUpdateMoney()
- // }
- // } else {
- // uni.showToast({
- // icon:'none',
- // title: "价格应大于0",
- // });
- // }
- this.confirmUpdateMoney()
- },
- confirmUpdateMoney(){
- if(parseFloat(this.inputTxt)>0){
- var that=this;
- var data={totalAmount: this.price.totalPrice,createOrderKey:this.orderKey,token:uni.getStorageSync('CompanyUserToken'),money:this.inputTxt}
- uni.showLoading({
- title: '保存中'
- })
- updateSalseOrderMoney(data).then(
- res => {
- uni.hideLoading()
- if(res.code==200){
- this.auditMoney = res.disabled
- const canShare = !!(this.addressId && !res.disabled);
- this.disabled = !canShare;
- canShare ? uni.showShareMenu() : uni.hideShareMenu();
- this.inputShow = false
- this.getSalesOrder();
- uni.showModal({
- title: '提示',
- content: '✅ 实收金额改价申请已提交!',
- showCancel: false,
- success: function (res) {
- if (res.confirm) {
- uni.navigateBack()
- } else if (res.cancel) {
- console.log('用户点击取消');
- }
- }
- });
- }else{
- uni.showToast({
- icon:'none',
- title: res.msg,
- });
- }
- },
- rej => {}
- );
- }
- else{
- uni.showToast({
- icon:'none',
- title: "价格应大于0",
- });
- }
- },
- showDetail(item) {
- uni.navigateTo({
- url: 'productDetails?productId='+item.productId
- })
- },
- getSalesOrder(){
- var that=this;
- that.price.payPrice=0;
- that.price.totalPrice=0;
- var data={createOrderKey:this.orderKey}
- getSalesOrder(data).then(
- res => {
- if(res.code==200){
- this.carts=res.carts;
- this.carts.forEach(function(element) {
- that.price.payPrice+=element.price*element.cartNum;
- });
- that.price.totalPrice=res.totalMoney
- this.productIds = this.carts&&this.carts.length> 0?this.carts.map(item=>item.productId).join(','):'';
- this.checkPrescriptionDrug()
- }else{
- uni.showToast({
- icon:'none',
- title: res.msg,
- });
- }
- },
- rej => {}
- );
- },
- sharePrepare() {
- const param = {
- token:uni.getStorageSync('CompanyUserToken'),
- id:this.auditId,
- }
- sharePrepare(param).then(res=>{
- if(res.code==200) {
- if(this.addressId) {
- uni.showShareMenu()
- this.disabled = false
- }
- } else {
- uni.showToast({
- icon:'none',
- title: res.msg,
- });
- }
- })
- },
- getDetail() {
- let that = this
- changeListDetail(this.auditId).then(res=>{
- if(res.code==200){
- that.carts=res.data.preparedProductInfoVoList;
- that.price.payPrice = res.data.totalAmount
- that.price.totalPrice=res.data.money
- that.orderKey = res.data.createOrderKey
- that.productIds = that.carts&&that.carts.length> 0?that.carts.map(item=>item.productId).join(','):'';
- that.checkPrescriptionDrug()
- }else{
- uni.showToast({
- icon:'none',
- title: res.msg,
- });
- }
- })
- }
- }
- }
- </script>
- <style lang="scss">
-
- .inner-box{
- padding: 20upx 20upx 140upx;
- .address-box{
- box-sizing: border-box;
- min-height: 171upx;
- background: #FFFFFF;
- border-radius: 16upx;
- background-image: url(https://bjyjb-1362704775.cos.ap-chongqing.myqcloud.com/app/newImages/shopping/address_bg.png);
- background-repeat: no-repeat;
- background-size: 100% 30upx;
- background-position: left bottom;
- padding: 38upx 30upx 36upx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- .left{
- width: 92%;
- .name-box{
- display: flex;
- align-items: center;
- .text{
- font-size: 32upx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #111111;
- line-height: 1;
- &.name{
- margin-right: 30upx;
- }
- }
- }
- .address{
- font-size: 28upx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #666666;
- line-height: 42upx;
- text-align:left;
- margin-top: 23upx;
- }
- }
- .arrow-box{
- width: 12upx;
- height: 23upx;
- display: flex;
- align-items: cenetr;
- justify-content: cenetr;
- image{
- width: 100%;
- height: 100%;
- }
- }
- }
- .goods-list{
- margin-top: 20upx;
- padding: 0 30upx;
- background-color: #FFFFFF;
- border-radius: 16upx;
- .item{
- padding: 30upx 0;
- border-bottom: 1px solid #EDEEEF;
- display: flex;
- align-items: center;
- .img-box{
- width: 160upx;
- height: 160upx;
- margin-right: 30upx;
- image{
- width: 100%;
- height: 100%;
- }
- }
- .info-box{
- width: calc(100% - 190upx);
- height: 160upx;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- .name-box{
- font-size: 28upx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #111111;
- line-height: 40upx;
- }
- .spec{
- margin-top: 10upx;
- font-size: 24upx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #999999;
- line-height: 1;
- }
- .price-num{
- display: flex;
- align-items: center;
- justify-content: space-between;
- .price{
- display: flex;
- align-items: flex-end;
- .unit{
- font-size: 24upx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #111111;
- line-height: 1.2;
- margin-right: 4upx;
- }
- .num{
- font-size: 32upx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #111111;
- line-height: 1;
- }
- }
- .num{
- font-size: 24upx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #999999;
- line-height: 1;
- }
- }
- }
- }
- .sub-total{
- height: 88upx;
- display: flex;
- align-items: center;
- justify-content: flex-end;
- .label{
- font-size: 24upx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #999999;
- }
- .price{
- display: flex;
- align-items: flex-end;
- .unit{
- font-size: 24upx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #FF6633;
- line-height: 1.2;
- margin-right: 4upx;
- }
- .num{
- font-size: 32upx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #FF6633;
- line-height: 1;
- }
- }
- }
- }
- .points{
- height: 88upx;
- padding: 0 30upx;
- background: #FFFFFF;
- border-radius: 16upx;
-
- display: flex;
- align-items: center;
- justify-content: space-between;
- .left{
- display: flex;
- align-items: center;
- image{
- width: 28upx;
- height: 28upx;
- margin-right: 20upx;
- }
- .text{
- font-size: 28upx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #666666;
- }
- }
- .right{
- display: flex;
- align-items: center;
- .text{
- font-size: 28upx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #111111;
-
- }
- image{
- margin-left: 15upx;
- width: 14upx;
- height: 24upx;
- }
- }
- }
- .remarks{
- height: 88upx;
- padding: 0 30upx;
- background: #FFFFFF;
- border-radius: 16upx;
- margin-top: 20upx;
- display: flex;
- align-items: center;
- input{
- width: 100%;
- font-size: 28upx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #000000;
- }
- .input{
- font-size: 28upx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #999999;
- }
- }
- }
- .btn-foot{
- box-sizing: border-box;
- width: 100%;
- height: 121upx;
- background: #FFFFFF;
- padding: 16upx 30upx;
- display: flex;
- align-items: center;
- justify-content: flex-end;
- position: fixed;
- left: 0;
- bottom: 0;
- z-index: 99;
- .right{
- display: flex;
- align-items: center;
- .total{
- display: flex;
- align-items: flex-end;
- margin-right: 15upx;
- .label{
- font-size: 26upx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #999999;
- line-height: 1.5;
- }
- .price{
- display: flex;
- align-items: flex-end;
- .unit{
- font-size: 28upx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #FF6633;
- line-height: 1.2;
- margin-right: 10upx;
- }
- .num{
- font-size: 32upx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #FF6633;
- line-height: 1;
- }
- }
- }
- .btn{
- margin-left: 10rpx;
- width: 180upx;
- height: 88upx;
- line-height: 88upx;
- text-align: center;
- font-size: 30upx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #FFFFFF;
- background: #2583EB;
- border-radius: 44upx;
- position: relative;
- .share{
- display: inline-block;
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%rpx;
- opacity: 0;
- }
- }
- }
- }
- </style>
-
|