<template>
	<!-- 退款页、一键改价页、订单备注页、立即退款立即退货页 -->
	<view>
		<view class="priceChange" :class="[change === true ? 'on' : '']">
			<view class="priceChange-box">
				<view class="priceTitle">
					{{
					status == 7?'退款单备注':status == 8?'退款原因': status == 0?"一键改价": status == 1?'订单备注': isRefund==8?'确认收货':'退款审核'
        }}
					<view class="btn acea-row row-center row-middle" @click="close">
						<span class="iconfont icon-guanbi"></span>
					</view>
				</view>
				<!-- 一键改价 -->
				<view class="listChange" v-if="status == 0">
					<view class="item acea-row row-between-wrapper" v-if="orderInfo.refundStatus === 0">
						<view>商品原价</view>
						<view class="money">
							¥{{ orderInfo.totalPrice }}
						</view>
					</view>
					<view class="item acea-row row-between-wrapper" v-if="orderInfo.refundStatus === 0">
						<view>商品邮费</view>
						<view class="money">
							¥{{ orderInfo.totalPostage }}
						</view>
					</view>
					<view class="item acea-row row-between-wrapper" v-if="orderInfo.refundStatus === 0">
						<view>修改价格</view>
						<view class="money">
							<input type="text" v-model="price" :cursor-spacing="40" always-embed
								:class="focus === true ? 'on' : ''" @focus="priceChange" />
						</view>
						<text class="iconfont icon-ic_edit"></text>
					</view>
				</view>
				<!-- 立即退款 -->
				<!-- <view class="listChange" v-if="status == 2">
					<view v-if="isRefund" class="item acea-row row-between-wrapper">
						<view>实际支付(¥)</view>
						<view class="money">
							{{ orderInfo.pay_price }}<span class="iconfont icon-suozi"></span>
						</view>
					</view>
					<view v-if="isRefund" class="item acea-row row-between-wrapper">
						<view>退款金额(¥)</view>
						<view class="money">
							<input type="text" v-model="refund_price" :class="focus === true ? 'on' : ''" @focus="priceChange" />
						</view>
					</view>
					<view class="title" v-if="!isRefund">同意退货退款</view>
				</view> -->
				<!-- 退款审核 -->
				<view class="listChange" v-if="status == 2">
					<view class="item acea-row row-between-wrapper">
						<view>审核状态</view>
						<view class="money acea-row row-right">
							<view class="radio-item acea-row row-middle" :class="{ on: isAgree }"
								@click="agreeChange(true)">
								<text class="iconfont"
									:class="isAgree?'icon-a-ic_CompleteSelect':'icon-weixuanzhong'"></text>同意退{{isRefund?'款':'货'}}
							</view>
							<view v-if="orderInfo.refund_type != 4 && orderInfo.refund_type != 5"
								class="radio-item acea-row row-middle" :class="{ on: !isAgree }"
								@click="agreeChange(false)">
								<text class="iconfont"
									:class="isAgree?'icon-weixuanzhong':'icon-a-ic_CompleteSelect'"></text>拒绝退款
							</view>
						</view>
					</view>
					<view class="item acea-row row-between-wrapper agree-box" v-if="isAgree && !isRefund">
						<view class="agree-title">同意退款后,用户会根据下方地址将商品退回</view>
						<view class="address-list">
							<radio-group @change="radioChange">
								<view class="address-list-item acea-row row-between-wrapper"
									v-for="(item,index) in addressList">
									<view class="item-left">
										<view class="name-phone">
											<text class="name">{{item.receiverName}}</text>
											<text class="phone">{{item.receiverPhone}}</text>
											<text class="normal" v-if="item.isDefault">默认</text>
										</view>
										<view class="address line1">
											{{item.detail}}
										</view>
									</view>
									<view class="item-right">
										<!-- <text class="iconfont" :class="true?'icon-weixuanzhong':'icon-xuanzhong'"></text> -->
										<label class="radio">
											<radio :value="`${item.id}`" />
										</label>
									</view>
								</view>
							</radio-group>
						</view>
					</view>
					<view class="item acea-row row-between" v-if="!isAgree">
						<view>拒绝原因</view>
						<view class="money acea-row row-right">
							<textarea class="reason" placeholder="请输入" v-model="refuse_reason" fixed
								:cursor-spacing="100"></textarea>
						</view>
					</view>
				</view>
				<view class="listChange" v-if="status == 1||status == 7">
					<textarea placeholder="请填写备注信息..." @input="inputChange(orderInfo.merchantRemark)" v-model="orderInfo.merchantRemark" fixed :cursor-spacing="100"></textarea>
				</view>
				<!-- <view class="listChange" v-if="status == 8">
					<textarea placeholder="请填写退款原因..." v-model="refuse_reason"></textarea>
				</view> -->
				<view class="modify-box acea-row">
					<view class="cancel btn-box" @click="close">取消</view>
					<view class="modify btn-box" @click="refuse" v-if="status == 8">确定</view>
					<view class="modify btn-box" @click="onConfirm" v-if="status == 2 && !isRefund">确定</view>
					<view class="modify btn-box" @click="save" v-if="status == 1 || status == 0||status == 7">确定</view>
					<view class="modify btn-box" @click="onConfirm" v-if="status == 2 && isRefund">确定</view>
				</view>
				<slot name="bottom"></slot>
			</view>
			<view class="safe-area-inset-bottom"></view>
		</view>
		<view class="mask" @touchmove.prevent v-show="change === true"></view>
	</view>
</template>
<script>
	import { string } from '../../../../plugin/clipboard/clipboard';
import {
		employeeAddressList,
	} from '@/api/work.js'
	export default {
		name: "PriceChange",
		components: {},
		props: {
			change: {
				type: Boolean,
				default: false
			},
			orderInfo: {
				type: Object,
				default: () => {}
			},
			status: {
				type: String,
				default: ""
			},
			isRefund: {
				type: Number || String,
				default: 0
			},
			apiModalType:{
				type:string||Number
			}
		},
		data: function() {
			return {
				focus: false,
				price: 0,
				refund_price: 0,
				remark: "",
				refuse_reason: '',
				isAgree: true,
				addressList: [],
				addressId: ''
			};
		},
		watch: {
			orderInfo: function(nVal) {
				this.price = this.orderInfo.pay_price;
				this.refund_price = this.orderInfo.pay_price;
				this.remark = this.orderInfo.merchantRemark;
			},
			change(val) {
				if (val) {
					this.isAgree = true
					this.refuse_reason = ''
				}
			},
		},
		created() {
			this.getAddressList()
		},
		methods: {
			inputChange(mark){
				this.remark=mark
			},
			radioChange: function(evt) {
				this.addressId = evt.detail.value
			},
			getAddressList() {
				employeeAddressList().then(res => {
					this.addressList = res.data
				})
			},
			priceChange: function() {
				this.focus = true;
			},
			close: function() {
				this.price = this.orderInfo.pay_price;
				this.$emit("closechange", false);
			},
			save: function() {
				let that = this;
				that.$emit("savePrice", {
					price: that.price,
					type: 1,
					remark: that.remark,
					merAddressId: that.addressId
				});
			},
			refuse: function() {
				let that = this;
				that.$emit("savePrice", {
					price: that.price,
					type: 2,
					remark: that.remark,
					refuse_reason: that.refuse_reason
				});
			},
			agreeChange(value) {
				this.addressId = ''
				this.isAgree = value;
				if (this.isAgree) {
					this.refuse_reason = '';
				}
			},
			onConfirm() {
				if (this.status == 1) {
					this.save();
				}
				if (this.status == 2) {
					if (this.isRefund) {
						if (this.isAgree) {
							this.save();
						} else {
							this.refuse();
						}
					} else {
						if (this.isAgree) {
							this.save();
						} else {
							this.refuse();
						}
					}
				}
			},
		}
	};
</script>
<style lang="scss" scoped>
	.safe-area-inset-bottom {
		height: 0;
		height: constant(safe-area-inset-bottom);
		height: env(safe-area-inset-bottom);
	}

	.mask {
		z-index: 99;
	}

	.priceChange .reGoods {
		padding: 0 25upx;
		margin-top: 50upx;
	}

	.priceChange .reGoods .bnt {
		width: 250upx;
		height: 90upx;
		background-color: #2291f8;
		font-size: 32upx;
		color: #fff;
		text-align: center;
		line-height: 90upx;
		border-radius: 45upx;
	}

	.priceChange .reGoods .bnt.grey {
		background-color: #eee;
		color: #312b2b;
	}

	.priceChange {
		position: fixed;
		bottom: 0;
		left: 0;
		z-index: 99999;
		width: 100%;
		border-radius: 40rpx 40rpx 0 0;
		background: #FFFFFF;
		transform: translateY(100%);
		transition: transform 0.3s;
	}

	.priceChange.on {
		transform: translateY(0);
	}

	.priceChange-box {}

	.priceChange.goodsOn {
		height: 380upx;
	}

	.priceChange .priceTitle {
		position: relative;
		height: 108rpx;
		text-align: center;
		font-weight: 500;
		font-size: 32rpx;
		line-height: 108rpx;
		color: #333333;
	}

	.priceChange .priceTitle .btn {
		position: absolute;
		top: 50%;
		right: 32rpx;
		width: 36rpx;
		height: 36rpx;
		border-radius: 50%;
		margin-top: -18rpx;
		background: #EEEEEE;
		text-align: center;
		line-height: 36rpx;
	}

	.priceChange .priceTitle .iconfont {
		vertical-align: text-bottom;
		font-weight: normal;
		font-size: 24rpx;
	}

	.priceChange .listChange {
		padding: 32rpx;
		min-height: 260rpx;
	}

	.priceChange .listChange .item {
		margin-bottom: 30rpx;
		font-size: 28rpx;
		line-height: 40rpx;
		color: #333333;

		&:last-child {
			margin-bottom: 0;
		}
	}

	.priceChange .listChange .title {
		font-size: 32rpx;
		text-align: center;
		margin-top: 52rpx;
	}

	.priceChange .listChange .item .money {
		flex: 1;
		text-align: right;
		font-family: Regular;
		font-size: 36rpx;
	}

	.priceChange .listChange .item .iconfont {
		margin-left: 8rpx;
		font-size: 32rpx;
	}

	.priceChange .listChange .item .money input {
		color: #FF7E00;
	}

	.priceChange .listChange .item .money input.on {
		// color: #666;
	}

	.priceChange .modify-box {
		padding: 20rpx;
	}

	.priceChange .btn-box {
		flex: 1;
		height: 72rpx;
		border: 2rpx solid #4C88FF;
		border-radius: 36rpx;
		margin-right: 16rpx;
		text-align: center;
		font-weight: 500;
		font-size: 26rpx;
		line-height: 68rpx;
		color: #4C88FF;

		&:last-child {
			margin-right: 0;
		}
	}

	.priceChange .modify {
		border-color: #2A7EFB;
		background: #2A7EFB;
		color: #FFFFFF;
	}

	.priceChange .modify1 {
		font-size: 32upx;
		color: #312b2b;
		width: 490upx;
		height: 90upx;
		text-align: center;
		line-height: 90upx;
		border-radius: 45upx;
		background-color: #eee;
		margin: 30upx auto 0 auto;
	}

	.priceChange .listChange textarea {
		box-sizing: border-box;
		border: 2rpx solid #CCCCCC;
		width: 100%;
		height: 224rpx;
		padding: 20rpx;
		border-radius: 16rpx;
		font-size: 28rpx;
		line-height: 40rpx;
		color: #333;
	}

	.radio-item {
		font-size: 28rpx;
		color: #999999;

		+.radio-item {
			margin-left: 48rpx;
		}

		.iconfont {
			margin-right: 12rpx;
			font-size: 32rpx;
		}

		&.on {
			color: #333333;

			.iconfont {
				color: #2A7EFB;
			}
		}
	}

	.reason {
		width: 462rpx !important;
		height: 80rpx !important;
		padding: 0 !important;
		border: 0 !important;
	}

	.agree-box {
		.agree-title {
			width: 710rpx;
			background: rgba(42, 126, 251, 0.1);
			border-radius: 10rpx;
			padding: 20rpx;
			font-family: PingFang SC, PingFang SC;
			font-weight: 400;
			font-size: 26rpx;
			color: #2A7EFB;
		}

		.address-list {
			width: 100%;
			padding: 20rpx 10rpx;

			.address-list-item {
				justify-content: space-between;
				margin-bottom: 20rpx;
				.name-phone {
					text {
						margin-right: 20rpx;
					}

					.name {
						font-weight: 500;
						font-size: 30rpx;
						color: #333333;
					}

					.phone {
						font-weight: 400;
						font-size: 30rpx;
						color: #333333;
					}

					.normal {
						background: rgba(42, 126, 251, 0.1);
						border-radius: 8rpx;
						font-size: 22rpx;
						color: #2A7EFB;
					}
				}

				.address {
					width: 500rpx;
					font-size: 24rpx;
					color: #999999;
				}
			}
		}
	}
	.icon-guanbi{
		font-size: 18rpx !important;
		color: #333333;
	}
</style>