update:替换网络图片
This commit is contained in:
@@ -479,7 +479,7 @@ onShow(async () => {
|
||||
<view v-if="!device.deviceId" class="scan-code">
|
||||
<view class="unbound-content">
|
||||
<button class="scan-entry" hover-class="none" @click="$clickSound(handleScan)">
|
||||
<image src="../../static/device-assets/my-device-unbound-scan.png" mode="aspectFit" />
|
||||
<image src="https://static.shelingxingqiu.com/shootmini/static/device-assets/my-device-unbound-scan.png" mode="aspectFit" />
|
||||
</button>
|
||||
<view class="scan-title">
|
||||
<text>请扫描</text>
|
||||
@@ -508,7 +508,7 @@ onShow(async () => {
|
||||
>
|
||||
<image
|
||||
class="device-stage"
|
||||
src="../../static/home-device/device-platform.png"
|
||||
src="https://static.shelingxingqiu.com/shootmini/static/home-device/device-platform.png"
|
||||
mode="widthFix"
|
||||
/>
|
||||
<DeviceOnlineEffects
|
||||
@@ -519,8 +519,8 @@ onShow(async () => {
|
||||
class="device-bow"
|
||||
:class="{ 'device-bow--online': isDeviceOnline }"
|
||||
:src="isDeviceOnline
|
||||
? '../../static/home-device/device-bow--online.png'
|
||||
: '../../static/home-device/device-bow.png'"
|
||||
? 'https://static.shelingxingqiu.com/shootmini/static/home-device/device-bow--online.png'
|
||||
: 'https://static.shelingxingqiu.com/shootmini/static/home-device/device-bow.png'"
|
||||
:mode="isDeviceOnline ? 'aspectFit' : 'widthFix'"
|
||||
/>
|
||||
</view>
|
||||
@@ -532,7 +532,7 @@ onShow(async () => {
|
||||
<view class="device-title-row">
|
||||
<text class="device-name">{{ device.deviceName || "打弓佬" }}</text>
|
||||
<view class="edit-name" @click="openNameEditor">
|
||||
<image src="../../static/home-device/device-edit.png" mode="aspectFit" />
|
||||
<image src="https://static.shelingxingqiu.com/shootmini/static/home-device/device-edit.png" mode="aspectFit" />
|
||||
</view>
|
||||
</view>
|
||||
<view class="device-id-row">
|
||||
@@ -541,8 +541,8 @@ onShow(async () => {
|
||||
<image
|
||||
class="device-id-eye"
|
||||
:src="showDeviceId
|
||||
? '../../static/home-device/device-id-visible.png'
|
||||
: '../../static/home-device/device-id-hidden.png'"
|
||||
? 'https://static.shelingxingqiu.com/shootmini/static/home-device/device-id-visible.png'
|
||||
: 'https://static.shelingxingqiu.com/shootmini/static/home-device/device-id-hidden.png'"
|
||||
mode="aspectFit"
|
||||
/>
|
||||
</view>
|
||||
@@ -567,19 +567,19 @@ onShow(async () => {
|
||||
<view class="device-actions">
|
||||
<view class="action-item" @click="toDeviceIntroPage">
|
||||
<view class="action-icon">
|
||||
<image src="../../static/home-device/device-action-intro.png" mode="aspectFit" />
|
||||
<image src="https://static.shelingxingqiu.com/shootmini/static/home-device/device-action-intro.png" mode="aspectFit" />
|
||||
</view>
|
||||
<text>设备介绍</text>
|
||||
</view>
|
||||
<view class="action-item" @click="goCalibration">
|
||||
<view class="action-icon">
|
||||
<image src="../../static/home-device/device-action-calibration.png" mode="aspectFit" />
|
||||
<image src="https://static.shelingxingqiu.com/shootmini/static/home-device/device-action-calibration.png" mode="aspectFit" />
|
||||
</view>
|
||||
<text>弓箭调瞄</text>
|
||||
</view>
|
||||
<view class="action-item" @click="goFirmwareUpdate">
|
||||
<view class="action-icon">
|
||||
<image src="../../static/home-device/device-action-firmware.png" mode="aspectFit" />
|
||||
<image src="https://static.shelingxingqiu.com/shootmini/static/home-device/device-action-firmware.png" mode="aspectFit" />
|
||||
</view>
|
||||
<view class="action-label-wrap">
|
||||
<text>固件更新</text>
|
||||
@@ -591,7 +591,7 @@ onShow(async () => {
|
||||
</view>
|
||||
<view class="action-item" @click="joinWifi">
|
||||
<view class="action-icon">
|
||||
<image src="../../static/home-device/device-action-wifi.png" mode="aspectFit" />
|
||||
<image src="https://static.shelingxingqiu.com/shootmini/static/home-device/device-action-wifi.png" mode="aspectFit" />
|
||||
</view>
|
||||
<view class="action-label-wrap">
|
||||
<text>WIFI设置</text>
|
||||
@@ -611,7 +611,7 @@ onShow(async () => {
|
||||
</view>
|
||||
<view class="action-item" @click="openQr">
|
||||
<view class="action-icon">
|
||||
<image src="../../static/home-device/device-action-qrcode.png" mode="aspectFit" />
|
||||
<image src="https://static.shelingxingqiu.com/shootmini/static/home-device/device-action-qrcode.png" mode="aspectFit" />
|
||||
</view>
|
||||
<text>设备二维码</text>
|
||||
</view>
|
||||
@@ -620,7 +620,7 @@ onShow(async () => {
|
||||
<view class="unbind-entry" @click="openUnbindDialog">
|
||||
<image
|
||||
class="unbind-icon"
|
||||
src="../../static/home-device/device-unbind.png"
|
||||
src="https://static.shelingxingqiu.com/shootmini/static/home-device/device-unbind.png"
|
||||
mode="aspectFit"
|
||||
/>
|
||||
<text>解除绑定</text>
|
||||
@@ -644,7 +644,7 @@ onShow(async () => {
|
||||
<text class="scan-tips-subtitle">配套令牌样例</text>
|
||||
<image
|
||||
class="scan-tips-qr"
|
||||
src="../../static/device-assets/my-device-unbound-qr-sample.png"
|
||||
src="https://static.shelingxingqiu.com/shootmini/static/device-assets/my-device-unbound-qr-sample.png"
|
||||
mode="widthFix"
|
||||
/>
|
||||
<text class="scan-tips-note">【注】已被绑定的弓箭无法再次绑定。</text>
|
||||
@@ -735,7 +735,7 @@ onShow(async () => {
|
||||
<view class="name-panel" @click.stop>
|
||||
<image
|
||||
class="name-mascot"
|
||||
src="../../static/home-device/device-name-mascot.png"
|
||||
src="https://static.shelingxingqiu.com/shootmini/static/home-device/device-name-mascot.png"
|
||||
mode="aspectFit"
|
||||
/>
|
||||
<view class="name-sheet">
|
||||
@@ -759,7 +759,7 @@ onShow(async () => {
|
||||
>
|
||||
<image
|
||||
class="name-confirm-image"
|
||||
src="../../static/home-device/device-name-confirm.png"
|
||||
src="https://static.shelingxingqiu.com/shootmini/static/home-device/device-name-confirm.png"
|
||||
mode="aspectFit"
|
||||
/>
|
||||
</view>
|
||||
|
||||
Reference in New Issue
Block a user