Browse Source

修改转售价格

linbl 1 year ago
parent
commit
b11a75375d
3 changed files with 145 additions and 1 deletions
  1. 8 0
      pages.json
  2. 10 1
      pages/market/one/leader/order.vue
  3. 127 0
      pages/market/two/leader/updatePrice.vue

+ 8 - 0
pages.json

@@ -432,6 +432,14 @@
 
 		},
 		{
+			"path": "pages/market/two/leader/updatePrice",
+			"style": {
+				"navigationBarTitleText": "修改转售价格",
+				"enablePullDownRefresh": false
+			}
+
+		},
+		{
 			"path": "pages/market/two/leader/feeDetail",
 			"style": {
 				"navigationBarTitleText": "缴税费",

+ 10 - 1
pages/market/one/leader/order.vue

@@ -10,7 +10,7 @@
 						<text class="icon">&#xe830;</text>
 						<text>未确认</text>
 					</view>
-					<view class="state" v-if="item.finishStatus == 0">
+					<view class="state" v-if="item.peopleConfirmStatus == 1 && item.cooperEntrustStatus == 1 && item.applyConfirmStatus == 1 &&item.finishStatus == 0">
 						<text class="icon">&#xe830;</text>
 						<text>进口中</text>
 					</view>
@@ -39,6 +39,9 @@
 					<template v-if="item.finishStatus == 1 && item.resaleStatus == 0">
 						<view class="an" style="color: #f44336"  @click.stop="resale(item)">订单转售</view>
 					</template>
+					<template v-if="item.resaleStatus == 1 && item.beingOrder == 0">
+						<view class="an" style="color: #f44336"  @click.stop="updateResalePrice(item.id)">修改转售价格</view>
+					</template>
 				</view>
 			</view>
 			<view class="loading" v-if="loadMore"><u-loadmore :status="loadMore ? 'loading' : 'nomore'" /></view>
@@ -62,6 +65,9 @@ export default {
 				},
 				{
 					name: '进口中',
+					peopleConfirmStatus: 1,
+					cooperEntrustStatus: 1,
+					applyConfirmStatus: 1,
 					finishStatus: 0,
 					resaleStatus: 0
 				},
@@ -146,6 +152,9 @@ export default {
 		resale(item) {
 			uni.navigateTo({url: '/pages/market/two/leader/resale?item=' + JSON.stringify(item)});
 		},
+		updateResalePrice(id) {
+			uni.navigateTo({url: '/pages/market/two/leader/updatePrice?id=' + id});
+		},
 		// 刷新数据
 		refresh() {
 			this.loadMore = true;

+ 127 - 0
pages/market/two/leader/updatePrice.vue

@@ -0,0 +1,127 @@
+<template>
+	<view>
+		<view class="cmain">
+			<view class="box order_detail">
+				<view class="item">
+					<text class="label">商品名称</text>
+					<text class="desc omit">{{ item.goodsName }}</text>
+				</view>
+				<view class="item">
+					<text class="label">订单编号</text>
+					<text class="desc omit">{{ item.orderNo }}</text>
+				</view>
+				<view class="item">
+					<text class="label">转售金额(必填)</text>
+					<text class="desc">
+						<input type="number" v-model="item.resalePrice" placeholder="请输入(元)" />
+					</text>
+				</view>
+			</view>
+			<u-divider text="费项明细"></u-divider>
+			<view class="box">
+				<u-collapse v-for="(item,index) in feeItemLIst" :key="index">
+					<u-collapse-item :title="item.name" class="cell_title" >
+						<view class="itm">1、收费企业:{{ item.companyName }}</view>
+						<view class="itm" v-if="item.feeType ==1">2、收费类型:按交易额收取</view>
+						<view class="itm" v-if="item.feeType ==2">2、收费类型:按次收取</view>
+						<view class="itm" v-if="item.feeType ==1">3、收费%(按交易额):<span style="color: coral;">{{ item.percent }} %</span></view>
+						<view class="itm" v-if="item.feeType ==1">4、当前订单收取金额:<span style="color: coral;">{{ (item.percent * price)/100}} 元</span></view>
+						<view class="itm" v-if="item.feeType ==2">3、收费金额(按次收):<span style="color: coral;">{{ item.feeMoney }} 元</span></view>
+						<view class="itm" v-if="item.feeType ==2">4、当前订单收取金额:<span style="color: coral;">{{ item.feeMoney }} 元</span></view>
+						</br>
+						<view class="itm">当前费项收取金额以最后结算时为准</view>
+					</u-collapse-item>
+				</u-collapse>
+			</view>
+		</view>
+		<view class="mfooter" v-if="resaleStatus == 0">
+			<view class="flex">
+				<view class="f">
+					<button class="btn" @click="ok()">确定</button>
+				</view>
+			</view>
+		</view>
+	</view>
+</template>
+
+<script>
+export default {
+	data() {
+		return {
+			item: {resalePrice: ''},
+			feeItemLIst: [],
+			resaleStatus: 0,
+			price: ''
+		};
+	},
+	watch:{
+		'item.resalePrice':{
+			 handler(newVal, oldVal) {
+				 this.price = newVal;
+			}
+		}
+	},
+	onLoad(e) {
+		if (e.id) {
+			this.http.request({
+				url: '/level-two-server/app/TbOrders/getByLevelOneOrderId',
+				data: {levelOneOrderId: e.id},
+				success: res => {
+					this.item = res.data.data;
+					this.price = this.item.resalePrice;
+				}
+			});
+		}
+		this.getFeeItem();
+	},
+	methods: {
+		//费项明细
+		getFeeItem(){
+			this.http.request({
+				url: '/level-two-server/app/TbFeeItem/getList',
+				success: res => {
+					this.feeItemLIst = res.data.data
+				}
+			});
+		},
+		changePrice() {
+			
+		},
+		ok() {
+			let rule = [{ name: 'resalePrice', checkType: 'notnull', errorMsg: '请输入转售金额' }];
+			if (!this.verify.check(this.item, rule)) {
+				uni.showModal({ content: this.verify.error, showCancel: false });
+				return false;
+			}
+			uni.showModal({
+				title: '提示',
+				content: '我已核对转售金额',
+				success: res => {
+					if (res.confirm) {
+						this.http.request({
+							url: '/level-two-server/app/TbOrders/updateResalePrice',
+							data: {id: this.item.id, resalePrice: this.price},
+							success: res => {
+								uni.showToast({title: '修改成功成功'});
+								this.resaleStatus = 1;
+							}
+						});
+					}
+				}
+			});
+		}
+	}
+};
+</script>
+
+<style lang="scss">
+page {
+	background-color: $pg;
+}
+.item {
+	input{
+		margin-top: 0px!important;
+	}
+	}
+
+</style>