| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371 |
- <template>
- <view class="container">
- <view class="goods-box" v-if="list.cart_info">
- <view class="header">订单号:{{ list.order_id }}</view>
- <view class='item acea-row' v-for="(item,index) in list.cart_info">
- <view class='pictrue'>
- <image :src="item.cart_info.productInfo.attrInfo.image" mode=""></image>
- </view>
- <view class='text acea-row row-column row-between'>
- <view class="title line2">{{ item.cart_info.productInfo.store_name }}</view>
- <view class='money acea-row row-between row-middle'>
- <view class="orangcol">
- 已核销:<text>{{item.write_times - item.surplus_num}}</text>/{{item.write_times}}
- </view>
- <view v-if="item.is_writeoff == 1" class="txt acea-row row-middle">
- 核销已完成
- </view>
- <view v-else class="txt acea-row row-middle">
- 本次核销:
- <view class='carnum acea-row row-center-wrapper'>
- <view v-if="item.surplus_num_input == 1" class="reduce bggary">
- <text class="iconfont icon-ic_Reduce"></text>
- </view>
- <view v-else class="reduce" @click.stop='subCart(item,index)'>
- <text class="iconfont icon-ic_Reduce"></text>
- </view>
- <!-- <view class='nums'>{{item.surplus_num_input}}</view> -->
- <input v-model="item.surplus_num_input" class='nums' type="number" @input="numInput" @blur="numBlur" />
- <view v-if="item.surplus_num_input == item.surplus_num" class="plus bggary">
- <text class="iconfont icon-ic_increase"></text>
- </view>
- <view v-else class="plus" @click.stop='addCart(item,index)'>
- <text class="iconfont icon-ic_increase"></text>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- <view class="record-box" v-if="recordList.length">
- <view class="header">核销记录</view>
- <view class="list">
- <view class="item acea-row row-middle row-between" v-for="(item, index) in recordList" :key="index">
- <view class="left">{{ item.add_time }}</view>
- <view class="right">核销{{item.writeoff_num}}次</view>
- </view>
- </view>
- </view>
- <view class="footer acea-row row-middle row-between">
- <navigator class="btn" :url="storeNum?'/pages/admin/work/index':'/pages/admin/work/store'" hover-class="none">返回工作台</navigator>
- <view v-if="list.cart_info && list.cart_info[0].surplus_num" class="btn" @click="verification">确认核销</view>
- </view>
- </view>
- </template>
- <script>
- import {
- orderCartInfo,
- orderWriteoff,
- storeWirteOffRecords,
- orderWirteOffRecords,
- } from '@/api/admin'
- export default {
- data() {
- return {
- list: {},
- recordList: [],
- lists: {},
- checkModel: [],
- nums: [],
- auth: 1,
- id: 0,
- storeNum:1 //1:平台;2:门店
- }
- },
- watch: {
- checkModel() {
- if (this.lengt == this.checkModel.length) {
- this.checked = true;
- } else {
- this.checked = false;
- }
- }
- },
- onLoad(option) {
- this.auth = option.auth || 1;
- this.id = option.id;
- this.storeNum = parseInt(option.storeNum);
- this.getCartList()
- this.orderWirteOffRecords()
- },
- methods: {
- numInput(event) {
- let value = event.detail.value;
- if (value) {
- value = Number(value);
- this.$nextTick(() => {
- if (value > this.list.cart_info[0].surplus_num) {
- this.list.cart_info[0].surplus_num_input = this.list.cart_info[0].surplus_num;
- } else if (value < 1) {
- this.list.cart_info[0].surplus_num_input = 1;
- }
- });
- }
- },
- numBlur(event) {
- let value = event.detail.value;
- if (!value) {
- this.$nextTick(() => {
- this.list.cart_info[0].surplus_num_input = 1;
- });
- }
- },
- orderWirteOffRecords() {
- let funApi = '';
-
- if(this.storeNum){
- funApi = orderWirteOffRecords;
- }else{
- funApi = storeWirteOffRecords;
- }
- funApi(this.id, {
- product_type: 4
- }).then(res => {
- this.recordList = res.data.list;
- });
- },
- num() {
- for (let index = 0; index < this.lists.cart_info.length; index++) {
- this.nums.push({
- num: 0
- });
- }
- },
- getCartList: function() {
- orderCartInfo({
- oid: this.id,
- auth: this.auth,
- }).then(res => {
- let list = res.data;
- for (let i = 0; i < list.cart_info.length; i++) {
- list.cart_info[i].surplus_num_input = 1
- }
- this.list = res.data
- this.lists = JSON.parse(JSON.stringify(res.data))
- this.listlet = res.data.cart_info.length
- this.$set(this.attr, 'id', this.list.id);
- this.num()
- }).catch(res => {
- this.$util.Tips({
- title: res
- });
- });
- },
- subCart(item, index) {
- this.list.cart_info[index].surplus_num_input--;
- },
- addCart(item, index) {
- this.list.cart_info[index].surplus_num_input++;
- },
- verification() {
- let that = this;
- let cart_ids = [];
- for (let i = 0; i < this.list.cart_info.length; i++) {
- cart_ids.push({
- cart_id: this.list.cart_info[i].cart_id,
- cart_num: this.list.cart_info[i].surplus_num_input,
- });
- }
- orderWriteoff({
- auth: this.auth,
- oid: this.id,
- cart_ids: cart_ids
- }).then(res => {
- // uni.hideLoading();
- this.$util.Tips({
- title: res.msg
- }, () => {
- this.orderWirteOffRecords();
- });
- this.list.cart_info[0].surplus_num = this.list.cart_info[0].surplus_num - this.list.cart_info[0].surplus_num_input;
- // that.getCartList();
- }).catch(err => {
- this.$util.Tips({
- title: err
- });
- // uni.hideLoading();
- });
- }
- },
- }
- </script>
- <style lang="scss" scoped>
- .container {
- padding: 22rpx 20rpx;
- }
- .goods-box {
- padding: 32rpx 24rpx;
- border-radius: 24rpx;
- background: #FFFFFF;
- .header {
- margin-bottom: 26rpx;
- font-size: 28rpx;
- line-height: 40rpx;
- color: #333333;
- }
- .pictrue {
- width: 136rpx;
- height: 136rpx;
- border-radius: 16rpx;
- }
- image {
- width: 100%;
- height: 100%;
- border-radius: 16rpx;
- }
- .text {
- flex: 1;
- padding-left: 20rpx;
- }
- .title {
- font-size: 28rpx;
- line-height: 40rpx;
- color: #333333;
- }
- .orangcol {
- font-size: 24rpx;
- line-height: 34rpx;
- color: #666666;
- text {
- color: #2A7EFB;
- }
- }
- .txt {
- font-size: 24rpx;
- line-height: 34rpx;
- color: #666666;
- }
- .reduce {
- width: 32rpx;
- height: 36rpx;
- text-align: left;
- line-height: 36rpx;
- .iconfont {
- font-size: 24rpx;
- color: #333333;
- }
- &.bggary {
- .iconfont {
- color: #CCCCCC;
- }
- }
- }
- .plus {
- width: 32rpx;
- height: 36rpx;
- text-align: right;
- line-height: 36rpx;
- .iconfont {
- font-size: 24rpx;
- color: #333333;
- }
- &.bggary {
- .iconfont {
- color: #CCCCCC;
- }
- }
- }
- .nums {
- width: 72rpx;
- height: 36rpx;
- border-radius: 4rpx;
- background: #F5F5F5;
- text-align: center;
- font-family: SemiBold;
- font-weight: 600;
- font-size: 24rpx;
- line-height: 36rpx;
- color: #333333;
- }
- .iconfont {
- font-size: 24rpx;
- }
- }
- .record-box {
- padding-bottom: 30rpx;
- border-radius: 24rpx;
- margin-top: 20rpx;
- background: #FFFFFF;
- .header {
- padding: 32rpx 0 16rpx 24rpx;
- font-weight: 500;
- font-size: 30rpx;
- line-height: 42rpx;
- color: #333333;
- }
- .list {
- padding: 0 40rpx;
- }
- .item {
- height: 88rpx;
- border-bottom: 1rpx solid #F1F1F1;
- font-size: 28rpx;
- color: #333333;
- .right {
- color: #666666;
- }
- }
- }
- .footer {
- position: fixed;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 112rpx;
- height: calc(112rpx + constant(safe-area-inset-bottom));
- height: calc(112rpx + env(safe-area-inset-bottom));
- padding: 0 20rpx;
- padding-bottom: constant(safe-area-inset-bottom);
- padding-bottom: env(safe-area-inset-bottom);
- background: #FFFFFF;
- .btn {
- flex: 1;
- height: 72rpx;
- border: 2rpx solid #2A7EFB;
- border-radius: 36rpx;
- margin-right: 16rpx;
- text-align: center;
- font-weight: 500;
- font-size: 26rpx;
- line-height: 68rpx;
- color: #2A7EFB;
- &:last-child {
- margin-right: 0;
- background: #2A7EFB;
- color: #FFFFFF;
- }
- }
- }
- .item ~ .item{
- margin-top: 40rpx;
- }
- </style>
|