|
@@ -203,14 +203,16 @@ export default function Index (props) {
|
203
|
203
|
<view>
|
204
|
204
|
|
205
|
205
|
{/* 通知栏 */}
|
206
|
|
- <view className={ShowNotice ? 'NoticeContent flex-h active' : 'NoticeContent flex-h'}>
|
207
|
|
- <text className='iconfont icontongzhi1'></text>
|
208
|
|
- <view id='NoticeParent' className='flex-item' onClick={() => { Taro.navigateTo({ url: `/pages/WuYe/GongGaoDetail/index?id=${NoticeInfo.id}` }) }}>
|
209
|
|
- <view style={{ width: `${NoticeWidth > NoticeParentWidth ? NoticeWidth : NoticeParentWidth}px` }}>
|
210
|
|
- <text id='NoticeText'>{NoticeInfo === null ? '' : NoticeInfo.announcementTitle}</text>
|
|
206
|
+ <view className='NoticeContent'>
|
|
207
|
+ <view className='flex-h'>
|
|
208
|
+ <text className='iconfont icontongzhi1'></text>
|
|
209
|
+ <view id='NoticeParent' className='flex-item' onClick={() => { Taro.navigateTo({ url: `/pages/WuYe/GongGaoDetail/index?id=${NoticeInfo.id}` }) }}>
|
|
210
|
+ <view style={{ width: `${NoticeWidth > NoticeParentWidth ? NoticeWidth : NoticeParentWidth}px` }}>
|
|
211
|
+ <text id='NoticeText'>{NoticeInfo === null ? '' : NoticeInfo.announcementTitle}</text>
|
|
212
|
+ </view>
|
211
|
213
|
</view>
|
|
214
|
+ <text className='iconfont iconguanbi' onClick={() => { setShowNotice(false) }}></text>
|
212
|
215
|
</view>
|
213
|
|
- <text className='iconfont iconguanbi' onClick={() => { setShowNotice(false) }}></text>
|
214
|
216
|
</view>
|
215
|
217
|
|
216
|
218
|
{/* 欢迎词 */}
|
|
@@ -261,7 +263,7 @@ export default function Index (props) {
|
261
|
263
|
{
|
262
|
264
|
OwnerList.map((item, index) => (
|
263
|
265
|
<view className='flex-item' key={`Owners-${index}`} onClick={OwnerClick(item)}>
|
264
|
|
- <Text className={`iconfont ${item.icon}`} style={{fontWeight: item.bold !== undefined && item.bold === true ? 'bold' : 'normal'}}></Text>
|
|
266
|
+ <Text className={`iconfont ${item.icon}`} style={{ fontWeight: item.bold !== undefined && item.bold === true ? 'bold' : 'normal' }}></Text>
|
265
|
267
|
<view>
|
266
|
268
|
<view><Text>{item.name}</Text></view>
|
267
|
269
|
</view>
|