Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
liangzhen
/
framework-tools-web
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 b829d916
authored
May 27, 2024
by
xiehao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add:新增项目金额和项目启动时间
1 parent
bc34a96a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
0 deletions
src/views/projectInfoManage/index.vue
src/views/projectInfoManage/index.vue
View file @
b829d91
...
...
@@ -176,6 +176,17 @@
</el-table-column>
<el-table-column
prop=
"projectManager"
label=
"项目经理"
align=
"center"
/>
<el-table-column
prop=
"projAmount"
label=
"项目金额"
align=
"right"
>
<
template
slot-scope=
"scope"
>
<span
style=
"font-weight: bold"
>
{{
scope
.
row
.
projAmount
|
formatMoney
}}
</span>
</
template
>
</el-table-column>
<!--项目启动日期-->
<el-table-column
prop=
"projectInitiationTime"
label=
"项目启动日期"
align=
"center"
>
<
template
slot-scope=
"scope"
>
<span>
{{
scope
.
row
.
projectInitiationTime
|
formatTime
}}
</span>
</
template
>
</el-table-column>
<el-table-column
prop=
"createTime"
label=
"创建时间"
width=
"120"
align=
"center"
/>
<el-table-column
label=
"操作"
width=
"200"
align=
"center"
>
<
template
slot-scope=
"scope"
>
...
...
@@ -255,6 +266,25 @@
maxlength=
"100"
></el-input>
</el-form-item>
<!--项目金额-只可以输入金额-->
<el-form-item
label=
"项目金额:"
prop=
"let6"
style=
"width: 30%"
>
<el-input
v-model=
"ruleForm.let6"
maxlength=
"100"
placeholder=
"请输入金额"
@
input=
"ruleForm.let6 = ruleForm.let6.replace(/[^\d.]/g,'')"
></el-input>
</el-form-item>
<!--项目启动时间-->
<el-form-item
label=
"项目启动时间:"
prop=
"let7"
style=
"width: 30%"
>
<el-date-picker
v-model=
"ruleForm.let7"
type=
"date"
placeholder=
"选择日期"
value-format=
"yyyy-MM-dd"
format=
"yyyy-MM-dd"
></el-date-picker>
</el-form-item>
<el-form-item
label=
"是否续建:"
prop=
"let3"
style=
"width: 30%"
>
<el-select
v-model=
"ruleForm.let3"
clearable
placeholder=
"请选择"
>
<el-option
label=
"是"
:value=
"2"
></el-option>
...
...
@@ -750,6 +780,8 @@ export default {
let3
:
null
,
let4
:
null
,
let5
:
null
,
let6
:
null
,
let7
:
null
,
},
rules
:
{
let1
:
[{
required
:
true
,
message
:
'请选择关联系统'
,
trigger
:
'blur'
}],
...
...
@@ -1240,6 +1272,8 @@ export default {
buildType
,
manageDeptId
,
manageOrgId
,
projAmount
:
this
.
ruleForm
.
let6
,
projectInitiationTime
:
this
.
ruleForm
.
let7
,
prjName
:
this
.
ruleForm
.
let2
,
prjPlanClass
:
this
.
ruleForm
.
let3
,
filesValue
,
...
...
Write
Preview
Markdown
is supported
Attach a file
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 post a comment