walter 9 months ago
parent
commit
0be417382d
1 changed files with 4 additions and 2 deletions
  1. 4 2
      src/point/views/workbench/grade/apply_list.vue

+ 4 - 2
src/point/views/workbench/grade/apply_list.vue

@@ -7,6 +7,7 @@
     </el-tabs>
     <div style="margin-bottom: 15px;" class="flex-box-ce flex-d-center">
         <el-button type="primary" @click="dialogVisible = true">申请积分</el-button>
+        <el-button type="primary" @click="showIntegralApply = true">申请积分B</el-button>
         <el-input style="width: 250px;" v-model="formData.keyword" placeholder="输入申请内容" maxlength="10" clearable></el-input>
     </div>
 
@@ -142,11 +143,11 @@
     </el-drawer>
 
     <applicationIntegrationPopup title="申请积分" :visible.sync="dialogVisible"></applicationIntegrationPopup>
+    <IntegralApplyPopup :visible.sync="showIntegralApply"/>
   </div>
 </template>
 
 <script>
-import moment from "moment";
 import Steps from '@/components/Steps.vue';
 import applicationIntegrationPopup from "@/point/views/common/applicationIntegrationPopup";
 import {_debounce} from '@/utils/auth';
@@ -172,13 +173,14 @@ export default {
       },
       cx_loading:false,
       dialogVisible: false,
+      showIntegralApply: false,
       itemIndex: 0,
       selectId:0,
     };
   },
   components: {
     applicationIntegrationPopup,
-    Steps
+    Steps,
   },
   watch: {
     'formData.keyword':_debounce(function(val){