diff --git a/yudao-admin-vue3/src/api/crm/intelligent.ts b/yudao-admin-vue3/src/api/crm/intelligent.ts new file mode 100644 index 0000000..e1e0883 --- /dev/null +++ b/yudao-admin-vue3/src/api/crm/intelligent.ts @@ -0,0 +1,23 @@ +import request from '@/config/axios' + +// 跟进记录 API +export const FollowUpRecordApi = { + // 查询表单列表 + selectDynamicData: async () => { + return await request.get({ url: `/intelligentForm/selectDynamicData`}) + }, + + //添加智能表单 + saveDynamicData: async (data) => { + return await request.post({ url: `/intelligentForm/saveDynamicData`, data }) + }, + + //查询对应表单的采集数据列表 + collectDataList: async(query) => { + return await request.get({ + url: '/intelligentForm/collectDataList', + method: 'get', + params: {id:query} + }) + } +} diff --git a/yudao-admin-vue3/src/views/mall/promotion/intelligent/index.vue b/yudao-admin-vue3/src/views/mall/promotion/intelligent/index.vue index 4913db3..1cd15e9 100644 --- a/yudao-admin-vue3/src/views/mall/promotion/intelligent/index.vue +++ b/yudao-admin-vue3/src/views/mall/promotion/intelligent/index.vue @@ -1,299 +1,280 @@ - + - + - - - - + 新建表单 - + + + + + 新建表单 + - - - - - - - {{ o.title }} - 推广 - - - - - - - - - 总浏览量 - {{ o.pageView }} - - - 采集数量 - {{ o.collectionQuantity }} - - - - - 创建人:{{ o.createPeople }} - - 创建时间:{{ o.createTime }} - - - - - - - - - - - - 标题 - - - - - 字段 - - - 添加字段 - - - - - - - 确 定 - 取 消 - - - - - - - 复制 - - - - - - - - - - - - - - - - - {{ scope.row[item] }} - - - - - - - + + + + + + {{o.title}} + 推广 + + + + 总浏览量 + {{o.pageView}} + + + 采集数量 + {{o.collectionQuantity}} + + + + + 创建人:{{o.createPeople}} + + 创建时间:{{o.createTime}} + + + + + + + + + 标题 + + + + + 字段 + + + + 添加字段 + + + + + + + 确 定 + 取 消 + + + + + + + 复制 + + + + + + + + + + + + + + + + {{scope.row[item]}} + + + + + + + ::v-deep.el-input--medium .el-input__inner { + border: none; + /* border-bottom:1px solid blue; */ + } + \ No newline at end of file
{{ o.pageView }}
{{ o.collectionQuantity }}
{{o.pageView}}
{{o.collectionQuantity}}