File tree Expand file tree Collapse file tree 7 files changed +15
-16
lines changed Expand file tree Collapse file tree 7 files changed +15
-16
lines changed Original file line number Diff line number Diff line change @@ -191,26 +191,24 @@ ps:核心功能已经实现,正在对接微信小程序中...
191
191
192
192
### 商城系统
193
193
194
+ 演示地址:< https://doc.iocoder.cn/mall-preview/ >
195
+
194
196
![ 功能图] ( /.image/common/mall-feature.png )
195
197
196
198
![ 功能图] ( /.image/common/mall-preview.png )
197
199
198
- _ 前端基于 crmeb uniapp 经过授权重构,优化代码实现,接入芋道快速开发平台_
199
-
200
- 演示地址:< https://doc.iocoder.cn/mall-preview/ >
201
-
202
200
### ERP 系统
203
201
204
- ![ 功能图] ( /.image/common/erp-feature.png )
205
-
206
202
演示地址:< https://doc.iocoder.cn/erp-preview/ >
207
203
208
- ### CRM 系统
204
+ ![ 功能图 ] ( /.image/common/erp-feature.png )
209
205
210
- ![ 功能图 ] ( /.image/common/crm-feature.png )
206
+ ### CRM 系统
211
207
212
208
演示地址:< https://doc.iocoder.cn/crm-preview/ >
213
209
210
+ ![ 功能图] ( /.image/common/crm-feature.png )
211
+
214
212
## 🐷 演示图
215
213
216
214
### 系统功能
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ export interface WriteVO {
17
17
platform ?: string // 平台
18
18
model ?: string // 模型
19
19
generatedContent ?: string // 生成的内容
20
- errorMessage : string // 错误信息
20
+ errorMessage ? : string // 错误信息
21
21
createTime ?: Date // 创建时间
22
22
}
23
23
Original file line number Diff line number Diff line change 1
1
<template >
2
2
<el-card class =" my-card h-full" >
3
- <template #header
4
- > <h3 class =" m-0 px-7 shrink-0 flex items-center justify-between" >
3
+ <template #header >
4
+ <h3 class =" m-0 px-7 shrink-0 flex items-center justify-between" >
5
5
<span >预览</span >
6
6
<!-- 展示在右上角 -->
7
7
<el-button color =" #846af7" v-show =" showCopy" @click =" copyContent" size =" small" >
10
10
</template >
11
11
复制
12
12
</el-button >
13
- </h3 ></ template
14
- >
13
+ </h3 >
14
+ </ template >
15
15
16
16
<div ref =" contentRef" class =" hide-scroll-bar h-full box-border overflow-y-auto" >
17
17
<div class =" w-full min-h-full relative flex-grow bg-white box-border p-3 sm:p-7" >
@@ -105,7 +105,7 @@ watch(copied, (val) => {
105
105
}
106
106
}
107
107
108
- .my-card {
108
+ .my-card {
109
109
display : flex ;
110
110
flex-direction : column ;
111
111
Original file line number Diff line number Diff line change
1
+ <!-- 标签选项 -->
1
2
<template >
2
3
<div class =" flex flex-wrap gap-[8px]" >
3
4
<span
Original file line number Diff line number Diff line change 20
20
<script setup lang="ts">
21
21
import Left from ' ./components/Left.vue'
22
22
import Right from ' ./components/Right.vue'
23
- import { WriteApi } from ' @/api/ai/write'
23
+ import { WriteApi , WriteVO } from ' @/api/ai/write'
24
24
import { WriteExample } from ' @/views/ai/utils/constants'
25
25
26
26
const message = useMessage ()
@@ -37,7 +37,7 @@ const stopStream = () => {
37
37
38
38
/** 执行写作 */
39
39
const rightRef = ref <InstanceType <typeof Right >>()
40
- const submit = (data ) => {
40
+ const submit = (data : WriteVO ) => {
41
41
abortController .value = new AbortController ()
42
42
writeResult .value = ' '
43
43
isWriting .value = true
You can’t perform that action at this time.
0 commit comments