Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
basic-uniapp-v3
概览
概览
详情
活动
周期分析
版本库
存储库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
1
合并请求
1
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
Basic
basic-uniapp-v3
Commits
32d599f0
提交
32d599f0
authored
12月 29, 2025
作者:
王定
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat: 更新产销
上级
d5076220
显示空白字符变更
内嵌
并排
正在显示
9 个修改的文件
包含
234 行增加
和
34 行删除
+234
-34
caixianyi.vue
src/pages/chanxiao/caixianyi/caixianyi.vue
+38
-1
hema.vue
src/pages/chanxiao/hema/hema.vue
+38
-1
hongxing.vue
src/pages/chanxiao/hongxing/hongxing.vue
+38
-1
qiandama.vue
src/pages/chanxiao/qiandama/qiandama.vue
+38
-1
xiaoxiangchaoshi.vue
src/pages/chanxiao/xiaoxiangchaoshi/xiaoxiangchaoshi.vue
+42
-10
zhusiling.vue
src/pages/chanxiao/zhusiling/zhusiling.vue
+38
-2
dailijizhang.vue
src/pages/fuwu/dailijizhang/dailijizhang.vue
+1
-7
yonggongmap.vue
src/pages/linghuoyonggong/components/yonggongmap.vue
+0
-0
zhunongjinrong.vue
src/pages/zhunongjinrong/zhunongjinrong.vue
+1
-11
没有找到文件。
src/pages/chanxiao/caixianyi/caixianyi.vue
浏览文件 @
32d599f0
<
script
setup
lang=
"ts"
>
import
successfulDialog
from
'@/components/ConfirmDialog/successfulDialog.vue'
;
import
{
getCurrentDateTime
}
from
'@/utils/date'
import
*
as
HomeAPI
from
'@/api/model/home'
import
{
useUserStore
}
from
'@/store/modules/user'
const
userStore
=
useUserStore
();
const
consultRecord
=
reactive
({
id
:
""
,
mobile
:
''
,
// 咨询人号码
consultTime
:
""
,
// 咨询时间
bizType
:
5
,
// 业务类型(1代理记账,2农资,3农机,4金融)
enterpriseId
:
"2004840258270433254"
,
// 意向企业
feedbackRemark
:
""
// 反馈备注
})
const
pageData
=
reactive
({
showLogoutDialog
:
false
,
allpyMessageTitle
:
""
,
applyMessageText
:
""
,
})
onShow
(()
=>
{
const
{
id
,
realname
,
phone
}
=
userStore
.
getUserInfo
;
consultRecord
.
id
=
id
;
consultRecord
.
mobile
=
phone
;
consultRecord
.
feedbackRemark
=
realname
;
})
// 洽谈合作
function
onCooperationClick
()
{
Message
.
alert
(
'洽谈合作功能暂不可用,敬请期待~'
,
'温馨提示'
)
// Message.alert('洽谈合作功能暂不可用,敬请期待~', '温馨提示')
consultRecord
.
consultTime
=
getCurrentDateTime
();
HomeAPI
.
postConsultRecordAdd
(
consultRecord
).
then
((
res
)
=>
{
pageData
.
allpyMessageTitle
=
"申请成功"
;
pageData
.
applyMessageText
=
"平台已收到申请,将尽快与您取得联系!"
;
pageData
.
showLogoutDialog
=
true
;
})
}
</
script
>
...
...
@@ -75,6 +105,13 @@
</view>
</view>
</view>
<successfulDialog
v-model:show=
"pageData.showLogoutDialog"
:title=
"pageData.allpyMessageTitle"
:content=
"pageData.applyMessageText"
confirmText=
"我知道了"
@
confirm=
"pageData.showLogoutDialog = false"
/>
</
template
>
<
style
scoped
lang=
"scss"
>
...
...
src/pages/chanxiao/hema/hema.vue
浏览文件 @
32d599f0
<
script
setup
lang=
"ts"
>
import
successfulDialog
from
'@/components/ConfirmDialog/successfulDialog.vue'
;
import
{
getCurrentDateTime
}
from
'@/utils/date'
import
*
as
HomeAPI
from
'@/api/model/home'
import
{
useUserStore
}
from
'@/store/modules/user'
const
userStore
=
useUserStore
();
const
consultRecord
=
reactive
({
id
:
""
,
mobile
:
''
,
// 咨询人号码
consultTime
:
""
,
// 咨询时间
bizType
:
5
,
// 业务类型(1代理记账,2农资,3农机,4金融)
enterpriseId
:
"2004840258270488953"
,
// 意向企业
feedbackRemark
:
""
// 反馈备注
})
const
pageData
=
reactive
({
showLogoutDialog
:
false
,
allpyMessageTitle
:
""
,
applyMessageText
:
""
,
})
onShow
(()
=>
{
const
{
id
,
realname
,
phone
}
=
userStore
.
getUserInfo
;
consultRecord
.
id
=
id
;
consultRecord
.
mobile
=
phone
;
consultRecord
.
feedbackRemark
=
realname
;
})
// 洽谈合作
function
onCooperationClick
()
{
Message
.
alert
(
'洽谈合作功能暂不可用,敬请期待~'
,
'温馨提示'
)
// Message.alert('洽谈合作功能暂不可用,敬请期待~', '温馨提示')
consultRecord
.
consultTime
=
getCurrentDateTime
();
HomeAPI
.
postConsultRecordAdd
(
consultRecord
).
then
((
res
)
=>
{
pageData
.
allpyMessageTitle
=
"申请成功"
;
pageData
.
applyMessageText
=
"平台已收到申请,将尽快与您取得联系!"
;
pageData
.
showLogoutDialog
=
true
;
})
}
</
script
>
...
...
@@ -93,6 +123,13 @@
</view>
</view>
</view>
<successfulDialog
v-model:show=
"pageData.showLogoutDialog"
:title=
"pageData.allpyMessageTitle"
:content=
"pageData.applyMessageText"
confirmText=
"我知道了"
@
confirm=
"pageData.showLogoutDialog = false"
/>
</view>
</
template
>
...
...
src/pages/chanxiao/hongxing/hongxing.vue
浏览文件 @
32d599f0
<
script
setup
lang=
"ts"
>
import
successfulDialog
from
'@/components/ConfirmDialog/successfulDialog.vue'
;
import
{
getCurrentDateTime
}
from
'@/utils/date'
import
*
as
HomeAPI
from
'@/api/model/home'
import
{
useUserStore
}
from
'@/store/modules/user'
const
userStore
=
useUserStore
();
const
consultRecord
=
reactive
({
id
:
""
,
mobile
:
''
,
// 咨询人号码
consultTime
:
""
,
// 咨询时间
bizType
:
5
,
// 业务类型(1代理记账,2农资,3农机,4金融)
enterpriseId
:
"2004840258270471548"
,
// 意向企业
feedbackRemark
:
""
// 反馈备注
})
const
pageData
=
reactive
({
showLogoutDialog
:
false
,
allpyMessageTitle
:
""
,
applyMessageText
:
""
,
})
onShow
(()
=>
{
const
{
id
,
realname
,
phone
}
=
userStore
.
getUserInfo
;
consultRecord
.
id
=
id
;
consultRecord
.
mobile
=
phone
;
consultRecord
.
feedbackRemark
=
realname
;
})
// 洽谈合作
function
onCooperationClick
()
{
Message
.
alert
(
'洽谈合作功能暂不可用,敬请期待~'
,
'温馨提示'
)
// Message.alert('洽谈合作功能暂不可用,敬请期待~', '温馨提示')
consultRecord
.
consultTime
=
getCurrentDateTime
();
HomeAPI
.
postConsultRecordAdd
(
consultRecord
).
then
((
res
)
=>
{
pageData
.
allpyMessageTitle
=
"申请成功"
;
pageData
.
applyMessageText
=
"平台已收到申请,将尽快与您取得联系!"
;
pageData
.
showLogoutDialog
=
true
;
})
}
</
script
>
...
...
@@ -117,6 +147,13 @@
</view>
</view>
</view>
<successfulDialog
v-model:show=
"pageData.showLogoutDialog"
:title=
"pageData.allpyMessageTitle"
:content=
"pageData.applyMessageText"
confirmText=
"我知道了"
@
confirm=
"pageData.showLogoutDialog = false"
/>
</
template
>
<
style
scoped
lang=
"scss"
>
...
...
src/pages/chanxiao/qiandama/qiandama.vue
浏览文件 @
32d599f0
<
script
setup
lang=
"ts"
>
import
successfulDialog
from
'@/components/ConfirmDialog/successfulDialog.vue'
;
import
{
getCurrentDateTime
}
from
'@/utils/date'
import
*
as
HomeAPI
from
'@/api/model/home'
import
{
useUserStore
}
from
'@/store/modules/user'
const
userStore
=
useUserStore
();
const
consultRecord
=
reactive
({
id
:
""
,
mobile
:
''
,
// 咨询人号码
consultTime
:
""
,
// 咨询时间
bizType
:
5
,
// 业务类型(1代理记账,2农资,3农机,4金融)
enterpriseId
:
"2004840258270471581"
,
// 意向企业
feedbackRemark
:
""
// 反馈备注
})
const
pageData
=
reactive
({
showLogoutDialog
:
false
,
allpyMessageTitle
:
""
,
applyMessageText
:
""
,
})
onShow
(()
=>
{
const
{
id
,
realname
,
phone
}
=
userStore
.
getUserInfo
;
consultRecord
.
id
=
id
;
consultRecord
.
mobile
=
phone
;
consultRecord
.
feedbackRemark
=
realname
;
})
// 洽谈合作
function
onCooperationClick
()
{
Message
.
alert
(
'洽谈合作功能暂不可用,敬请期待~'
,
'温馨提示'
)
// Message.alert('洽谈合作功能暂不可用,敬请期待~', '温馨提示')
consultRecord
.
consultTime
=
getCurrentDateTime
();
HomeAPI
.
postConsultRecordAdd
(
consultRecord
).
then
((
res
)
=>
{
pageData
.
allpyMessageTitle
=
"申请成功"
;
pageData
.
applyMessageText
=
"平台已收到申请,将尽快与您取得联系!"
;
pageData
.
showLogoutDialog
=
true
;
})
}
</
script
>
...
...
@@ -77,6 +107,13 @@
</view>
</view>
</view>
<successfulDialog
v-model:show=
"pageData.showLogoutDialog"
:title=
"pageData.allpyMessageTitle"
:content=
"pageData.applyMessageText"
confirmText=
"我知道了"
@
confirm=
"pageData.showLogoutDialog = false"
/>
</
template
>
<
style
scoped
lang=
"scss"
>
...
...
src/pages/chanxiao/xiaoxiangchaoshi/xiaoxiangchaoshi.vue
浏览文件 @
32d599f0
<
script
>
export
default
{
components
:
{},
props
:
{},
data
()
{
return
{}
},
methods
:
{},
<
script
setup
lang=
"ts"
>
import
successfulDialog
from
'@/components/ConfirmDialog/successfulDialog.vue'
;
import
{
getCurrentDateTime
}
from
'@/utils/date'
import
*
as
HomeAPI
from
'@/api/model/home'
import
{
useUserStore
}
from
'@/store/modules/user'
const
userStore
=
useUserStore
();
const
consultRecord
=
reactive
({
id
:
""
,
mobile
:
''
,
// 咨询人号码
consultTime
:
""
,
// 咨询时间
bizType
:
5
,
// 业务类型(1代理记账,2农资,3农机,4金融)
enterpriseId
:
"2004840258270437514"
,
// 意向企业
feedbackRemark
:
""
// 反馈备注
})
const
pageData
=
reactive
({
showLogoutDialog
:
false
,
allpyMessageTitle
:
""
,
applyMessageText
:
""
,
})
onShow
(()
=>
{
const
{
id
,
realname
,
phone
}
=
userStore
.
getUserInfo
;
consultRecord
.
id
=
id
;
consultRecord
.
mobile
=
phone
;
consultRecord
.
feedbackRemark
=
realname
;
})
// 洽谈合作
function
onCooperationClick
()
{
// Message.alert('洽谈合作功能暂不可用,敬请期待~', '温馨提示')
consultRecord
.
consultTime
=
getCurrentDateTime
();
HomeAPI
.
postConsultRecordAdd
(
consultRecord
).
then
((
res
)
=>
{
pageData
.
allpyMessageTitle
=
"申请成功"
;
pageData
.
applyMessageText
=
"平台已收到申请,将尽快与您取得联系!"
;
pageData
.
showLogoutDialog
=
true
;
})
}
</
script
>
...
...
@@ -79,7 +104,7 @@
src=
"/static/images/codefun/ca51ef39a15d5c8414c9a427b3c4434b.png"
/>
</view>
<view
class=
"codefun-flex-row codefun-justify-between codefun-relative group_6"
>
<view
class=
"codefun-flex-row codefun-justify-between codefun-relative group_6"
@
click=
"onCooperationClick"
>
<image
class=
"image_8"
src=
"/static/images/codefun/979b55187f885f1b302dd29760bb516b.png"
/>
<image
class=
"image_8"
src=
"/static/images/codefun/ecb55b953a8e07a17301bcd12aec591f.png"
/>
<view
class=
"codefun-flex-row codefun-justify-center codefun-items-center section_6 pos"
>
...
...
@@ -91,6 +116,13 @@
</view>
</view>
</view>
<successfulDialog
v-model:show=
"pageData.showLogoutDialog"
:title=
"pageData.allpyMessageTitle"
:content=
"pageData.applyMessageText"
confirmText=
"我知道了"
@
confirm=
"pageData.showLogoutDialog = false"
/>
</
template
>
<
style
scoped
lang=
"scss"
>
...
...
src/pages/chanxiao/zhusiling/zhusiling.vue
浏览文件 @
32d599f0
<
script
setup
lang=
"ts"
>
import
successfulDialog
from
'@/components/ConfirmDialog/successfulDialog.vue'
;
import
{
getCurrentDateTime
}
from
'@/utils/date'
import
*
as
HomeAPI
from
'@/api/model/home'
import
{
useUserStore
}
from
'@/store/modules/user'
const
userStore
=
useUserStore
();
const
consultRecord
=
reactive
({
id
:
""
,
mobile
:
''
,
// 咨询人号码
consultTime
:
""
,
// 咨询时间
bizType
:
5
,
// 业务类型(1代理记账,2农资,3农机,4金融)
enterpriseId
:
"2004840258270474551"
,
// 意向企业
feedbackRemark
:
""
// 反馈备注
})
const
pageData
=
reactive
({
showLogoutDialog
:
false
,
allpyMessageTitle
:
""
,
applyMessageText
:
""
,
})
onShow
(()
=>
{
const
{
id
,
realname
,
phone
}
=
userStore
.
getUserInfo
;
consultRecord
.
id
=
id
;
consultRecord
.
mobile
=
phone
;
consultRecord
.
feedbackRemark
=
realname
;
})
// 洽谈合作
function
onCooperationClick
()
{
Message
.
alert
(
'洽谈合作功能暂不可用,敬请期待~'
,
'温馨提示'
)
// Message.alert('洽谈合作功能暂不可用,敬请期待~', '温馨提示')
consultRecord
.
consultTime
=
getCurrentDateTime
();
HomeAPI
.
postConsultRecordAdd
(
consultRecord
).
then
((
res
)
=>
{
pageData
.
allpyMessageTitle
=
"申请成功"
;
pageData
.
applyMessageText
=
"平台已收到申请,将尽快与您取得联系!"
;
pageData
.
showLogoutDialog
=
true
;
})
}
</
script
>
<
template
>
<view
class=
"codefun-flex-col page"
>
<view
class=
"codefun-flex-col section"
>
...
...
@@ -84,6 +113,13 @@
</view>
</view>
</view>
<successfulDialog
v-model:show=
"pageData.showLogoutDialog"
:title=
"pageData.allpyMessageTitle"
:content=
"pageData.applyMessageText"
confirmText=
"我知道了"
@
confirm=
"pageData.showLogoutDialog = false"
/>
</
template
>
<
style
scoped
lang=
"scss"
>
...
...
src/pages/fuwu/dailijizhang/dailijizhang.vue
浏览文件 @
32d599f0
...
...
@@ -25,14 +25,8 @@
function
onApplyClick
()
{
consultRecord
.
consultTime
=
getCurrentDateTime
();
HomeAPI
.
postConsultRecordAdd
(
consultRecord
).
then
((
res
)
=>
{
if
(
res
.
code
==
200
){
pageData
.
showLogoutDialog
=
true
;
}
/* else{
Message.alert(res.message, '温馨提示');
} */
})
/* .catch(error => {
Message.alert(error.message, '温馨提示');
}); */
})
}
// 提交申请
function
handleConfirmLogout
(){
...
...
src/pages/linghuoyonggong/components/yonggongmap.vue
浏览文件 @
32d599f0
src/pages/zhunongjinrong/zhunongjinrong.vue
浏览文件 @
32d599f0
...
...
@@ -186,20 +186,10 @@
function
onApplyClick
()
{
consultRecord
.
consultTime
=
getCurrentDateTime
();
HomeAPI
.
postConsultRecordAdd
(
consultRecord
).
then
((
res
)
=>
{
if
(
res
.
code
==
200
){
pageData
.
allpyMessageTitle
=
"申请成功"
;
pageData
.
applyMessageText
=
"平台已收到申请,将尽快与您取得联系!"
;
pageData
.
showLogoutDialog
=
true
;
}
/* else{
pageData.allpyMessageTitle = "温馨提示";
pageData.applyMessageText = res.message;
} */
})
/* .catch(error => {
pageData.allpyMessageTitle = "温馨提示";
pageData.applyMessageText = error.message;
pageData.showLogoutDialog = true;
}); */
})
}
// 提交申请
function
handleConfirmLogout
(){
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论