委托修改

This commit is contained in:
jia 2023-09-11 09:35:25 +08:00
parent f4703ddbd9
commit f874159f8f
5 changed files with 187 additions and 144 deletions

View File

@ -1,12 +1,9 @@
<template>
<!-- #ifdef APP || H5 -->
<view>
<!-- #endif -->
<view class="content">
<form @submit="formSubmit" report-submit='true'>
<view class="release_content">
<view class="release_item">
<view class="release_item-one">
<view class="item-one">
@ -19,7 +16,7 @@
<view class="item-one">
委托周期
</view>
<view class="" @click="calendar">
<view class="">
<input type="number" v-model="formData.entrust_day" />
</view>
@ -61,22 +58,15 @@
</view>
</view>
<button class="release_btn button" form-type="submit">发布</button>
<button class="release_btn button" form-type="submit">提交</button>
</view>
</form>
<uni-calendar ref="calendar" :date="info.date" :insert="info.insert" :lunar="info.lunar"
:startDate="info.startDate" :endDate="info.endDate" :range="info.range" @confirm="confirm"
:showMonth="info.showMonth" @close="close" />
<!-- 提到的宝贝弹窗 -->
<uni-popup ref="associated" type="bottom">
<associated @close="close" @getProduct="getProduct" :checkedObj="productList"></associated>
</uni-popup>
</view>
</template>
@ -98,20 +88,8 @@
return {
value1: 1,
value2: "",
options1: [{
text: "Shenzhen1",
value: 1
}, {
options1: [],
text: "Shenzhen2",
value: 2
}, {
text: "Shenzhen3",
value: 3
}],
date: 1,
productList: [],
info: {
startDate: '',
@ -122,6 +100,14 @@
selected: [],
showMonth: false
},
formData: {
entrust_mer_id: '',
entrust_day: 0,
is_type: "4",
product_info: [],
content: ''
},
type: ''
};
},
computed: {
@ -287,6 +273,10 @@
background: #F5F5F5;
}
.content {
height: 100vh;
position: relative;
}
.release_content {
@ -531,6 +521,10 @@
}
.release_btn {
margin-top: 100rpx;
position: absolute;
bottom: 150rpx;
left: 50%;
margin-left: -347rpx;
}
</style>

View File

@ -6,7 +6,7 @@
<cxNavTitle :tabs="tabs" :activeItem="activeItem" @tabClick="tabClick" :show='false'></cxNavTitle>
</view>
<!-- 审核通过 打折的拒绝同意功能 调货不需要功能 -->
<view class="content-content" v-for="(item,i) in list" :key="i" >
<view class="content-content" v-for="(item,i) in orderList" :key="i">
<view class="content-one">
<view class="content-one-img">
@ -14,10 +14,10 @@
</view>
<view class="content-one-txt">
<view class="one-txt-a">
{{item.content}}
{{item.title}}
</view>
<view class="one-txt-b">
委托周期:{{item.day}}
委托周期:{{item.credit_buy}}
</view>
</view>
</view>
@ -28,7 +28,6 @@
<view class="content-two-edita" @click="order">
待处理
</view>
<view class="contentgn">
<!-- <view class="contentgn_a" @click="soldEdit(item)">
处理
@ -47,13 +46,10 @@
</view>
</view>
</view>
<view class="content-two_oneq" v-if="item.type==2">
<view class="content-two_oneq" v-if="item.mer_status==1">
<view class="content-two-editb" @click="accepted">
已接受
</view>
<view class="contentgn">
<view class="contentgn_a" @click="closingorder">
结束委托
@ -64,45 +60,48 @@
</view>
</view>
</view>
<view class="content-two_one" v-if="item.type==3">
<view class="content-two_one" v-if="item.mer_status==2">
<view class="content-two-editc" @click="declined">
已拒绝
</view>
<view class="contentgn">
<view class="contentgn_a">
<view class="contentgn_a" click="deleteOrder(item)">
删除
</view>
<span></span>
<view class="contentgn_b">
<view class="contentgn_b" @click="detail(item)">
详情
</view>
</view>
</view>
<view class="content-two_one" v-if="item.type==4">
<view class="content-two-editd" @click="soldEdit">
已完成
</view>
<view class="contentgn">
<view class="contentgn_a">
<view class="contentgn_a" click="deleteOrder(item)">
删除
</view>
<span></span>
<view class="contentgn_b">
<view class="contentgn_b" @click="detail(item)">
详情
</view>
</view>
</view>
</view>
<view v-if="orderList.length == 0 && this.where.page > 1">
<view class="adddelegation" @click="addDelegation">
<view class="adddelegation-one">
<image src="@/static/images/delegation.png" mode=""></image>
</view>
<view class="adddelegation-two">
新增委托
</view>
</view>
<view v-if="orderList.length == 0">
<emptyPage title="暂无订单~"></emptyPage>
</view>
<u-loadmore :status="status" v-if="orderList.length >= where.limit" />
<uni-popup ref="bindmobile" type="center" @click="close">
<view class="" style="position: relative;">
<view class="entrust">
<view class="entrust_close" @click="close">
@ -114,19 +113,16 @@
委托申请处理
</view>
<view class="bg-content-b">
结算周期: <span>30</span>
结算周期: <span>{{obj.settle_cycle}}</span>
</view>
<view class="bg-content-c">
利息比例: <span>0.05%</span>
利息比例: <span>{{obj.interest_rate}}%</span>
</view>
<view class="entrust_bga_btn">
<view class="cancellation">
<view class="cancellation" @click="passDelete(obj)">
拒绝
</view>
<view class="determine">
<view class="determine" @click="passagree(obj)">
接受
</view>
</view>
@ -136,7 +132,6 @@
</view>
</uni-popup>
<uni-popup ref="bindmobile1" type="center" @click="close">
<view class="" style="position: relative;">
<view class="entrust">
<view class="entrust_close" @click="close">
@ -156,15 +151,11 @@
</view>
</view>
</view>
</view>
</view>
</view>
</uni-popup>
<uni-popup ref="bindmobile2" type="center" @click="close">
<view class="" style="position: relative;">
<view class="entrust">
<view class="entrust_close" @click="close">
@ -177,13 +168,10 @@
</view>
<view class="bg-content-b">
结算周期: <span>30</span>
</view>
<view class="bg-content-c">
利息比例: <span>0.05%</span>
</view>
<view class="entrust_bga_btn">
<view class="cancellation">
拒绝
@ -211,20 +199,15 @@
</view>
<view class="bg-content-b">
结算周期: <span>30</span>
</view>
<view class="bg-content-c">
利息比例: <span>0.05%</span>
</view>
<view class="bg-content-c">
拒绝原因
<view class="" style="margin-top: 21rpx;">
<textarea value="" placeholder="输入拒绝原因" class="bg-content_textarea" />
</view>
</view>
<view class="entrust_bga_btn">
<view class="determine">
@ -242,34 +225,43 @@
<script>
import cxNavTitle from '@/components/cx-navTitle.vue'
import emptyPage from '@/components/emptyPage.vue';
import {
entrustlist,
finishchain,
checkchain
} from '@/api/sale.js'
export default {
components: {
cxNavTitle,
emptyPage
emptyPage,
},
data() {
return {
activeItem: "tabOne",
status: 'loadmore',
tabTitle: "",
orderList: [],
where: {
page: 1,
limit: 10
limit: 10,
type: 1,
status: 0
},
tabs: [{
name: "tabOne",
label: '待处理',
type: '1'
type: 0
},
{
name: "tabTwo",
label: '已接受',
type: '2'
type: 1
},
{
name: "tabThree",
label: '已拒绝',
type: '3'
type: 2
},
],
@ -297,24 +289,43 @@
type: 4
}
]
],
obj: {}
}
},
onLoad() {
this.tabTitle = this.tabs[0].name
// -- :
console.log(this.tabs[0])
// console.log(this.tabs[0])
},
mounted() {
this.commislist()
},
methods: {
onReachBottom() {
if (this.status == 'nomore') return;
this.status = 'loading';
this.where.page = ++this.where.page;
this.commislist()
},
nav(item) {
// uni.navigateTo({
// url: '/pages/commissionedSales/delegation_details/index'
// })
},
//
commislist() {
entrustlist(this.where).then((res) => {
this.orderList.push(...res.data.list)
if (res.data.list.length < this.where.limit) this.status = 'nomore'
if (this.where.page == 1 && res.data.list.length <= 0) this.emptyShow = true
})
},
//
tabClick(e) { //
this.activeItem = e.name; //class
this.tabTitle = e.name; //
@ -337,7 +348,6 @@
},
//
close() {
console.log('1111111')
this.$refs.bindmobile.close()
this.$refs.bindmobile1.close()
this.$refs.bindmobile2.close()
@ -366,25 +376,24 @@
})
},
//
soldEdit() {
soldEdit(item) {
this.obj = item
console.log(item)
this.$refs.bindmobile.open()
},
//
accepted() {
this.$refs.bindmobile1.open()
},
//
closingorder() {
this.$refs.bindmobile3.open()
this.$refs.bindmobile1.open()
// this.$refs.bindmobile3.open()
},
//
declined() {
this.$refs.bindmobile2.open()
// this.$refs.bindmobile2.open()
this.$refs.bindmobile3.open()
},
//
deleteOrder(item) {
@ -438,10 +447,56 @@
</script>
<style lang="scss" scoped>
.content {
height: 100vh;
position: relative;
}
.content_top {
background-color: #FFFFFF;
}
.adddelegation {
width: 694rpx;
height: 95rpx;
background: linear-gradient(276deg, #F98649 0%, #F34E45 100%);
box-shadow: 0 5rpx 11rpx 2rpx rgba(136, 20, 7, 0.3);
border-radius: 47rpx 47rpx 47rpx 47rpx;
opacity: 1;
display: flex;
position: fixed;
position: absolute;
bottom: 84rpx;
left: 50%;
margin-left: -347rpx;
.adddelegation-one {
width: 50rpx;
margin-right: 30rpx;
height: 50rpx;
margin-left: 242rpx;
margin-top: 21rpx;
image {
width: 50rpx;
height: 50rpx;
}
}
.adddelegation-two {
font-size: 32rpx;
font-family: PingFang SC-Medium, PingFang SC;
font-weight: 500;
color: #FFFFFF;
margin-top: 25rpx;
}
}
.content_top {
@ -637,12 +692,11 @@
}
span {
width: 0px;
width: 1px;
height: 30rpx;
opacity: 1;
margin-top: 10rpx;
border: 2rpx solid #CCCCCC;
margin-top: 8rpx;
background-color: #cccccc;
}
@ -823,7 +877,7 @@
.entrust_bg-content {
position: absolute;
top: 404rpx;
top: 304rpx;
.bg-content-a {
margin-left: 242rpx;
@ -869,7 +923,7 @@
.bg-content_textarea {
width: 624rpx;
height: 152rpx;
height: 242rpx;
padding: 25rpx 18rpx;
background: #F5F5F5;

View File

@ -14,7 +14,7 @@
</view>
<view class="content-one-txt">
<view class="one-txt-a">
{{item.content}}
{{item.title}}
</view>
<view class="one-txt-b">
委托周期:{{item.entrust_day}}
@ -27,7 +27,7 @@
待处理
</view>
<view class="contentgn">
<view class="contentgn_a">
<view class="contentgn_a" @click="soldEdit(item)">
处理
</view>
<span></span>
@ -44,13 +44,10 @@
</view>
</view>
</view>
<view class="content-two_oneq" v-if="item.type==2">
<view class="content-two_oneq" v-if="item.mer_status==1">
<view class="content-two-editb" @click="accepted">
已接受
</view>
<view class="contentgn">
<view class="contentgn_a" style="margin-left: 10rpx;"
v-if="item.entrust_order_id>0&&item.mer_status==1" @click="closingorder(item)">
@ -71,25 +68,21 @@
</view>
</view>
</view>
<view class="content-two_one" v-if="item.type==3">
<view class="content-two_one" v-if="item.mer_status==2">
<view class="content-two-editc" @click="declined">
已拒绝
</view>
<view class="contentgn">
<view class="contentgn_a">
<view class="contentgn_a" click="deleteOrder(item)">
删除
</view>
<span></span>
<view class="contentgn_b">
<view class="contentgn_b" @click="detail(item)">
详情
</view>
</view>
</view>
<view class="content-two_one" v-if="item.type==4">
<view class="content-two-editd" @click="soldEdit">
已完成
</view>
@ -109,7 +102,6 @@
<u-loadmore :status="status" v-if="orderList.length >= where.limit" />
<u-loadmore :status="status" v-if="orderList.length >= where.limit" />
<uni-popup ref="bindmobile" type="center" @click="close">
<view class="" style="position: relative;">
<view class="entrust">
<view class="entrust_close" @click="close">
@ -121,19 +113,16 @@
委托申请处理
</view>
<view class="bg-content-b">
结算周期: <span>30</span>
结算周期: <span>{{obj.settle_cycle}}</span>
</view>
<view class="bg-content-c">
利息比例: <span>0.05%</span>
利息比例: <span>{{obj.interest_rate}}%</span>
</view>
<view class="entrust_bga_btn">
<view class="cancellation">
<view class="cancellation" @click="passDelete(obj)">
拒绝
</view>
<view class="determine">
<view class="determine" @click="passagree(obj)">
接受
</view>
</view>
@ -143,7 +132,6 @@
</view>
</uni-popup>
<uni-popup ref="bindmobile1" type="center" @click="close">
<view class="" style="position: relative;">
<view class="entrust">
<view class="entrust_close" @click="close">
@ -164,15 +152,11 @@
</view>
</view>
</view>
</view>
</view>
</view>
</uni-popup>
<uni-popup ref="bindmobile2" type="center" @click="close">
<view class="" style="position: relative;">
<view class="entrust">
<view class="entrust_close" @click="close">
@ -185,13 +169,10 @@
</view>
<view class="bg-content-b">
结算周期: <span>30</span>
</view>
<view class="bg-content-c">
利息比例: <span>0.05%</span>
</view>
<view class="entrust_bga_btn">
<view class="cancellation">
拒绝
@ -219,20 +200,15 @@
</view>
<view class="bg-content-b">
结算周期: <span>30</span>
</view>
<view class="bg-content-c">
利息比例: <span>0.05%</span>
</view>
<view class="bg-content-c">
拒绝原因
<view class="" style="margin-top: 21rpx;">
<textarea value="" placeholder="输入拒绝原因" class="bg-content_textarea" />
</view>
</view>
<view class="entrust_bga_btn">
<view class="determine">
@ -250,7 +226,11 @@
<script>
import cxNavTitle from '@/components/cx-navTitle.vue'
import emptyPage from '@/components/emptyPage.vue';
import {} from '@/api/sale.js'
import {
entrustlist,
finishchain,
checkchain
} from '@/api/sale.js'
export default {
components: {
cxNavTitle,
@ -321,14 +301,32 @@
},
mounted() {
this.commislist()
},
methods: {
onReachBottom() {
if (this.status == 'nomore') return;
this.status = 'loading';
this.where.page = ++this.where.page;
this.commislist()
},
nav(item) {
uni.navigateTo({
url: '/pages/commissionedSales/delegation_details/index'
// uni.navigateTo({
// url: '/pages/commissionedSales/delegation_details/index'
// })
},
//
commislist() {
entrustlist(this.where).then((res) => {
this.orderList.push(...res.data.list)
if (res.data.list.length < this.where.limit) this.status = 'nomore'
if (this.where.page == 1 && res.data.list.length <= 0) this.emptyShow = true
})
},
//
tabClick(e) { //
this.activeItem = e.name; //class
this.tabTitle = e.name; //
@ -339,7 +337,6 @@
},
//
close() {
console.log('1111111')
this.$refs.bindmobile.close()
this.$refs.bindmobile1.close()
this.$refs.bindmobile2.close()
@ -356,14 +353,10 @@
this.obj = item
this.$refs.bindmobile.open()
},
//
accepted() {
this.$refs.bindmobile1.open()
},
//
closingorder(item) {
@ -383,6 +376,7 @@
finishchain(item.community_id, {
status: 1
}).then((res) => {
console.log(res)
this.$util.Tips({
title: res.message,
icon: 'success'
@ -401,7 +395,8 @@
},
//
declined() {
this.$refs.bindmobile2.open()
// this.$refs.bindmobile2.open()
this.$refs.bindmobile3.open()
},
//
deleteOrder(item) {
@ -838,7 +833,7 @@
.entrust_bg-content {
position: absolute;
top: 404rpx;
top: 304rpx;
.bg-content-a {
margin-left: 242rpx;
@ -884,7 +879,7 @@
.bg-content_textarea {
width: 624rpx;
height: 152rpx;
height: 242rpx;
padding: 25rpx 18rpx;
background: #F5F5F5;

View File

@ -53,7 +53,7 @@
</image>
<text class="text">订单核销</text>
</view>
<!-- <view class="examine"
<view class="examine"
@click="navigator(`/pages/commissionedSales/index/index?mer_id=${mer_id}`)">
<image class="icon_img" src="@/static/images/weituo.png" mode="aspectFill">
</image>
@ -64,7 +64,7 @@
<image class="icon_img" src="@/static/images/weituo.png" mode="aspectFill">
</image>
<text class="text">委托订单</text>
</view> -->
</view>
<!-- <view class="examine" @click="navigator(`/pages/nongKe/teach_video/teach_video`)">
<image class="icon_img"
src="https://lihai001.oss-cn-chengdu.aliyuncs.com/public/kk/spjs.png" mode="aspectFill">
@ -149,7 +149,7 @@
</image>
<text class="text">商户设置</text>
</view>
<!-- <view class="examine"
<view class="examine"
@click="navigator(`/pages/users/trading_hall/index?mer_id=${mer_id}`)">
<image class="icon_img" src="@/static/images/diaohuo.png" mode="aspectFill">
</image>
@ -172,7 +172,7 @@
<image class="icon_img" src="@/static/images/fabu.png" mode="aspectFill">
</image>
<text class="text">发布管理</text>
</view> -->
</view>
<!-- <view class="examine" @click="navigator(`/pages/users/user_invoice_Finance/index?mer_id=${mer_id}`)">
<image class="icon_img" src="@/static/images/cwgk.png" mode="aspectFill">

View File

@ -273,7 +273,7 @@
},
onLoad(e) {
this.id = e.mer_id
// this.getMerchantInfo(e.mer_id)
this.getMerchantInfo(e.mer_id)
this.isZiti = true
this.isKuaidi = true