瀏覽代碼

feat: feat

刘洋 7 月之前
父節點
當前提交
b7e63abb59
共有 2 個文件被更改,包括 12 次插入2 次删除
  1. 2 2
      .env.development
  2. 10 0
      src/views/order/order-record-manage/index.vue

+ 2 - 2
.env.development

@@ -1,2 +1,2 @@
-VUE_APP_DEV_PROXY='http://192.168.10.41:8080'
-# VUE_APP_DEV_PROXY='http://192.168.11.199:8080'
+# VUE_APP_DEV_PROXY='http://192.168.10.41:8080'
+VUE_APP_DEV_PROXY='http://apply-test.qmth.com.cn'

+ 10 - 0
src/views/order/order-record-manage/index.vue

@@ -75,6 +75,10 @@
         <template #icon> <svg-icon name="icon-print" /> </template>
         导出预约情况表
       </a-button>
+      <a-button type="text" @click="examSiteRecordsTplDownload">
+        <template #icon> <svg-icon name="icon-print" /> </template>
+        考场记录表模板下载
+      </a-button>
     </a-space>
     <a-table
       class="page-table"
@@ -321,4 +325,10 @@
       Message.success('导出中,请到"我的任务"中查看');
     });
   };
+
+  const examSiteRecordsTplDownload = () => {
+    window.open(
+      'https://apply-file.qmth.com.cn/temp/%E8%80%83%E5%9C%BA%E8%AE%B0%E5%BD%95%E8%A1%A8%E6%A8%A1%E6%9D%BF.doc'
+    );
+  };
 </script>