Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
bdc
/
bdcdj-web
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
58582029
authored
2023-08-25 10:58:36 +0800
by
xiaomiao
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
--no commit message
1 parent
f4a7d443
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
10 additions
and
8 deletions
src/store/modules/workflow.js
src/views/djbworkflow/components/zc.vue
src/views/djbworkflow/djbBook/spyj.vue
src/views/workflow/components/dialog/commonOpinion.vue
src/views/workflow/components/spyj.vue
src/views/ywbl/slsqxx/fdcq1/slxx.vue
src/store/modules/workflow.js
View file @
5858202
...
...
@@ -4,7 +4,7 @@
* @LastEditTime: 2023-05-04 11:13:36
*/
const
state
=
{
yjsqOptions
:
""
,
yjsqOptions
:
{}
,
}
const
mutations
=
{
...
...
src/views/djbworkflow/components/zc.vue
View file @
5858202
...
...
@@ -64,7 +64,7 @@ export default {
watch
:
{
yjsqOptions
:
{
handler
(
val
)
{
this
.
add
(
val
);
this
.
add
(
val
.
opinion
);
},
deep
:
true
,
immediate
:
true
,
...
...
src/views/djbworkflow/djbBook/spyj.vue
View file @
5858202
...
...
@@ -102,7 +102,7 @@ export default {
this
.
add
(
""
);
this
.
monitor
=
false
}
else
{
this
.
add
(
val
);
this
.
add
(
val
.
opinion
);
}
},
deep
:
true
,
...
...
src/views/workflow/components/dialog/commonOpinion.vue
View file @
5858202
...
...
@@ -144,7 +144,7 @@
* @author: renchao
*/
useCommonOpinion
(
item
)
{
store
.
dispatch
(
'workflow/setOptions'
,
item
.
opinion
);
store
.
dispatch
(
'workflow/setOptions'
,
item
);
this
.
$popupCacel
()
},
//删除常用意见
...
...
src/views/workflow/components/spyj.vue
View file @
5858202
...
...
@@ -93,7 +93,7 @@ export default {
watch
:
{
yjsqOptions
:
{
handler
(
val
)
{
this
.
add
(
val
);
this
.
add
(
val
.
opinion
);
},
deep
:
true
,
immediate
:
true
,
...
...
src/views/ywbl/slsqxx/fdcq1/slxx.vue
View file @
5858202
...
...
@@ -107,12 +107,12 @@
<el-row
:gutter=
"10"
v-if=
"ruleForm.fdcq1"
>
<el-col
:span=
"8"
>
<el-form-item
label=
"独用土地面积:"
>
<el-input
v-model=
"ruleForm.fdcq1.dytdmj"
></el-input>
<el-input
:disabled=
"!viewEdit"
v-model=
"ruleForm.fdcq1.dytdmj"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"分摊土地面积:"
>
<el-input
v-model=
"ruleForm.fdcq1.fttdmj"
></el-input>
<el-input
:disabled=
"!viewEdit"
v-model=
"ruleForm.fdcq1.fttdmj"
></el-input>
</el-form-item>
</el-col>
...
...
@@ -120,11 +120,12 @@
<el-form-item
label=
"房地产交易价格:"
>
<div
class=
"flex"
>
<el-input
:disabled=
"!viewEdit"
v-model=
"ruleForm.fdcq1.fdcjyjg"
style=
"width: 500%"
oninput=
"value = (value.match(/^\d*(\.?\d
{0,2})/g)[0]) || null"
>
</el-input>
<el-select
v-model=
"ruleForm.fdcq1.jedw"
>
<el-select
:disabled=
"!viewEdit"
v-model=
"ruleForm.fdcq1.jedw"
>
<el-option
v-for=
"item in dictData['A57']"
:key=
"item.dcode"
...
...
@@ -140,6 +141,7 @@
<el-col
:span=
"24"
>
<el-form-item
label=
"附记:"
>
<el-input
:disabled=
"!viewEdit"
v-model=
"ruleForm.fdcq1.fj"
type=
"textarea"
maxlength=
"500"
...
...
Please
register
or
sign in
to post a comment