fix(项目设置): 修复选择时间创建新条目有重复值问题

--user=郭雨琦 修复选择时间创建新条目有重复值问题
This commit is contained in:
guoyuqi 2022-02-18 15:32:45 +08:00 committed by 刘瑞斌
parent 90f4bed539
commit 67c4bd52ab
1 changed files with 7 additions and 2 deletions

View File

@ -7,7 +7,7 @@
<div class="timing_name" v-if="!shareLink">{{ $t('project.keep_recent') }}</div> <div class="timing_name" v-if="!shareLink">{{ $t('project.keep_recent') }}</div>
</el-col> </el-col>
<el-col :span="16"> <el-col :span="16">
<el-select v-model="selfQuantity" placeholder=" " size="mini" filterable <el-select v-model="selfQuantity" placeholder=" " size="mini" filterable default-first-option
allow-create allow-create
class="timing_select" :disabled="selfChoose"> class="timing_select" :disabled="selfChoose">
<el-option <el-option
@ -96,7 +96,12 @@ export default {
selfUnit: "", selfUnit: "",
selfChoose: this.choose, selfChoose: this.choose,
selfExpr: this.expr, selfExpr: this.expr,
quantityOptions: 31, quantityOptions: [
"1","2","3","4","5","6","7","8","9","10",
"11","12","13","14","15","16","17","18","19","20",
"21","22","23","24","25","26","27","28","29","30",
"31"
],
} }
}, },
methods: { methods: {