Commit 93f81bf9 by Kyle_Li

fix: 文案修改

parent e3190b2d
......@@ -2,7 +2,7 @@
<div id="month-target">
<div class="target-box" v-for="item in tableData" :key="item.num">
<header>{{ item.head }}</header>
<div :class="{ content: true, red: isTrue(item) }">
<div :class="{ content: true, red: isTrue(item), noIcon }">
<span v-if="isBatch && (isPreMonth(item) || isLastThree(item.num))">无需设置</span>
<el-input-number
v-else
......@@ -54,6 +54,10 @@ export default {
isPrecision: { // 小数点
type: Boolean,
default: false
},
noIcon: { // 不要¥
type: Boolean,
default: false
}
},
data() {
......@@ -165,5 +169,8 @@ export default {
padding-left: 30px;
}
}
.noIcon .el-input-number::before {
content: '';
}
}
</style>
\ No newline at end of file
......@@ -70,6 +70,7 @@
:is-batch="edit === '2'"
:year="form.performanceYear"
:data="addMemberCallback"
no-icon
@change="val => monthTargetChange(val, 'addMemberVal')" />
</el-form-item>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment