JiangChongBo hace 2 años
padre
commit
067d4d050f

+ 2 - 2
src/main/webapp/WEB-INF/views/modules/baikePage/cmBaikeProductForm.jsp

@@ -1432,12 +1432,12 @@
 			<label class="control-label keyClass">状态:</label>
 			<div class="controls">
 				<form:radiobutton path="status" label="发布" value="1" checked="${empty cmBaikeProduct.status?'checked':''}"/>
-				<form:radiobutton path="status" label="保存草稿箱" value="0"/>
+				<form:radiobutton path="status" label="暂不发布" value="0"/>
 			</div>
 		</div>
 		<%--提交数据 --%>
 		<div class="form-actions">
-			<input id="btnSubmit" class="btn btn-primary" type="submit" value="保 存"/>&nbsp;
+			<input id="btnSubmit" class="btn btn-primary" type="submit" value="提 交"/>&nbsp;
 			<input id="btnCancel" class="btn" type="button" value="返 回" onclick="history.go(-1)"/>
 		</div>
 	</form:form>

+ 2 - 2
src/main/webapp/WEB-INF/views/modules/baikePage/cmBaikeProductList.jsp

@@ -110,11 +110,11 @@
 					<c:if test="${cmBaikeProduct.status eq 1 }">
 						<font color="green">已发布</font>
 						<a href="javascript:void(0);" onclick="updateStatus(0,${cmBaikeProduct.id});" >
-							保存草稿箱
+							暂不发布
 						</a>
 					</c:if>
 					<c:if test="${cmBaikeProduct.status ne 1 }">
-						<font color="red">保存草稿箱</font>
+						<font color="red">暂不发布</font>
 						<a href="javascript:void(0)" onclick="updateStatus(1,${cmBaikeProduct.id});">
 							发布
 						</a>

+ 2 - 2
src/main/webapp/WEB-INF/views/modules/info/infoForm.jsp

@@ -123,7 +123,7 @@
 			<th><span class="red">*</span>状态:</th>
 			<td colspan="3">
 				<form:radiobutton path="enabledStatus" label="发布" value="1" checked="${empty info.enabledStatus?'checked':''}"/>
-				<form:radiobutton path="enabledStatus" label="保存草稿箱" value="0"/>
+				<form:radiobutton path="enabledStatus" label="暂不发布" value="0"/>
 			</td>
 		</tr>
 		<tr>
@@ -157,7 +157,7 @@
 		<tr>
 			<td colspan="4" style="text-align:center;">
 				<shiro:hasPermission name="info:info:edit">
-					<input id="btnSave" class="btn btn-primary" type="submit" value="保 存" onclick="checkInfo()"/>
+					<input id="btnSave" class="btn btn-primary" type="submit" value="提 交" onclick="checkInfo()"/>
 				</shiro:hasPermission>
 				<input id="btnCancel" class="btn" type="button" value="返 回" onclick="history.go(-1)"/>
 			</td>

+ 2 - 2
src/main/webapp/WEB-INF/views/modules/info/infoList.jsp

@@ -281,11 +281,11 @@
 				<td>
 					<c:if test="${info.enabledStatus eq 1 }">
 						<font color="green">已发布</font>
-						<a href="javascript:void(0)" onclick="updateStatus('0','${info.id}','enabledStatus','${info.enabledStatus}');" style="cursor: pointer">保存草稿箱
+						<a href="javascript:void(0)" onclick="updateStatus('0','${info.id}','enabledStatus','${info.enabledStatus}');" style="cursor: pointer">暂不发布
 						</a>
 					</c:if>
 					<c:if test="${info.enabledStatus ne 1 }">
-						<font color="red">保存草稿箱</font>
+						<font color="red">暂不发布</font>
 						<a href="javascript:void(0)" onclick="updateStatus('1','${info.id}','enabledStatus','${info.enabledStatus}');" style="cursor: pointer">发布
 						</a>
 					</c:if>