123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432 |
- <template>
- <view class="container">
- <u-navbar leftIconColor="#fff" titleStyle="color:#fff;fontSize:36rpx;" :autoBack="true" bgColor="#2C6FF3"
- :placeholder="true" title="手动扣款"></u-navbar>
- <view class="video-container">
- <video :src="videoUrl" style="width: 100%;"></video>
- <view class="flex align-center justify-between" style="padding:0 24rpx;">
- <view class="video-tab">
- <u-subsection :list="videoType" activeColor="#2C6FF3" :current="videoCurrent"
- @change="sectionChange">
- </u-subsection>
- </view>
- <view class="flex">
- <view>
- <xbutton size="mini" padding="0 20rpx" @tap='addCom(deviceId)'>添加商品</xbutton>
- </view>
- <view style="margin-left: 24rpx;">
- <xbutton size="mini" width='180rpx' @tap='submit'>提交补扣申请</xbutton>
- </view>
- </view>
- </view>
- </view>
- <view class="goods-select" v-if="goodsList.length>0">
- <u-scroll-list :indicator="indicator" indicatorColor="#fff0f0" indicatorActiveColor="#f56c6c">
- <view class="flex justify-around">
- <view class="goods-item" v-for="(item,index) in goodsList" :key="index">
- <view class="flex flex-direction align-center justify-center image-dele-container goodContainer"
- @tap="clean(index,item)">
- <!-- <view class="flex align-center justify-center numberContainer">
- {{value}}
- </view> -->
- <view class="image">
- <u--image radius="4" width="100rpx" height="100rpx" :src="item.goodsImg" mode="aspectFit"
- :lazy-lord="true"></u--image>
- </view>
- <view class="goods-select-name">{{item.name}}</view>
- </view>
- <view class="flex align-center justify-center" style="margin-top: 8rpx;">
- <view class="flex align-center justify-center">
- <view class="minus" @tap="reduce(item,index)">
- <u-icon name="minus" size="12"></u-icon>
- </view>
- <text style="width: 50rpx;text-align: center;" class="input">{{item.number}}</text>
- <view class="plus" @tap="add(item)">
- <u-icon name="plus" color="#FFFFFF" size="12"></u-icon>
- </view>
- </view>
- </view>
- </view>
- </view>
- </u-scroll-list>
- </view>
- <view class="goods-select-empty" v-else>
- 添加需要补扣的商品~
- </view>
- <view class="classify-wrap">
- <Classify :status="status" :commList="commList"
- @comClick='detail' :height="fullHeight" :leftShow="false" />
- </view>
- </view>
- </template>
- <script>
- import {
- ownerGoodsList,
- list
- } from "@/api/commodity/goods.js"
- import {
- apply
- } from "@/api/order/riskorder.js"
- import {
- categoryList
- } from "@/api/device/device.js"
- import Classify from "@/components/classify/index.vue"
- export default {
- components: {
- Classify
- },
- data() {
- return {
- scrollintoview: '',
- fullHeight: '0',
- tabList: [], //商品类目
- commList: [], //商品列表
- goodsList: [], //商品id列表
- status: 'nomore', //加载更多
- riskId: '',
- deviceId: '',
- video: {
- url1: '',
- url2: ''
- },
- videoUrl: null,
- videoType: ['主视频', '副视频'],
- videoCurrent: 0,
- statGoodsList: [], //平台识别补扣商品
- }
- },
- onLoad(e) {
- let _this = this;
- const query = uni.createSelectorQuery().in(this);
- query.select(".classify-wrap").boundingClientRect((data) => {
- uni.getSystemInfo({
- success(res) {
- // 针对iPhone X等机型底部安全距离做适配
- const model = res.model;
- const modelInclude = [
- "iPhone X",
- 'iPhone XR',
- "iPhone XS",
- "iPhone XS MAX",
- "iPhone 12/13 mini",
- "iPhone 12/13 (Pro)",
- "iPhone 12/13 Pro Max",
- "iPhone 14 Pro Max"
- ];
- let safeDistance = modelInclude.includes(model)
- //动态设置商品区域高度
- if (safeDistance) {
- _this.fullHeight = res.windowHeight - data.top - 34 + 'px';
- } else {
- _this.fullHeight = res.windowHeight - data.top + 'px';
- }
- },
- });
- }).exec();
- // uni.getSystemInfo({
- // success(res) {
- // _this.fullHeight = 2 * (res.windowHeight - res.statusBarHeight - 44 - 143) + 'rpx';
- // },
- // });
- this.riskId = e.id
- this.deviceId = e.deviceId
- this.initOrder()
- },
-
- onShow() {
- this.getCommList()
- },
- methods: {
- //初始化页面信息
- initOrder() {
- let orderDetail = JSON.parse(uni.getStorageSync('riskOrder'));
- if (orderDetail.video) {
- this.video = {
- url1: orderDetail.video.split(',')[0],
- url2: orderDetail.video.split(',')[1]
- }
- this.videoUrl = this.video.url1
- } else {
- this.video = {
- url1: '',
- url2: ''
- }
- }
- let tempGoodsList = orderDetail.orderGoods.map(i => {
- return {
- goodsImg: i.goodsImgUrl,
- spid: i.goodsId,
- name: i.goodsName,
- price: Number(i.totalMoney) / 100,
- number: Number(i.totalNumber),
- initNum: Number(i.totalNumber)
- }
- })
- this.statGoodsList = JSON.parse(JSON.stringify(tempGoodsList))
- this.goodsList = JSON.parse(JSON.stringify(tempGoodsList))
- },
- sectionChange(e) {
- this.videoCurrent = e;
- if (e == 0) {
- this.videoUrl = this.video.url1
- } else {
- this.videoUrl = this.video.url2
- }
- },
- //根据类目获取商品列表
- getCommList() {
- list({
- deviceId: this.deviceId,
- }).then(res => {
- let data = res.data;
- let newData = data.map(i => {
- i.price = (Number(i.price) / 100).toFixed(2)
- return i
- })
- this.commList = newData
- })
- },
- statGoodsTips() {
- this.$modal.msg('该商品为平台算法识别异常商品,为防止您的无辜损失,无法再删减!')
- },
- clean(e, item) { //点击移除商品
- //校验是否算法识别商品
- if (this.isStatGoods(item)) {
- this.statGoodsTips()
- return
- }
- this.goodsList.splice(e, 1)
- },
- // 校验是否算法识别商品
- isStatGoods(e) {
- console.log(e)
- console.log(this.statGoodsList)
- for (let i = 0; i < this.statGoodsList.length; i++) {
- let item = this.statGoodsList[i];
- if (item.spid == e.spid) {
- return true
- }
- }
- return false
- },
- //校验是否减少了算法识别商品
- isDelStatGoods(e) {
- for (let i = 0; i < this.statGoodsList.length; i++) {
- let item = this.statGoodsList[i];
- if (item.spid == e.spid && item.number == e.number) {
- return true
- }
- }
- return false
- },
- detail(e) {
- this.goodsList.forEach(item => {
- if (e.goodsId == item.spid) {
- this.add(item)
- }
- })
- for (var i = 0; i < this.goodsList.length; i++) {
- if (this.goodsList[i].spid == e.goodsId) {
- return;
- }
- }
- this.goodsList.push({
- goodsImg: e.cover,
- spid: e.goodsId,
- name: e.name,
- price: e.price,
- number: 1,
- initNum: 0
- })
- },
- //新增
- add(e) {
- e.number++
- },
- //减少
- reduce(e, index) {
- if (this.isDelStatGoods(e)) { //校验是否减少了算法识别商品
- this.statGoodsTips()
- return
- }
- e.number--
- if (e.number == 0) {
- this.goodsList.splice(index, 1)
- }
- },
- reset() {
- this.status == 'loadmore'
- this.page = 1;
- this.size = 10;
- this.commList = [];
- },
-
- // 添加商品至机器
- addCom(deviceId){
- this.$tab.navigateTo('/pages/equipment/addCom?id='+deviceId)
- },
-
- //提交补扣申请
- submit() {
- if (!this.goodsList.length) {
- uni.$u.toast('请选择商品')
- return;
- }
- var goodsId = []
- this.goodsList.forEach(item => {
- if (item.number - item.initNum > 0) { //除去算法识别商品
- goodsId.push({
- goodsId: item.spid,
- goodsName: item.name,
- price: (Number(item.price)) * 100,
- totalNumber: item.number - item.initNum
- })
- }
- })
- apply({
- "cutGoods": goodsId,
- "riskId": this.riskId
- }).then(res => {
- this.$modal.msg('提交申请成功~')
- setTimeout(() => {
- this.$tab.navigateBack()
- }, 800)
- })
- }
- },
- onUnload() {
- uni.setStorage('riskOrder', '')
- },
- }
- </script>
- <style lang="scss" scoped>
- .container {
- .martop {
- margin-top: 20rpx;
- }
- .margin {
- margin: 10rpx 20rpx;
- }
- .margintop {
- margin-top: 10rpx;
- }
- .video-container {
- .video-tab {
- width: 300rpx;
- }
- }
- .box {
- padding: 20rpx 24rpx;
- }
- .goods-item+.goods-item {
- margin-left: 12rpx;
- }
- .image-dele-container {
- position: relative;
- width: 140rpx;
- height: 140rpx;
- background-color: #f6f6f6;
- border-radius: 15rpx;
- padding: 12rpx;
- view {
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
- width: 100rpx;
- }
- .image {
- width: 100rpx;
- height: 100rpx;
- }
- .goods-select-name {
- font-size: 24rpx;
- }
- }
- .goods-select {
- margin: 0 24rpx;
- height: 218rpx;
- padding-top: 10rpx;
- }
- .goods-select-empty {
- height: 218rpx;
- text-align: center;
- line-height: 218rpx;
- }
- .goodContainer {
- position: relative;
- .numberContainer {
- width: 35rpx;
- height: 35rpx;
- border-radius: 100%;
- color: #fff;
- background-color: red;
- position: absolute;
- right: -5rpx;
- top: -5rpx;
- }
- }
- .minus {
- width: 22px;
- height: 22px;
- border-width: 1px;
- border-color: #E6E6E6;
- border-style: solid;
- border-top-left-radius: 100px;
- border-top-right-radius: 100px;
- border-bottom-left-radius: 100px;
- border-bottom-right-radius: 100px;
- @include flex;
- justify-content: center;
- align-items: center;
- }
- .plus {
- width: 18px;
- height: 18px;
- background-color: #FF0000;
- border-radius: 50%;
- /* #ifndef APP-NVUE */
- display: flex;
- /* #endif */
- justify-content: center;
- align-items: center;
- }
- }
- </style>
|