Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
pet-business-web
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
刘怀志
pet-business-web
Commits
5ee15d2b
Commit
5ee15d2b
authored
Aug 23, 2023
by
陈明豪
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
1c71f961
372b9287
Changes
14
Show whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
15 additions
and
15 deletions
+15
-15
index.vue
src/components/CropperImage/index.vue
+2
-2
index.vue
src/components/ImageUpload/index.vue
+1
-1
Navbar.vue
src/layout/components/Navbar.vue
+1
-1
article-edit.vue
src/views/article-management/article-edit.vue
+1
-1
banner_edit.vue
src/views/banner_management/banner_edit.vue
+1
-1
about-us.vue
src/views/document-management/about-us/about-us.vue
+1
-1
privacy-policy.vue
...ews/document-management/privacy-policy/privacy-policy.vue
+1
-1
user-protocol.vue
...views/document-management/user-protocol/user-protocol.vue
+1
-1
equipment-detail.vue
...ment-management/equipment-management/equipment-detail.vue
+1
-1
medical-edit.vue
src/views/medical-record-management/medical-edit.vue
+1
-1
handle-discharge.vue
...ospitalization-management/components/handle-discharge.vue
+1
-1
check-subscribe.vue
...-management/medical-record-management/check-subscribe.vue
+1
-1
medical-record-management.vue
...t/medical-record-management/medical-record-management.vue
+1
-1
index.vue
src/views/tool/build/index.vue
+1
-1
No files found.
src/components/CropperImage/index.vue
View file @
5ee15d2b
...
@@ -194,10 +194,10 @@ export default {
...
@@ -194,10 +194,10 @@ export default {
const
user
=
_
.
cloneDeep
(
this
.
$store
.
state
.
user
)
const
user
=
_
.
cloneDeep
(
this
.
$store
.
state
.
user
)
user
.
head
=
res
.
filePath
user
.
head
=
res
.
filePath
this
.
$store
.
commit
(
'setUser'
,
user
)
this
.
$store
.
commit
(
'setUser'
,
user
)
this
.
$message
.
success
(
'修改头像成功
!
'
)
this
.
$message
.
success
(
'修改头像成功'
)
this
.
$emit
(
'close'
)
this
.
$emit
(
'close'
)
}
catch
(
error
)
{
}
catch
(
error
)
{
this
.
$message
.
error
(
'修改头像失败
!
'
)
this
.
$message
.
error
(
'修改头像失败'
)
}
}
}
}
}
}
...
...
src/components/ImageUpload/index.vue
View file @
5ee15d2b
...
@@ -176,7 +176,7 @@ export default {
...
@@ -176,7 +176,7 @@ export default {
var
img
=
file
.
name
.
substring
(
file
.
name
.
lastIndexOf
(
'.'
)
+
1
)
var
img
=
file
.
name
.
substring
(
file
.
name
.
lastIndexOf
(
'.'
)
+
1
)
const
suffix
=
img
===
'jpg'
||
img
===
'png'
||
img
===
'jpeg'
const
suffix
=
img
===
'jpg'
||
img
===
'png'
||
img
===
'jpeg'
if
(
!
suffix
)
{
if
(
!
suffix
)
{
this
.
$message
.
error
(
'文件格式不正确, 请上传png/jpg/jpeg图片格式文件
!
'
)
this
.
$message
.
error
(
'文件格式不正确, 请上传png/jpg/jpeg图片格式文件'
)
return
false
return
false
}
}
if
(
this
.
fileSize
)
{
if
(
this
.
fileSize
)
{
...
...
src/layout/components/Navbar.vue
View file @
5ee15d2b
...
@@ -96,7 +96,7 @@ export default {
...
@@ -96,7 +96,7 @@ export default {
this
.
$store
.
dispatch
(
'app/toggleSideBar'
)
this
.
$store
.
dispatch
(
'app/toggleSideBar'
)
},
},
async
logout
()
{
async
logout
()
{
this
.
$confirm
(
'确定注销并退出系统吗
?
'
,
'提示'
,
{
this
.
$confirm
(
'确定注销并退出系统吗'
,
'提示'
,
{
confirmButtonText
:
'确定'
,
confirmButtonText
:
'确定'
,
cancelButtonText
:
'取消'
,
cancelButtonText
:
'取消'
,
type
:
'warning'
type
:
'warning'
...
...
src/views/article-management/article-edit.vue
View file @
5ee15d2b
...
@@ -162,7 +162,7 @@ export default {
...
@@ -162,7 +162,7 @@ export default {
submitForm
()
{
submitForm
()
{
this
.
$refs
[
'form'
].
validate
(
valid
=>
{
this
.
$refs
[
'form'
].
validate
(
valid
=>
{
if
(
valid
)
{
if
(
valid
)
{
this
.
$confirm
(
'系统将立即发布编辑内容,是否确定
?
'
,
'提示'
,
{
this
.
$confirm
(
'系统将立即发布编辑内容,是否确定'
,
'提示'
,
{
confirmButtonText
:
'确定'
,
confirmButtonText
:
'确定'
,
cancelButtonText
:
'取消'
,
cancelButtonText
:
'取消'
,
customClass
:
'box-logout'
,
customClass
:
'box-logout'
,
...
...
src/views/banner_management/banner_edit.vue
View file @
5ee15d2b
...
@@ -199,7 +199,7 @@ export default {
...
@@ -199,7 +199,7 @@ export default {
if
(
valid
)
{
if
(
valid
)
{
console
.
log
(
'校验通过'
)
console
.
log
(
'校验通过'
)
this
.
$confirm
(
'系统将立即发布编辑内容,是否确定
?
'
,
'提示'
,
{
this
.
$confirm
(
'系统将立即发布编辑内容,是否确定'
,
'提示'
,
{
confirmButtonText
:
'确定'
,
confirmButtonText
:
'确定'
,
cancelButtonText
:
'取消'
,
cancelButtonText
:
'取消'
,
customClass
:
'box-logout'
,
customClass
:
'box-logout'
,
...
...
src/views/document-management/about-us/about-us.vue
View file @
5ee15d2b
...
@@ -79,7 +79,7 @@ export default {
...
@@ -79,7 +79,7 @@ export default {
// this.$modal.msgError('内容不能为空')
// this.$modal.msgError('内容不能为空')
// return
// return
// }
// }
this
.
$confirm
(
'系统将立即发布编辑内容,是否确定
?
'
,
'提示'
,
{
this
.
$confirm
(
'系统将立即发布编辑内容,是否确定'
,
'提示'
,
{
confirmButtonText
:
'确定'
,
confirmButtonText
:
'确定'
,
cancelButtonText
:
'取消'
,
cancelButtonText
:
'取消'
,
customClass
:
'box-logout'
,
customClass
:
'box-logout'
,
...
...
src/views/document-management/privacy-policy/privacy-policy.vue
View file @
5ee15d2b
...
@@ -79,7 +79,7 @@ export default {
...
@@ -79,7 +79,7 @@ export default {
// this.$modal.msgError('内容不能为空')
// this.$modal.msgError('内容不能为空')
// return
// return
// }
// }
this
.
$confirm
(
'系统将立即发布编辑内容,是否确定
?
'
,
'提示'
,
{
this
.
$confirm
(
'系统将立即发布编辑内容,是否确定'
,
'提示'
,
{
confirmButtonText
:
'确定'
,
confirmButtonText
:
'确定'
,
cancelButtonText
:
'取消'
,
cancelButtonText
:
'取消'
,
customClass
:
'box-logout'
,
customClass
:
'box-logout'
,
...
...
src/views/document-management/user-protocol/user-protocol.vue
View file @
5ee15d2b
...
@@ -79,7 +79,7 @@ export default {
...
@@ -79,7 +79,7 @@ export default {
// this.$modal.msgError('内容不能为空')
// this.$modal.msgError('内容不能为空')
// return
// return
// }
// }
this
.
$confirm
(
'系统将立即发布编辑内容,是否确定
?
'
,
'提示'
,
{
this
.
$confirm
(
'系统将立即发布编辑内容,是否确定'
,
'提示'
,
{
confirmButtonText
:
'确定'
,
confirmButtonText
:
'确定'
,
cancelButtonText
:
'取消'
,
cancelButtonText
:
'取消'
,
customClass
:
'box-logout'
,
customClass
:
'box-logout'
,
...
...
src/views/equipment-management/equipment-management/equipment-detail.vue
View file @
5ee15d2b
...
@@ -1152,7 +1152,7 @@ export default {
...
@@ -1152,7 +1152,7 @@ export default {
this
.
$refs
[
'form'
].
validate
(
valid
=>
{
this
.
$refs
[
'form'
].
validate
(
valid
=>
{
if
(
valid
)
{
if
(
valid
)
{
this
.
$confirm
(
'系统将立即发布编辑内容,是否确定
?
'
,
'提示'
,
{
this
.
$confirm
(
'系统将立即发布编辑内容,是否确定'
,
'提示'
,
{
confirmButtonText
:
'确定'
,
confirmButtonText
:
'确定'
,
cancelButtonText
:
'取消'
,
cancelButtonText
:
'取消'
,
customClass
:
'box-logout'
,
customClass
:
'box-logout'
,
...
...
src/views/medical-record-management/medical-edit.vue
View file @
5ee15d2b
...
@@ -1633,7 +1633,7 @@ export default {
...
@@ -1633,7 +1633,7 @@ export default {
'followStatus'
:
this
.
detailInfo
.
followStatus
'followStatus'
:
this
.
detailInfo
.
followStatus
}
}
console
.
log
(
'病例编辑页的提交字段大集合!!!'
,
temp
)
console
.
log
(
'病例编辑页的提交字段大集合!!!'
,
temp
)
this
.
$confirm
(
'系统将立即发布编辑内容,是否确定
?
'
,
'提示'
,
{
this
.
$confirm
(
'系统将立即发布编辑内容,是否确定'
,
'提示'
,
{
confirmButtonText
:
'确定'
,
confirmButtonText
:
'确定'
,
cancelButtonText
:
'取消'
,
cancelButtonText
:
'取消'
,
customClass
:
'box-logout'
,
customClass
:
'box-logout'
,
...
...
src/views/service-management/hospitalization-management/components/handle-discharge.vue
View file @
5ee15d2b
...
@@ -102,7 +102,7 @@ export default {
...
@@ -102,7 +102,7 @@ export default {
},
},
// 返回按钮
// 返回按钮
goBack
()
{
goBack
()
{
this
.
$confirm
(
'是否确认立即返回,返回后系统不再保存已填写内容
!
'
,
'提示'
,
{
this
.
$confirm
(
'是否确认立即返回,返回后系统不再保存已填写内容'
,
'提示'
,
{
confirmButtonText
:
'确定'
,
confirmButtonText
:
'确定'
,
cancelButtonText
:
'取消'
,
cancelButtonText
:
'取消'
,
type
:
'warning'
,
type
:
'warning'
,
...
...
src/views/service-management/medical-record-management/check-subscribe.vue
View file @
5ee15d2b
...
@@ -382,7 +382,7 @@ export default {
...
@@ -382,7 +382,7 @@ export default {
}
,
}
,
// 点击立即预约
// 点击立即预约
handleBookNow
(
row
)
{
handleBookNow
(
row
)
{
this
.
$confirm
(
'立即预约此设备,是否确定
?
'
,
'提示'
,
{
this
.
$confirm
(
'立即预约此设备,是否确定'
,
'提示'
,
{
confirmButtonText
:
'确定'
,
confirmButtonText
:
'确定'
,
cancelButtonText
:
'取消'
,
cancelButtonText
:
'取消'
,
customClass
:
'box-logout'
,
customClass
:
'box-logout'
,
...
...
src/views/service-management/medical-record-management/medical-record-management.vue
View file @
5ee15d2b
...
@@ -758,7 +758,7 @@ export default {
...
@@ -758,7 +758,7 @@ export default {
/** 对话框立即预约设备 */
/** 对话框立即预约设备 */
handleSubscribeDevice
(
row
)
{
handleSubscribeDevice
(
row
)
{
console
.
log
(
'点击里面的立即预约'
,
row
)
console
.
log
(
'点击里面的立即预约'
,
row
)
this
.
$confirm
(
'立即预约此设备,是否确定
?
'
,
'提示'
,
{
this
.
$confirm
(
'立即预约此设备,是否确定'
,
'提示'
,
{
confirmButtonText
:
'确定'
,
confirmButtonText
:
'确定'
,
cancelButtonText
:
'取消'
,
cancelButtonText
:
'取消'
,
customClass
:
'box-logout'
,
customClass
:
'box-logout'
,
...
...
src/views/tool/build/index.vue
View file @
5ee15d2b
...
@@ -288,7 +288,7 @@ export default {
...
@@ -288,7 +288,7 @@ export default {
document
.
getElementById
(
'copyNode'
).
click
()
document
.
getElementById
(
'copyNode'
).
click
()
},
},
empty
()
{
empty
()
{
this
.
$confirm
(
'确定要清空所有组件吗
?
'
,
'提示'
,
{
type
:
'warning'
}).
then
(
this
.
$confirm
(
'确定要清空所有组件吗'
,
'提示'
,
{
type
:
'warning'
}).
then
(
()
=>
{
()
=>
{
this
.
drawingList
=
[]
this
.
drawingList
=
[]
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment