[update] 修改bug80038

This commit is contained in:
lideqin
2024-01-08 09:53:28 +08:00
parent 090070f242
commit 1420c5a51e
3 changed files with 6 additions and 6 deletions
@@ -66,7 +66,7 @@
:filter-option="filterOption"
v-decorator="[ 'project', validatorRules.project]">
<a-select-option :value="undefined" :key="-1">请选择</a-select-option>
<a-select-option v-for="item in projectList" :value="item.id" :key="item.id">{{ item.projectName }}</a-select-option>
<a-select-option v-for="item in projectList" :value="item.id" :key="item.id" :title="item.projectName">{{ item.projectName }}</a-select-option>
</a-select>
</a-form-item>
</a-col>
@@ -208,7 +208,7 @@ export default {
},
// 获取项目下拉框数据
getCarTypeProjectList () {
getCarTypeProjectList().then(res => {
getCarTypeProjectList({ column: 'createTime', order: 'desc' }).then(res => {
if (res.success) {
this.projectList = res.result
} else {