ZaiZai 3 months ago
parent
commit
5ef3988187
1 changed files with 6 additions and 1 deletions
  1. 6 1
      src/views/project/list/edit-formula.vue

+ 6 - 1
src/views/project/list/edit-formula.vue

@@ -130,7 +130,7 @@
                         <el-select v-model="contractId" filterable clearable class="mr-14px w-200px" placeholder="请选择合同段">
                             <el-option v-for="item in contractList" :key="item.id" :label="item.contractName" :value="item.id" />
                         </el-select>
-                        <el-button type="info">查询</el-button>
+                        <el-button type="info" @click="projectQueryClick">查询</el-button>
                     </div>
                 </div>
             </div>
@@ -607,6 +607,11 @@ const projectChange = async () => {
     contractList.value = getArrValue(data)
 }
 
+//项目查询
+const projectQueryClick = () => {
+    console.log('原来就没做这个功能')
+}
+
 //关闭抽屉
 const drawerClose = () => {
     isShow.value = false