优惠车绑定改动.md 2.1 KB

前置背景: https://kerryprops.atlassian.net/browse/KIP-10665

1、首页查费时,区分新旧接口 2、首页提示框区分新旧文案获取展示 3、https://kerryprops.atlassian.net/browse/KIP-23170 4、剩余优惠车绑定数量和会员车辆绑定上限,需要同时判断,如果用户的车辆绑定达到上限,展示提示,终止后续,如果没有达到上限,需要判断剩余可添加上限是否达到,最后才能走到最后;

5、普通文案弹窗展示, 需要对换行符号作处理

<div v-for="line_txt in textareaInit(textarea)" :key="line_txt" >

{{ line_txt }}

</div>

<script>
export defult{
	methods: {
		textareaInit(txt) {
			return `${txt}`.split('\n');
		},
	}
}
</script>
BEFORE_ADD_VEHICLE_ALERT("添加绑定车牌","add bind plate"),
BEFORE_DEL_VEHICLE_ALERT("删除已绑定车牌","del bind plate"),
ADD_VEHICLE_NO_COUNT_ALERT("暂时无法添加车辆,当月添加车辆已达上限,请下月再试。","You are temporarily unable to add vehicles. The limit for adding vehicles this month has been reached. Please try again next month."),
DEL_VEHICLE_NO_COUNT_ALERT("暂时无法删除车辆,当月删除车辆已达上限,请下月再试。","The vehicle cannot be deleted temporarily. The limit for deleting vehicles this month has been reached. Please try again next month."),
CHECK_OUT_ADD_VEHICLE_ALERT("是否将车牌号添加绑定", "Do you want to add and bind the license plate number?"),
CHECK_OUT_DEL_AND_ADD_VEHICLE_ALERT("绑定车牌号数量已达上限,是否换绑", "The number of bound license plate numbers has reached the limit. Do you want to change the binding?"),
CHECK_OUT_NO_DISCOUNT_ALERT("您当月可享停车优惠车牌号数量已达上限,当前车辆缴费无停车优惠。", "The number of license plates eligible for parking discounts this month has reached the limit. The current vehicle is not eligible for parking discounts."),
VEHICLE_LIST_ALERT("车辆列表温馨提示","vehicle list alert"),

7、https://kerryprops.atlassian.net/browse/KIP-22905