Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
foreign
/
customer-service
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
48f03a5c
authored
Aug 02, 2021
by
吴云建
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
fix
parent
383d54c9
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
14 deletions
components/chat-title.vue
components/workflow.vue
package-lock.json
store/index.ts
components/chat-title.vue
View file @
48f03a5c
...
...
@@ -106,7 +106,6 @@ export default class ChatTitle extends Vue {
private
async
addMemberForMyself
()
{
try
{
console
.
log
(
"====>>>??"
)
await
this
.
_addMember
([
this
.
operatorUid
.
toString
()]);
}
catch
(
error
)
{
console
.
error
(
error
);
...
...
components/workflow.vue
View file @
48f03a5c
...
...
@@ -109,7 +109,6 @@ export default class WorkFlow extends Vue {
public
async
created
()
{
this
.
flowList
=
await
sdk
().
model
(
this
.
model_name
).
workflow2
().
queryProcessByAssociateId
(
+
this
.
id
);
console
.
log
(
"=======>>>>workflow"
,
this
.
flowList
);
}
public
start
(
workflow
:
any
)
{
...
...
package-lock.json
View file @
48f03a5c
...
...
@@ -139,9 +139,9 @@
"integrity"
:
"sha1-x+lqB2wWghN9TSOo3P3GPyIOF6g="
},
"wamp.js"
:
{
"version"
:
"0.3.
0
"
,
"resolved"
:
"http://npm.job.qinqinxiaobao.com/wamp.js/-/wamp.js-0.3.
0
.tgz"
,
"integrity"
:
"sha512-
a3S/yKKzlV19ZjEmkgla5q6P2BYKvA3ZBtMsolmJzSe7KHz5lyn8gCVy2ME2l9Mqunl4MR7vyut/cEyunj7Yew
=="
,
"version"
:
"0.3.
2
"
,
"resolved"
:
"http://npm.job.qinqinxiaobao.com/wamp.js/-/wamp.js-0.3.
2
.tgz"
,
"integrity"
:
"sha512-
XZCYVhFKbco3kTUqirYf+b6xwadhK6Yl1sflrFNr4M7OsVmj8JQcTNoBv6zKDzzABNuvmuSFP7vomsDKpU+pbg
=="
,
"requires"
:
{
"tweetnacl"
:
"^1.0.1"
,
"ws"
:
"^7.1.0"
...
...
@@ -153,11 +153,11 @@
"integrity"
:
"sha1-Fgg1tjx9l7+rQY/BuKn87SrAGnQ="
},
"xchat-client"
:
{
"version"
:
"2.
1.9
"
,
"resolved"
:
"http://npm.job.qinqinxiaobao.com/xchat-client/-/xchat-client-2.
1.9
.tgz"
,
"integrity"
:
"sha512-
eCYC7rOO9EkKyBNHY/Ak6fp/CEOtsa033TJUZoQh7gYM0JJemYgVIfOQLJxmWAfp3QTvMBC/eBD+ozB4UUR9Jg
=="
,
"version"
:
"2.
2.1
"
,
"resolved"
:
"http://npm.job.qinqinxiaobao.com/xchat-client/-/xchat-client-2.
2.1
.tgz"
,
"integrity"
:
"sha512-
AK5Wye6Eex6JV+PoA5H1N0Jen3wwzZ9mb9IC/HQJUhYUEFTF99N62nImPqDTARHp4KEHFm3JHbmPf6cZvSBEKw
=="
,
"requires"
:
{
"wamp.js"
:
"0.3.
0
"
"wamp.js"
:
"0.3.
2
"
}
}
}
...
...
store/index.ts
View file @
48f03a5c
...
...
@@ -299,10 +299,6 @@ export default {
state
,
commit
,
})
/* ...params: Parameters<ChatStore.ACTION_GET_MY_CHAT_LIST> */
{
if
(
!
state
[
ChatStore
.
STATE_CHAT_CURRENT_USER_UID
])
{
const
userInfo
=
await
sdk
().
getUserInfo
();
commit
(
ChatStore
.
MUTATION_SET_CURRENT_USER_UID
,
userInfo
.
id
);
}
const
data
=
await
xim
.
fetchChatList
();
if
(
data
==
null
)
return
;
const
chatList
=
data
.
args
[
0
];
...
...
@@ -540,7 +536,10 @@ export default {
commit
(
ChatStore
.
MUTATION_CLEAR_SINGLE_CHAT
);
}
console
.
log
(
"============>>>"
,
wantedChatRoom
);
if
(
!
state
[
ChatStore
.
STATE_CHAT_CURRENT_USER_UID
])
{
const
userInfo
=
await
sdk
().
getUserInfo
();
commit
(
ChatStore
.
MUTATION_SET_CURRENT_USER_UID
,
userInfo
.
id
);
}
const
info
=
await
getChatModelInfo
(
wantedChatRoom
.
business_data
.
model_name
,
...
...
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