|
@@ -402,7 +402,7 @@
|
|
|
}*/
|
|
|
if (this.industrySelect.length > 0 && this.industrySelect[0] != "全部行业" && this.industrySelect[0] != "一个行业") { //选择有行业信息
|
|
|
var tipTxt = "已选择 ";
|
|
|
- $(".choose_industry").val(tipTxt+ this.industrySelect.length + " 个行业");
|
|
|
+ $(".choose_industry").val(tipTxt + this.industrySelect.length + " 个行业");
|
|
|
} else if (this.industrySelect.length > 0 && this.industrySelect[0] == "全部行业") {
|
|
|
$(".choose_industry").val("全部行业");
|
|
|
} else {
|
|
@@ -705,6 +705,9 @@
|
|
|
var interval;
|
|
|
|
|
|
function checkpay(orderid) {
|
|
|
+ setTimeout(function () {
|
|
|
+ $("#payHandle").removeAttr('disabled');
|
|
|
+ }, 1000);
|
|
|
if (interval) {
|
|
|
clearInterval(interval);
|
|
|
}
|
|
@@ -750,6 +753,13 @@
|
|
|
sessionStorage.To_introducePage = 2;
|
|
|
}
|
|
|
|
|
|
+ //未安装微信or支付宝 客户端回调提示
|
|
|
+ function showToast(errTip) {
|
|
|
+ weui.toast(errTip, {
|
|
|
+ duration: 2000,
|
|
|
+ className: 'custom-toast',
|
|
|
+ });
|
|
|
+ }
|
|
|
</script>
|
|
|
</body>
|
|
|
|