Browse Source

feat: UI图完善

master
liujiangyong 1 year ago
parent
commit
f196fc14a9
  1. BIN
      weapp/images/hourglass_card_bg.png
  2. BIN
      weapp/images/hourglass_icon.png
  3. BIN
      weapp/images/question_card_bg.png
  4. BIN
      weapp/images/question_icon.png
  5. BIN
      weapp/images/workbench/device.png
  6. BIN
      weapp/images/workbench/diagnosis.png
  7. BIN
      weapp/images/workbench/issue_mng.png
  8. 8
      weapp/package/subSystem/dayPatrolInfo/dayPatrolInfo.wxml
  9. 6
      weapp/pages/workbench/workbench.js

BIN
weapp/images/hourglass_card_bg.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

BIN
weapp/images/hourglass_icon.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

BIN
weapp/images/question_card_bg.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

BIN
weapp/images/question_icon.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

BIN
weapp/images/workbench/device.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

BIN
weapp/images/workbench/diagnosis.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

BIN
weapp/images/workbench/issue_mng.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

8
weapp/package/subSystem/dayPatrolInfo/dayPatrolInfo.wxml

@ -3,10 +3,10 @@
<view class="card" style="margin-bottom: 10px">
<view class="card-top flex flex-between">
<view class="card-left flex">
<image class="card-icon" src="/images/right_icon.png" />
<image class="card-icon" src="/images/question_icon.png" />
<view class="title">今日问题分布</view>
</view>
<image src="/images/right_card_bg.png" class="card-bg" />
<image src="/images/question_card_bg.png" class="card-bg" />
</view>
<view wx:for="{{dayIssues}}" class="problem-box flex">
<view class="problem-title text---">{{item.pointName}}</view>
@ -24,11 +24,11 @@
<view class="card" style="margin-bottom: 10px">
<view class="card-top flex flex-between">
<view class="card-left flex">
<image class="card-icon" src="/images/right_icon.png" />
<image class="card-icon" src="/images/hourglass_icon.png" />
<view class="title">今日待检分布</view>
</view>
<view class="card-right">总次数:{{needInspectCount}}次</view>
<image src="/images/right_card_bg.png" class="card-bg" />
<image src="/images/hourglass_card_bg.png" class="card-bg" />
</view>
<view class="pie-chart-box">
<ec-canvas id="need-chart-dom" canvas-id="need-chart" ec="{{ needEc }}"></ec-canvas>

6
weapp/pages/workbench/workbench.js

@ -7,17 +7,17 @@ Page({
data: {
itemList: [
{
iconPath: '/images/workbench/report.png',
iconPath: '/images/workbench/issue_mng.png',
text: '故障及风险管理',
page: '/package/riskManagement/riskManagement'
},
{
iconPath: '/images/workbench/report.png',
iconPath: '/images/workbench/device.png',
text: '设备大数据图谱',
page: '/package/deviceBigdataGraph/deviceBigdataGraph'
},
{
iconPath: '/images/workbench/report.png',
iconPath: '/images/workbench/diagnosis.png',
text: '智能诊断',
page: '/package/riskManagement/riskManagement'
},

Loading…
Cancel
Save