问题:使用GetArticleList标,,显示的时间比较长时会换行解决方法。
解决方法:这里只要修改下文件即可,找到 Include/PowerEasy.Common.Front.asp 文件,
找到函数:
|
以下是代码片段:
Function GetTDWidth_Date(DateType) Select Case DateType Case 0 '不显示 GetTDWidth_Date = 0 Case 1 '2006-09-11 GetTDWidth_Date = 60 Case 2 '9月11日 GetTDWidth_Date = 50 Case 3 '09-11 GetTDWidth_Date = 40 Case 4 '2006年9月11日 GetTDWidth_Date = 80 Case 5 '2006-9-11 10:20:30 GetTDWidth_Date = 120 End Select End Function |
修改这里的宽度即可,显示不同日期,宽度就不同,设置您合适的即可。