123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439 |
- <template>
- <app-layout>
- <view v-if="is_show" class='clerk-box'>
- <view class='order-info'>
- <view class='dir-left-nowrap'>
- <view class='info-label'>收货人:</view>
- <view>
- <view>{{orderDetail.name}}</view>
- </view>
- </view>
- <view class='dir-left-nowrap'>
- <view class='info-label'>联系方式:</view>
- <view>
- <view>{{orderDetail.mobile}}</view>
- </view>
- </view>
- <view class='line'></view>
- <view>
- <text class='info-label'>下单时间:</text>
- {{orderDetail.created_at}}
- </view>
- <view class="remark-box" v-if="orderDetail.remark">
- <text class='info-label'>买家留言:</text>
- {{orderDetail.remark}}
- </view>
- </view>
- <view class='goods-box'>
- <view v-for='item in orderDetail.detail' :style="{'margin-top': index == 0 ? '0': '24rpx'}"
- :key='item.id'>
- <app-jump-button :url="item.goods_info.page_url">
- <app-order-goods-info style="width:100%;" :goods='item.goods_info'></app-order-goods-info>
- </app-jump-button>
- </view>
- </view>
- <view class='order-info dir-top-nowrap'>
- <view class='dir-left-nowrap item'>
- <view class='box-grow-1 info-label'>商品总额</view>
- <view class='box-grow-0'>¥{{orderDetail.total_goods_price}}</view>
- </view>
- <view class='dir-left-nowrap item'>
- <view class='box-grow-1 info-label'>商品总数</view>
- <view class='box-grow-0'>x{{orderDetail.goods_num}}</view>
- </view>
- <view v-if='orderDetail.integral_deduction_price > 0' class='dir-left-nowrap item'>
- <view class='box-grow-1 info-label'>积分抵扣</view>
- <view class='box-grow-0'>-¥{{orderDetail.integral_deduction_price}}</view>
- </view>
- <view class='dir-left-nowrap item' v-if="orderDetail.coupon_discount_price > 0">
- <view class='box-grow-1 info-label'>优惠券优惠</view>
- <view class='box-grow-0'>-¥{{orderDetail.coupon_discount_price}}</view>
- </view>
- <view class='dir-left-nowrap item'>
- <view class='box-grow-1 info-label'>运费</view>
- <view class='box-grow-0'>¥{{orderDetail.express_price}}</view>
- </view>
- <view v-if='orderDetail.words' class='dir-top-nowrap item'>
- <view class='box-grow-1 info-label'>商家留言:</view>
- <view class='box-grow-0 t-extra-small-color'>{{orderDetail.words}}</view>
- </view>
- <view class='order-price-box cross-center dir-right-nowrap'>
- <view>
- 合计:
- <text class='price'>¥
- <text>{{orderDetail.total_pay_price}}</text>
- </text>
- </view>
- </view>
- </view>
- <view class="order-info dir-top-nowrap form-data">
- <app-form-data :detail="orderDetail.detail"></app-form-data>
- </view>
- <view style="height: 140rpx; width: 100%"></view>
- <view class='action-box'>
- <button v-if='orderDetail.is_pay == 1 && orderDetail.clerk_id == 0'
- @click='orderClerk'
- class='box-grow-0 btn'>
- 核销订单
- </button>
- <button v-if='orderDetail.is_pay == 0' class='box-grow-0 btn' @click='clerkAffirmPay'>确认收款</button>
- <view class="cross-center main-center clerk-text" v-else>订单已核销</view>
- </view>
- </view>
- <view v-if="msg" class='bg cross-center main-center'>
- <view class='dialog'>
- <view>提示</view>
- <view class='dialog-content'>无核销权限</view>
- <view @click='toIndex' class='dialog-btn'>确认</view>
- </view>
- </view>
- </app-layout>
- </template>
- <script>
- import { mapState } from 'vuex';
- import appOrderGoodsInfo from "../../../components/page-component/app-order-goods-info/app-order-goods-info.vue";
- import appFormData from "../../../components/basic-component/app-order/app-form-data.vue";
- export default {
- components: {
- 'app-order-goods-info': appOrderGoodsInfo,
- appFormData,
- },
- data() {
- return {
- id: null,
- orderDetail: {},
- clerk_remark: '',
- is_show: false,
- msg: false,
- }
- },
- computed: {
- ...mapState({
- userInfo: state => state.user.info,
- })
- },
- methods: {
- toIndex() {
- uni.redirectTo({
- url: '/pages/index/index'
- });
- },
- getOrderDetail() {
- this.$request({
- url: this.$api.order.detail,
- data: {
- id: this.id,
- action_type: 1
- }
- }).then(response => {
- this.$hideLoading();
- this.is_show = true;
- if (response.code === 0) {
- this.orderDetail = response.data.detail;
- }
- }).catch(() => {
- this.$hideLoading();
- });
- },
- IsClerk() {
- this.$showLoading();
- this.$request({
- url: this.$api.user.is_clerk,
- data: {
- clerk_id: this.userInfo.options.user_id,
- }
- }).then(response => {
- if (response.code === 0) {
- if(response.data.is_clerk_user == 1) {
- this.getOrderDetail();
- }else {
- this.$hideLoading();
- this.msg = true;
- }
- }
- }).catch(() => {
- this.$hideLoading();
- });
- },
- clerkAffirmPay() {
- let self = this;
- uni.showModal({
- title: '提示',
- content: '确认已进行线下收款?',
- success: function (res) {
- if (res.confirm) {
- uni.showLoading({
- title: '加载中'
- });
- self.$request({
- url: self.$api.order.clerk_affirm_pay,
- data: {
- id: self.id,
- action_type: 1,
- }
- }).then(response => {
- uni.hideLoading();
- if (response.code === 0) {
- self.getOrderDetail();
- } else {
- uni.showToast({
- title: response.msg,
- icon: 'none',
- });
- }
- this.msg = response.data.msg
- }).catch(() => {
- uni.hideLoading();
- });
- }
- }
- });
- },
- orderClerk() {
- let self = this;
- uni.showModal({
- content: '是否核销订单?',
- success: function (res) {
- if (res.confirm) {
- self.$showLoading();
- self.$request({
- url: self.$api.order.order_clerk,
- data: {
- id: self.id,
- action_type: 1,
- clerk_remark: self.clerk_remark
- }
- }).then(response => {
- self.$hideLoading();
- uni.showToast({
- title: response.msg,
- icon: 'none',
- duration: 2000,
- success: function() {
- if (response.code === 0) {
- setTimeout(()=> {
- uni.redirectTo({
- url: '/plugins/clerk/order/order?status=1&type=1'
- })
- }, 2000);
- }
- }
- })
- }).catch(() => {
- self.$hideLoading();
- });
- }
- }
- })
- },
- closeDialog() {
- if (this.msg == '核销成功') {
- this.msg = '';
- if (this.is_clerk) {
- let pages = getCurrentPages();
- let idx;
- pages.forEach((row, index) => {
- if (pages[index].route === 'plugins/clerk/order/order') {
- idx = index
- }
- });
- if (idx > -1) {
- pages[idx]._num = 1;
- uni.navigateBack({
- delta: pages.length - 1 - idx
- });
- } else {
- uni.redirectTo({
- url: '/plugins/clerk/order/order?status=1&type=1'
- })
- }
- } else {
- uni.redirectTo({
- url: '/pages/index/index'
- })
- }
- } else {
- this.msg = '';
- }
- },
- },
- onLoad(options) {
- let that = this;
- that.id = options.id;
- var getUser = setInterval(() => {
- if(that.userInfo) {
- that.IsClerk();
- clearInterval(getUser);
- }
- },500)
- }
- }
- </script>
- <style lang="scss" scoped>
- .bg {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background-color: rgba(0, 0, 0, .3);
- z-index: 1000;
- .dialog {
- margin-top: #{-100rpx};
- width: #{630rpx};
- background-color: #fff;
- padding-top: #{40rpx};
- border-radius: #{16rpx};
- font-size: #{32rpx};
- color: #353535;
- text-align: center;
- .dialog-content {
- margin: #{40rpx};
- }
- .dialog-btn {
- color: #ff4544;
- height: #{88rpx};
- line-height: #{88rpx};
- border-top: #{1rpx} solid #e2e2e2;
- }
- }
- }
- .clerk-box {
- position: absolute;
- width: 100%;
- height: 100%;
- }
- .remark-box {
- margin-top: 14#{rpx};
- }
- .action-box {
- position: fixed;
- background-color: #fff;
- height: 140#{rpx};
- bottom: 0;
- width: 100%;
- z-index: 999;
- .btn {
- background-color: $uni-important-color-red;
- color: #fff;
- z-index: 999;
- width: 702#{rpx};
- margin-top: 26#{rpx};
- font-size: 32#{rpx};
- height: 88#{rpx};
- line-height: 88#{rpx};
- border-radius: 44#{rpx};
- }
- .btn::after {
- border: 0;
- }
- .clerk-text {
- font-size: $uni-font-size-import-one;
- height: 100%;
- color: $uni-general-color-one;
- }
- }
- .order-info {
- width: 702#{rpx};
- margin: 24#{rpx};
- background-color: #fff;
- border-radius: 16#{rpx};
- padding: 24#{rpx};
- font-size: $uni-font-size-general-one;
- color: $uni-important-color-black;
- }
- .order-info.form-data {
- margin-bottom: #{24rpx};
- }
- .line {
- height: 1#{rpx};
- width: 654#{rpx};
- background-color: $uni-weak-color-one;
- margin: 22#{rpx} 0;
- }
- .info-label {
- color: $uni-general-color-two;
- }
- .goods-box {
- width: 702#{rpx};
- margin: 0 24#{rpx};
- background-color: #fff;
- border-radius: 16#{rpx};
- padding: 24#{rpx};
- font-size: 28#{rpx};
- color: $uni-important-color-black;
- }
- .order-price-box {
- border-top: 1#{rpx} solid #e2e2e2;
- margin-top: 24#{rpx};
- padding: 20#{rpx} 0 6#{rpx};
- font-size: 28#{rpx};
- color: $uni-important-color-black;
- border-bottom-left-radius: 16#{rpx};
- border-bottom-right-radius: 16#{rpx};
- background-color: #fff;
- }
- .order-price-box .price {
- font-size: 28#{rpx};
- color: $uni-important-color-red;
- }
- .bg {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background-color: rgba(0, 0, 0, .3);
- z-index: 1000;
- }
- .dialog {
- width: 630#{rpx};
- background-color: #fff;
- padding-top: 40#{rpx};
- border-radius: 16#{rpx};
- font-size: 32#{rpx};
- color: $uni-important-color-black;
- text-align: center;
- }
- .dialog-content {
- margin: 40#{rpx};
- }
- .dialog-btn {
- color: $uni-important-color-red;
- height: 88#{rpx};
- line-height: 88#{rpx};
- border-top: 1#{rpx} solid $uni-weak-color-one;
- .view1 {
- color: $uni-important-color-black;
- width: 50%;
- }
- .view2 {
- height: 45#{rpx};
- width: 1#{rpx};
- background-color: $uni-weak-color-one;
- }
- .view3 {
- width: 50%;
- }
- }
- </style>
|