升级: 更新 wot-design-uni 版本修复状态提示图片显示
- 将 wot-design-uni 从 1.3.10 升级到 1.5.1 - 修复 wd-status-tip 组件的图片显示问题
This commit is contained in:
parent
c0499114f2
commit
9b4036db78
@ -62,7 +62,7 @@
|
||||
"pinia": "^2.2.2",
|
||||
"vue": "^3.4.21",
|
||||
"vue-i18n": "^9.1.9",
|
||||
"wot-design-uni": "^1.3.10"
|
||||
"wot-design-uni": "^1.5.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@dcloudio/types": "^3.4.8",
|
||||
|
1252
pnpm-lock.yaml
generated
1252
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@ -4,8 +4,8 @@ import { ref } from "vue";
|
||||
export const useConfig = defineStore('config', () => {
|
||||
// const BASE_URL = ref<string>("https://ppmp.fenshenzhike.com/api");
|
||||
// const BASE_URL = ref<string>("http://localhost:1218/api");
|
||||
// const BASE_URL = ref<string>("http://192.168.0.119:1218/api");
|
||||
const BASE_URL = ref<string>("http://192.30.5.20:1218/api");
|
||||
const BASE_URL = ref<string>("http://192.168.0.119:1218/api");
|
||||
// const BASE_URL = ref<string>("http://192.30.5.20:1218/api");
|
||||
|
||||
return {
|
||||
BASE_URL
|
||||
|
@ -208,13 +208,14 @@ onLoad(() => {
|
||||
</view>
|
||||
</div>
|
||||
<wd-collapse v-model="expandedCourse">
|
||||
<wd-status-tip v-if="Object.keys(groupedLessons).length === 0" image="content" tip="当前账号没有分配微课" />
|
||||
<wd-status-tip v-if="Object.keys(groupedLessons).length === 0"
|
||||
image="https://registry.npmmirror.com/wot-design-uni-assets/*/files/content.png" tip="当前账号没有分配微课" />
|
||||
<wd-collapse-item v-else v-for="(courses, courseName) in groupedLessons" :name="`${courseName}`"
|
||||
:key="`${courseName}-${refreshKey}`">
|
||||
<template #title="{ expanded, disabled, isFirst }">
|
||||
<div class="w-full flex justify-between items-center">
|
||||
<div class="flex flex-col gap-1">
|
||||
<wd-badge is-dot>
|
||||
<wd-badge is-dot hidden>
|
||||
<p class="pt-1">
|
||||
{{ courseName || '无标题课程' }}
|
||||
</p>
|
||||
@ -278,7 +279,8 @@ onLoad(() => {
|
||||
</div>
|
||||
</template>
|
||||
<div class="w-full">
|
||||
<wd-status-tip v-if="courses.length === 0" image="content" tip="没有课程小节" />
|
||||
<wd-status-tip v-if="courses.length === 0"
|
||||
image="https://registry.npmmirror.com/wot-design-uni-assets/*/files/content.png" tip="没有课程小节" />
|
||||
<div v-else v-for="(lesson, i) in courses" :key="`${lesson.id}-${refreshKey}`"
|
||||
@click="openLessonDetail(lesson.id)"
|
||||
class="w-full py-2 gap-12 flex justify-between items-center border-b border-b-solid border-neutral-100 last:border-b-0 first:pt-0 last:pb-0">
|
||||
|
@ -44,6 +44,11 @@ const selectedLessonStage = computed(() => {
|
||||
return extractLessonStage(selectedLesson.value)
|
||||
})
|
||||
|
||||
/**
|
||||
* 判断advise是否为驳回状态
|
||||
* @param advise 修改建议字符串
|
||||
* @returns {boolean} 是否为驳回状态
|
||||
*/
|
||||
const isRejectAdvise = (advise: string | undefined): boolean => {
|
||||
try {
|
||||
if (!advise) return false
|
||||
@ -384,7 +389,8 @@ onPullDownRefresh(() => {
|
||||
:focus-when-clear="false" :maxlength="100" placeholder="请输入审核建议..." block />
|
||||
</wd-message-box>
|
||||
<div class="p-2 pt-4">
|
||||
<wd-status-tip v-if="!pickerLessonValue" image="search" tip="请先选择微课" />
|
||||
<wd-status-tip v-if="!pickerLessonValue"
|
||||
image="https://registry.npmmirror.com/wot-design-uni-assets/*/files/search.png" tip="请先选择微课" />
|
||||
<div v-else class="space-y-6">
|
||||
<div>
|
||||
<wd-steps :active="selectedLessonStage?.step || 0" align-center>
|
||||
|
Loading…
Reference in New Issue
Block a user