Commit 23022360 authored by wangxl's avatar wangxl

33333

parent 1b6c0107
......@@ -16,6 +16,9 @@
<a-form-item>
<a-input placeholder="项目编号" v-model="searchForm.projNo" :maxLength="100" style="width: 150px" />
</a-form-item>
<a-form-item>
<base-select v-model="searchForm.projClass" :title="'项目类别'" :type="17" :isAll="true" :width="150" />
</a-form-item>
<a-form-item label="评分刷选">
<a-input-number v-model="searchForm.scoreStart" :min="0" :step="0.01" style="width: 60px" />
~
......
......@@ -106,8 +106,18 @@ export default {
case 16:
this.getSexSelect()
break;
case 17:
this.geProjClassSelect()
break;
}
},
geProjClassSelect () {
let arr = []
arr.push({ title: '一般项目', key: '1' })
arr.push({ title: '重点项目', key: '2' })
this.selectArray = arr
this.loadValue()
},
getIsSelect () {
let arr = []
arr.push({ title: '是', key: '1' })
......
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