陈剑华

fix: 16578 直播列表,日期格式

... ... @@ -6,7 +6,7 @@ import { ProcessUtils } from 'wdRouter';
import { HttpUtils } from 'wdNetwork/Index';
/**
* 小视频横划
* 直播预约
* Zh_Single_Row-02
*/
const TAG = 'Zh_Single_Row-03'
... ... @@ -42,7 +42,7 @@ export struct ZhSingleRow03 {
Row() {
Flex({justifyContent: FlexAlign.SpaceBetween}){
Row() {
Text(item.liveInfo.liveStartTime.split(' ')[0].slice(5))
Text(item.liveInfo.liveStartTime.split(' ')[0].slice(5).split('-').join('月')+'日')
.margin({right: 6})
.fontColor(0x000000)
.fontSize(13)
... ...