chore(ai-tab-switch): replace local images with remote oss urls

delete local image assets and update component imports to use remote hosted images
This commit is contained in:
duanshuwen
2026-07-06 23:01:00 +08:00
parent 191ba48b9d
commit 8f2cbbc84f
5 changed files with 5 additions and 4 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.9 KiB

View File

@@ -18,10 +18,11 @@
<script setup>
import { computed } from "vue";
import leftSelected from "./images/L_02.png";
import leftUnselected from "./images/L_01.png";
import rightSelected from "./images/R_02.png";
import rightUnselected from "./images/R_01.png";
const leftSelected = "https://oss.nianxx.cn/mp/static/xiaoqi/L_02.png";
const leftUnselected = "https://oss.nianxx.cn/mp/static/xiaoqi/L_01.png";
const rightSelected = "https://oss.nianxx.cn/mp/static/xiaoqi/R_02.png";
const rightUnselected = "https://oss.nianxx.cn/mp/static/xiaoqi/R_01.png";
const props = defineProps({
modelValue: { type: Number, default: 0 },