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
d58910c8
authored
2024-01-17 14:30:47 +0800
by
renchao@pashanhoo.com
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style:证明
1 parent
416fbc94
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
49 additions
and
60 deletions
src/views/workflow/components/dialog/zsyl.vue
src/views/ywbl/ywsq/components/selectJsydsyq.vue
src/views/ywbl/ywsq/components/selectQjzdjbxx.vue
src/views/ywbl/ywsq/components/selectTdsyq.vue
src/views/ywbl/ywsq/javascript/publicDefaultPar.js
src/views/workflow/components/dialog/zsyl.vue
View file @
d58910c
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2024-01-17 1
0:32:29
* @LastEditTime: 2024-01-17 1
4:28:40
-->
<
template
>
<div
class=
"from-clues loadingtext"
v-Loading=
"loading"
element-loading-text=
"拼命加载中..."
style=
"text-align: center;"
>
...
...
@@ -480,49 +480,8 @@
})
}
// 义务人
let
ywrlines
=
this
.
bdcqz
.
ywr
?
this
.
bdcqz
.
ywr
.
split
(
' '
)
:
[];
if
(
getByteLen
(
this
.
bdcqz
.
ywr
)
>
37
)
{
ywrlines
.
forEach
((
line
,
index
)
=>
{
let
currentLine
=
''
;
let
arr
=
[];
for
(
let
word
of
line
)
{
const
testLine
=
currentLine
+
word
;
const
lineWidth
=
context
.
measureText
(
testLine
).
width
;
if
(
lineWidth
<=
295
)
{
currentLine
=
testLine
;
}
else
{
arr
.
push
(
currentLine
);
currentLine
=
word
;
}
}
arr
.
push
(
currentLine
);
arr
.
forEach
((
line
,
index
)
=>
{
context
.
fillText
(
line
,
775
,
265
+
(
index
*
20
));
// 调整行高
})
})
}
else
{
ywrlines
.
forEach
((
line
,
index
)
=>
{
let
currentLine
=
''
;
let
arr
=
[];
for
(
let
word
of
line
)
{
const
testLine
=
currentLine
+
word
;
const
lineWidth
=
context
.
measureText
(
testLine
).
width
;
if
(
lineWidth
<=
295
)
{
currentLine
=
testLine
;
}
else
{
arr
.
push
(
currentLine
);
currentLine
=
word
;
}
}
arr
.
push
(
currentLine
);
arr
.
forEach
((
line
,
index
)
=>
{
context
.
fillText
(
line
,
775
,
275
+
(
index
*
20
));
// 调整行高
})
})
}
context
.
fillText
(
this
.
bdcqz
.
ywr
?
this
.
bdcqz
.
ywr
:
''
,
775
,
275
);
// context.fillText(this.bdcqz.zl ? this.bdcqz.zl : '', 775, 325);
let
lines2
=
this
.
bdcqz
.
zl
?
this
.
bdcqz
.
zl
.
split
(
' '
)
:
[];
...
...
src/views/ywbl/ywsq/components/selectJsydsyq.vue
View file @
d58910c
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2024-01-17 1
0:00:4
1
* @LastEditTime: 2024-01-17 1
4:18:0
1
-->
<
template
>
<div
class=
"from-clues"
>
...
...
@@ -15,12 +15,18 @@
</el-input>
</el-form-item>
</el-col>
<el-col
:span=
"
10
"
>
<el-col
:span=
"
8
"
>
<el-form-item
label=
"不动产权证号"
>
<el-input
placeholder=
"请输入不动产权证号"
v-model=
"queryForm.bdcqzh"
clearable
class=
"width100"
>
</el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"坐落"
>
<el-input
placeholder=
"请输入坐落"
v-model
.
trim=
"queryForm.zl"
clearable
class=
"width100"
>
</el-input>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col
:span=
"8"
>
...
...
@@ -29,13 +35,13 @@
</el-input>
</el-form-item>
</el-col>
<el-col
:span=
"
10
"
>
<el-form-item
label=
"
坐落
"
>
<el-input
placeholder=
"请输入
坐落"
v-model
.
trim=
"queryForm.zl
"
clearable
class=
"width100"
>
<el-col
:span=
"
8
"
>
<el-form-item
label=
"
证件号
"
>
<el-input
placeholder=
"请输入
证件号"
v-model=
"queryForm.zjh
"
clearable
class=
"width100"
>
</el-input>
</el-form-item>
</el-col>
<el-col
:span=
"
6
"
class=
"btnColRight"
>
<el-col
:span=
"
8
"
class=
"btnColRight"
>
<el-form-item>
<el-button
type=
"primary"
@
click=
"handleSearch"
>
查询
</el-button>
<el-button
type=
"primary"
@
click=
"resetForm(true)"
>
重置
</el-button>
...
...
src/views/ywbl/ywsq/components/selectQjzdjbxx.vue
View file @
d58910c
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2024-01-17 1
3:26:03
* @LastEditTime: 2024-01-17 1
4:17:17
-->
<
template
>
<div
class=
"from-clues"
>
...
...
@@ -10,7 +10,7 @@
<el-form
:model=
"queryForm"
ref=
"queryForm"
>
<el-row
:gutter=
"20"
>
<el-col
:span=
"6"
>
<el-form-item
label=
"宗地代码"
>
<el-form-item
label=
"宗地代码"
label-width=
"80px"
>
<el-input
placeholder=
"请输入宗地代码"
maxlength=
"19"
v-model=
"queryForm.zddm"
clearable
class=
"width100"
>
</el-input>
</el-form-item>
...
...
@@ -27,9 +27,24 @@
</el-input>
</el-form-item>
</el-col>
<el-col
:span=
"6"
class=
"btnColRight"
>
<el-col
:span=
"6"
>
<el-form-item
label=
"权利人"
>
<el-input
placeholder=
"请输入权利人"
v-model
.
trim=
"queryForm.qlr"
clearable
class=
"width100"
>
</el-input>
</el-form-item>
</el-col>
</el-row>
<el-row
:gutter=
"20"
>
<el-col
:span=
"6"
>
<el-form-item
label=
"证件号"
label-width=
"80px"
>
<el-input
placeholder=
"请输入证件号"
v-model=
"queryForm.zjh"
clearable
class=
"width100"
>
</el-input>
</el-form-item>
</el-col>
<el-col
:span=
"18"
class=
"btnColRight"
>
<el-form-item>
<el-button
type=
"primary"
@
click=
"handleSearch"
>
查询
</el-button>
<el-button
type=
"primary"
@
click=
"resetForm(true)"
>
重置
</el-button>
</el-form-item>
</el-col>
</el-row>
...
...
@@ -75,8 +90,8 @@
columns
:
datas
.
columns
(),
data
:
[],
},
bdcdysz
:
[]
,
}
;
bdcdysz
:
[]
}
},
mounted
()
{
sendThis
(
this
);
...
...
src/views/ywbl/ywsq/components/selectTdsyq.vue
View file @
d58910c
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 202
3-11-16 14:00:39
* @LastEditTime: 202
4-01-17 14:17:21
-->
<
template
>
<div
class=
"from-clues"
>
...
...
@@ -15,12 +15,19 @@
</el-input>
</el-form-item>
</el-col>
<el-col
:span=
"
10
"
>
<el-col
:span=
"
8
"
>
<el-form-item
label=
"不动产权证号"
>
<el-input
placeholder=
"请输入不动产权证号"
v-model=
"queryForm.bdcqzh"
clearable
class=
"width100"
>
</el-input>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"坐落"
>
<el-input
placeholder=
"请输入坐落"
v-model
.
trim=
"queryForm.zl"
clearable
class=
"width100"
>
</el-input>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col
:span=
"8"
>
...
...
@@ -29,13 +36,13 @@
</el-input>
</el-form-item>
</el-col>
<el-col
:span=
"
10
"
>
<el-form-item
label=
"
坐落
"
>
<el-input
placeholder=
"请输入
坐落"
v-model
.
trim=
"queryForm.zl
"
clearable
class=
"width100"
>
<el-col
:span=
"
8
"
>
<el-form-item
label=
"
证件号
"
>
<el-input
placeholder=
"请输入
证件号"
v-model=
"queryForm.zjh
"
clearable
class=
"width100"
>
</el-input>
</el-form-item>
</el-col>
<el-col
:span=
"
6
"
class=
"btnColRight"
>
<el-col
:span=
"
8
"
class=
"btnColRight"
>
<el-form-item>
<el-button
type=
"primary"
@
click=
"handleSearch"
>
查询
</el-button>
<el-button
type=
"primary"
@
click=
"resetForm(true)"
>
重置
</el-button>
...
...
src/views/ywbl/ywsq/javascript/publicDefaultPar.js
View file @
d58910c
...
...
@@ -23,6 +23,8 @@ class data extends filter {
bdcqzh
:
""
,
fwfl
:
""
,
zl
:
""
,
qlr
:
""
,
zjh
:
""
}
}
}
...
...
Please
register
or
sign in
to post a comment