Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
V
vue-gjjs
Overview
Overview
Details
Activity
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
fukai
vue-gjjs
Commits
b2f3f523
Commit
b2f3f523
authored
Jun 02, 2023
by
wanggang_yf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
brtudp页面修改
parent
df80ab5c
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
17 additions
and
58 deletions
+17
-58
index.js
src/business/brtudp/event/index.js
+11
-11
Cfap.vue
src/business/brtudp/views/Cfap.vue
+0
-1
Conp.vue
src/business/brtudp/views/Conp.vue
+1
-5
Dclpp.vue
src/business/brtudp/views/Dclpp.vue
+1
-3
Docpre.vue
src/business/brtudp/views/Docpre.vue
+1
-14
Mt754p.vue
src/business/brtudp/views/Mt754p.vue
+0
-4
Othadvtypp.vue
src/business/brtudp/views/Othadvtypp.vue
+1
-4
Ovwp.vue
src/business/brtudp/views/Ovwp.vue
+0
-5
Shisuan.vue
src/business/brtudp/views/Shisuan.vue
+1
-4
Shpdet.vue
src/business/brtudp/views/Shpdet.vue
+1
-7
No files found.
src/business/brtudp/event/index.js
View file @
b2f3f523
...
...
@@ -20,7 +20,7 @@ export default {
...
ccvpan
,
...
limitbody
,
...
doctre
,
async
init
()
{
async
init
()
{
const
params
=
{
spt
:
JSON
.
parse
(
localStorage
.
getItem
(
'row_'
+
this
.
trnName
))
}
...
...
@@ -28,12 +28,12 @@ export default {
...
params
,
transName
:
this
.
trnName
,
userId
:
window
.
sessionStorage
.
userId
||
'ZL'
,
brdgrp
:{
rec
:{
inr
:
this
.
$route
.
query
.
inr
brdgrp
:
{
rec
:
{
inr
:
this
.
$route
.
query
.
inr
}
}
});
if
(
!
res
.
data
)
{
return
...
...
@@ -44,7 +44,7 @@ export default {
this
.
copyValueFromVoData
(
this
.
model
.
setmod
.
setglg
,
res
.
data
.
setglg
)
},
// 兼容处理在前端model中定义了字段,后端返回的数据中不存在字段的问题
copyValueFromVoData
(
model
,
data
)
{
copyValueFromVoData
(
model
,
data
)
{
let
keysList
=
Object
.
keys
(
model
)
keysList
.
map
((
key
)
=>
{
if
(
data
[
key
])
{
...
...
@@ -93,7 +93,7 @@ export default {
let
doctreRequest
=
buildFn
.
buildDoctre
(
this
.
model
,
this
.
trnName
);
this
.
processDoctre
(
doctreRequest
);
break
;
default
:
return
;
}
...
...
@@ -170,7 +170,7 @@ export default {
handleChangePurpos
()
{
this
.
queryHndtypCodeTableList
(
this
.
root
.
trnName
);
},
buildLiaccv
()
{
buildLiaccv
()
{
let
params
=
{
...
buildFn
.
buildCommonData
(
this
.
model
,
this
.
trnName
),
liaccvg
:
this
.
model
.
liaccv
.
liaccvg
,
...
...
@@ -178,11 +178,11 @@ export default {
chgamt
:
this
.
model
.
liaccv
.
chgamt
,
concur
:
this
.
model
.
liaccv
.
concur
,
};
return
params
},
// 公共组件setmod处理方式改变触发联动
changeSetmodModel
(
emitParams
)
{
changeSetmodModel
(
emitParams
)
{
let
reqParams
=
{}
switch
(
emitParams
.
code
)
{
case
'processMethods'
:
...
...
@@ -192,7 +192,7 @@ export default {
case
'changeDsp'
:
let
index
=
emitParams
.
index
;
let
setglgRequest
=
buildFn
.
buildSetglg
(
this
.
model
,
this
.
trnName
);
setglgRequest
.
setglg
=
{
setgll
:
emitParams
.
list
};
setglgRequest
.
setglg
=
{
setgll
:
emitParams
.
list
};
this
.
setgllAccts
(
setglgRequest
,
index
);
break
default
:
...
...
src/business/brtudp/views/Cfap.vue
View file @
b2f3f523
...
...
@@ -57,7 +57,6 @@
</div>
</
template
>
<
script
>
import
CodeTable
from
"~/config/CodeTable"
;
import
event
from
'../event'
;
export
default
{
...
...
src/business/brtudp/views/Conp.vue
View file @
b2f3f523
...
...
@@ -364,10 +364,6 @@
</div>
</template>
<
script
>
import
Api
from
"~/service/Api"
;
// import commonProcess from "~/mixin/commonProcess";
import
CodeTable
from
"~/config/CodeTable"
;
// import Event from "~/model/Brtudp/Event";
import
event
from
'../event'
export
default
{
...
...
@@ -377,7 +373,7 @@ export default {
data
()
{
return
{};
},
methods
:
{
...
Event
,
crehqcodeEvent
()
{}
},
methods
:
{},
created
:
function
()
{},
};
</
script
>
...
...
src/business/brtudp/views/Dclpp.vue
View file @
b2f3f523
...
...
@@ -156,8 +156,6 @@
</div>
</
template
>
<
script
>
import
Api
from
"~/service/Api"
;
import
CodeTable
from
"~/config/CodeTable"
;
import
event
from
'../event'
;
export
default
{
...
...
@@ -167,7 +165,7 @@ export default {
data
()
{
return
{};
},
methods
:
{
...
Event
},
methods
:
{},
created
:
function
()
{},
};
</
script
>
...
...
src/business/brtudp/views/Docpre.vue
View file @
b2f3f523
...
...
@@ -70,7 +70,6 @@
<c-checkbox
style=
"margin: 0px 0 10px 150px;"
v-model=
"docdisflg"
@
change=
"docdisDefault"
>
录入不符点
</c-checkbox
>
</el-form-item>
...
...
@@ -118,10 +117,6 @@
</div>
</template>
<
script
>
import
Api
from
"~/service/Api"
;
import
CodeTable
from
"~/config/CodeTable"
;
import
Event
from
"~/model/Brtudp/Event"
;
import
Utils
from
"~/utils"
;
import
Docpre
from
"~/views/Public/Docpre"
;
import
event
from
'../event'
;
...
...
@@ -137,15 +132,7 @@ export default {
return
{
};
},
methods
:
{
...
Event
,
async
docdisDefault
(){
this
.
executeDefault
(
"brdgrp.blk.docdis"
).
then
(
res
=>
{
//TODO 处理数据逻辑
if
(
res
.
respCode
==
SUCCESS
)
this
.
updateModel
(
res
.
data
);
})
},
},
methods
:
{},
created
:
function
()
{
},
computed
:
{
docdisflg
:
{
...
...
src/business/brtudp/views/Mt754p.vue
View file @
b2f3f523
...
...
@@ -113,9 +113,6 @@
</div>
</
template
>
<
script
>
import
Api
from
"~/service/Api"
import
commonProcess
from
"~/mixin/commonProcess"
;
import
CodeTable
from
"~/config/CodeTable"
import
Ptap1
from
"~/views/Public/Ptap1"
;
import
event
from
'../event'
;
...
...
@@ -134,7 +131,6 @@ export default {
},
methods
:
{},
created
:
function
()
{
}
}
</
script
>
...
...
src/business/brtudp/views/Othadvtypp.vue
View file @
b2f3f523
...
...
@@ -77,9 +77,6 @@
</div>
</
template
>
<
script
>
import
Api
from
"~/service/Api"
import
CodeTable
from
"~/config/CodeTable"
import
Event
from
"~/model/Brtudp/Event"
import
Ptap1
from
"~/views/Public/Ptap1"
;
import
event
from
'../event'
;
...
...
@@ -97,7 +94,7 @@ export default {
}
},
methods
:{
...
Event
},
methods
:{},
created
:
function
(){
}
...
...
src/business/brtudp/views/Ovwp.vue
View file @
b2f3f523
...
...
@@ -33,10 +33,6 @@
</
template
>
<
script
>
import
Api
from
"~/service/Api"
;
import
commonProcess
from
"~/mixin/commonProcess"
;
import
CodeTable
from
"~/config/CodeTable"
;
import
Event
from
"~/model/Brtudp/Event"
;
import
Payp
from
"./Payp"
;
import
Docpre
from
"./Docpre"
;
import
Mt750p
from
"./Mt750p"
;
...
...
@@ -46,7 +42,6 @@ import Othadvtypp from "./Othadvtypp";
import
Cfap
from
"./Cfap"
;
import
Conp
from
"./Conp"
;
import
Dclpp
from
"./Dclpp"
;
// import Shisuan from "./Shisuan";
import
event
from
'../event'
;
export
default
{
...
...
src/business/brtudp/views/Shisuan.vue
View file @
b2f3f523
...
...
@@ -261,9 +261,6 @@
</div>
</
template
>
<
script
>
import
Api
from
"~/service/Api"
import
commonProcess
from
"~/mixin/commonProcess"
;
import
CodeTable
from
"~/config/CodeTable"
import
event
from
'../event'
export
default
{
...
...
@@ -275,7 +272,7 @@ export default {
}
},
methods
:{
...
Event
},
methods
:{},
created
:
function
(){
}
...
...
src/business/brtudp/views/Shpdet.vue
View file @
b2f3f523
...
...
@@ -149,7 +149,6 @@
:disabled="true"
:isAdrblk="false"
disabled1
@onSeainf="onSeainf" @onAplpDet="onShppDet"
>
</c-ptap1>
<!-- brdgrp.shp.pts.extkey 对应grp: 'brdgrp', rol: 'prb',-->
...
...
@@ -175,9 +174,6 @@
</div>
</
template
>
<
script
>
import
Api
from
"~/service/Api"
import
commonProcess
from
"~/mixin/commonProcess"
;
import
CodeTable
from
"~/config/CodeTable"
import
Ptap1
from
"~/views/Public/Ptap1"
import
event
from
'../event'
...
...
@@ -206,9 +202,7 @@ export default {
// }
// }
},
methods
:{
...
Event
,
},
methods
:{},
created
:
function
(){
}
...
...
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