|
@@ -14,7 +14,7 @@
|
|
|
<link rel="stylesheet" type="text/css" href="/jyapp/vipsubscribe/css/base.css?v={{Msg "seo" "version"}}" />
|
|
|
<link rel="stylesheet" type="text/css" href="/jyapp/vipsubscribe/iconfont/iconfont.css?v={{Msg "seo" "version"}}" />
|
|
|
<link rel="stylesheet" href="/jyapp/vipsubscribe/css/public.css?v={{Msg "seo" "version"}}">
|
|
|
- <link rel="stylesheet" href="/jyapp/vipsubscribe/css/vip_update.css?v={{Msg "seo" "version"}}4">
|
|
|
+ <link rel="stylesheet" href="/jyapp/vipsubscribe/css/vip_update.css?v={{Msg "seo" "version"}}7">
|
|
|
<link rel="stylesheet" type="text/css" href="/jyapp/css/layout.css?v={{Msg "seo" "version"}}"/>
|
|
|
<link rel="stylesheet" type="text/css" href="/jyapp/css/font.css?v={{Msg "seo" "version"}}"/>
|
|
|
</head>
|
|
@@ -22,15 +22,15 @@
|
|
|
body,html {
|
|
|
height: 100%;
|
|
|
}
|
|
|
- ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
|
|
|
- color: #686868;
|
|
|
- }
|
|
|
.vip_update .fixed-bottom-box, .vip_renew .fixed-bottom-box {
|
|
|
width: 100%;
|
|
|
position: static;
|
|
|
bottom: 0;
|
|
|
left: 0;
|
|
|
}
|
|
|
+ ::-webkit-input-placeholder{
|
|
|
+ color: #000;
|
|
|
+ }
|
|
|
</style>
|
|
|
<body class="no-touch">
|
|
|
<div class="app-layout-header">
|
|
@@ -45,7 +45,7 @@
|
|
|
<li class="choose_item">
|
|
|
<a href="/jyapp/vipsubscribe/toChooseAreaUpgrade">
|
|
|
<span class="label">区域</span>
|
|
|
- <input type="text" id="area" value="" onfocus="this.blur();" placeholder="选择全国、省份、地市" class="info">
|
|
|
+ <input type="text" id="area" value="" disabled placeholder="选择全国、省份、地市" class="info">
|
|
|
<i class="iconfont icon-arrow"></i>
|
|
|
</a>
|
|
|
<p class="add_tips area-list" style="display: none;">已新增 1 个省级区域、4 个地市</p>
|
|
@@ -53,7 +53,7 @@
|
|
|
<li class="choose_item">
|
|
|
<a href="/jyapp/vipsubscribe/toChooseIndustryUpgrade">
|
|
|
<span class="label">行业</span>
|
|
|
- <input type="text" id="buyerclass" onfocus="this.blur();" value="" placeholder="选择采购单位行业" class="info">
|
|
|
+ <input type="text" id="buyerclass" disabled value="" placeholder="选择采购单位行业" class="info">
|
|
|
<i class="iconfont icon-arrow"></i>
|
|
|
</a>
|
|
|
<p class="add_tips industry-list" style="display: none;">已新增 2 个行业</p>
|
|
@@ -863,7 +863,7 @@
|
|
|
if(checkObj(area)){
|
|
|
areaHtml = "全国";
|
|
|
}
|
|
|
- $('#area').val(areaHtml);
|
|
|
+ $('#area').attr("placeholder",areaHtml);
|
|
|
}
|
|
|
if(buyerclass !== "" && buyerclass !== undefined){
|
|
|
for(var i in buyerclass){
|
|
@@ -875,7 +875,7 @@
|
|
|
if(checkObj(buyerclass)){
|
|
|
buyerclassHtml = "全行业";
|
|
|
}
|
|
|
- $('#buyerclass').val(buyerclassHtml);
|
|
|
+ $('#buyerclass').attr("placeholder",buyerclassHtml);
|
|
|
}
|
|
|
//
|
|
|
var nowDate = data.now.replace(/-/g, ".");
|
|
@@ -1206,11 +1206,9 @@
|
|
|
}
|
|
|
//
|
|
|
let payTypes = sessionStorage.payType;
|
|
|
- let payType = "";
|
|
|
- if(payTypes === "wx"){
|
|
|
- payType = "wx_app";
|
|
|
- }else if(payTypes === "alipy"){
|
|
|
- payType = "alipy_app";
|
|
|
+ let payType = "wx_app";
|
|
|
+ if(payTypes === "alipy"){
|
|
|
+ payType = "ali_app";
|
|
|
}
|
|
|
//
|
|
|
var param = {
|