liuxiangqi пре 1 година
родитељ
комит
4a509ef999

+ 32 - 33
src/views/enterprise/ent/info.vue

@@ -3,10 +3,10 @@
     <i v-if="info.authState == 1" class="entIcon audit"></i>
     <i v-if="info.authState == 2" class="entIcon pass"></i>
     <i v-if="info.authState == 3" class="entIcon refuse"></i>
-    <h3 class="toolbar">
-      <span class="title">企业信息</span>
-    </h3>
     <table class="table_view">
+      <th colspan="4" class="th_title">
+        企业信息
+      </th>
       <tr>
         <th>企业名称</th>
         <td>{{info.entName}}</td>
@@ -38,10 +38,10 @@
         <td>{{info.taxOffice}}</td>
       </tr>
     </table>
-    <h3 class="toolbar">
-      <span class="title">法人信息</span>
-    </h3>
     <table class="table_view">
+      <th colspan="4" class="th_title">
+        法人信息
+      </th>
       <tr>
         <th>姓名</th>
         <td>{{info.legalName}}</td>
@@ -61,10 +61,10 @@
         <td>{{info.legalEmail}}</td>
       </tr>
     </table>
-    <h3 class="toolbar">
-      <span class="title">联系人信息</span>
-    </h3>
     <table class="table_view">
+      <th colspan="4" class="th_title">
+        联系人信息
+      </th>
       <tr>
         <th>姓名</th>
         <td>{{info.linkName}}</td>
@@ -84,10 +84,10 @@
         <td>{{info.linkEmail}}</td>
       </tr>
     </table>
-    <h3 class="toolbar">
-      <span class="title">企业上市信息</span>
-    </h3>
     <table class="table_view">
+      <th colspan="4" class="th_title">
+        企业上市信息
+      </th>
       <tr>
         <th>企业是否上市</th>
         <td>{{listedFlag}}</td>
@@ -95,10 +95,10 @@
         <td>{{info.listingCode}}</td>
       </tr>
     </table>
-    <h3 class="toolbar">
-      <span class="title">风险投资信息</span>
-    </h3>
     <table class="table_view">
+      <th colspan="4" class="th_title">
+        风险投资信息
+      </th>
       <tr>
         <th>是否引入风险投资</th>
         <td>{{investFlag}}</td>
@@ -106,10 +106,10 @@
         <td>{{info.investCapital}}</td>
       </tr>
     </table>
-    <h3 class="toolbar">
-      <span class="title">高新企业</span>
-    </h3>
     <table class="table_view">
+      <th colspan="4" class="th_title">
+        高新信息
+      </th>
       <tr>
         <th>是否为高新企业</th>
         <td>{{techFlag}}</td>
@@ -117,23 +117,23 @@
         <td>{{info.techCode}}</td>
       </tr>
     </table>
-    <h3 class="toolbar">
-      <span class="title">上年度是否做加计扣除</span>
-    </h3>
     <table class="table_view">
+      <th colspan="4" class="th_title">
+        上年度是否做加计扣除
+      </th>
       <tr>
         <th>上年度是否做加计扣除</th>
         <td>{{deductionFlag}}</td>
       </tr>
     </table>
-    <h3 class="toolbar">
-      <span class="title">附件</span>
-    </h3>
     <table class="table_view">
+      <th colspan="4" class="th_title">
+        附件
+      </th>
       <tr>
         <th>企业营业执照</th>
         <td>
-          <a class="link" :href="info.licensePath" target="_blank" v-if="info.licensePath">企业营业执照</a>
+          <a class="link" :href="info.licensePath" target="_blank">企业营业执照</a>
         </td>
         <th>其他附件</th>
         <td>
@@ -143,26 +143,25 @@
         </td>
       </tr>
     </table>
-    <h3 class="toolbar">
-      <span class="title">文件水印</span>
-    </h3>
     <table class="table_view">
+      <th colspan="4" class="th_title">
+        文件水印
+      </th>
       <tr>
         <th>公司logo</th>
         <td>
-          <a class="link" :href="info.logo" target="_blank" v-if="info.logo">公司logo</a>
-          <!-- <img :src="info.logo" alt="logo"> -->
+          <a class="link" :href="info.logo" target="_blank">公司logo</a>
         </td>
       </tr>
     </table>
     <div class="oper">
       <el-button @click="cancel" v-if="type == 'view' || type == 'audit'">返回</el-button>
       <template v-if="info.authState == '1' && type == 'audit'">
-        <el-button @click="handleAudit">通过审核</el-button>
-        <el-button @click="handleRefuse">驳回</el-button>
+        <el-button @click="handleAudit" type="primary">审核通过</el-button>
+        <el-button @click="handleRefuse" type="danger">审核驳回</el-button>
       </template>
       <template v-if="(type == 'update') && info.authState == '1'">
-        <el-button @click="handleUpdate">修改</el-button>
+        <el-button @click="handleUpdate" type="danger">修改</el-button>
       </template>
     </div>
     <audit-ent v-if="auditEntVisible" ref="auditEnt" @refreshData="getData()"></audit-ent>

+ 20 - 20
src/views/enterprise/project/components/enclosure-edit.vue

@@ -31,8 +31,8 @@
                         <a :href="item.url">{{item.fileName}}</a>
                       </el-col>
                       <el-col :span="12">
-                        <el-button type="primary"  icon="el-icon-upload2" size="mini" @click="handleDownload(item.id)">下载</el-button>
-                        <el-button type="primary"  icon="el-icon-upload2" size="mini" @click="handleDelete(item.id)" v-if="techFlag">删除</el-button>
+                        <el-button type="primary"  icon="el-icon-download" size="mini" @click="handleDownload(item.id)">下载</el-button>
+                        <el-button type="primary"  icon="el-icon-delete" size="mini" @click="handleDelete(item.id)" v-if="techFlag">删除</el-button>
                       </el-col>
                     </el-row>
                   </li>
@@ -66,8 +66,8 @@
                     <a :href="item.url">{{item.fileName}}</a>
                   </el-col>
                   <el-col :span="12">
-                    <el-button type="primary"  icon="el-icon-upload2" size="mini" @click="handleDownload(item.id)">下载</el-button>
-                    <el-button type="primary"  icon="el-icon-upload2" size="mini" @click="handleDelete(item.id)" v-if="techFlag">删除</el-button>
+                    <el-button type="primary"  icon="el-icon-download" size="mini" @click="handleDownload(item.id)">下载</el-button>
+                    <el-button type="primary"  icon="el-icon-delete" size="mini" @click="handleDelete(item.id)" v-if="techFlag">删除</el-button>
                   </el-col>
                 </el-row>
               </li>
@@ -99,8 +99,8 @@
                     <a :href="item.url">{{item.fileName}}</a>
                   </el-col>
                   <el-col :span="12">
-                    <el-button type="primary"  icon="el-icon-upload2" size="mini" @click="handleDownload(item.id)">下载</el-button>
-                    <el-button type="primary"  icon="el-icon-upload2" size="mini" @click="handleDelete(item.id)" v-if="techFlag">删除</el-button>
+                    <el-button type="primary"  icon="el-icon-download" size="mini" @click="handleDownload(item.id)">下载</el-button>
+                    <el-button type="primary"  icon="el-icon-delete" size="mini" @click="handleDelete(item.id)" v-if="techFlag">删除</el-button>
                   </el-col>
                 </el-row>
               </li>
@@ -133,8 +133,8 @@
                     <a :href="item.url">{{item.fileName}}</a>
                   </el-col>
                   <el-col :span="12">
-                    <el-button type="primary"  icon="el-icon-upload2" size="mini" @click="handleDownload(item.id)">下载</el-button>
-                    <el-button type="primary"  icon="el-icon-upload2" size="mini" @click="handleDelete(item.id)" v-if="techFlag">删除</el-button>
+                    <el-button type="primary"  icon="el-icon-download" size="mini" @click="handleDownload(item.id)">下载</el-button>
+                    <el-button type="primary"  icon="el-icon-delete" size="mini" @click="handleDelete(item.id)" v-if="techFlag">删除</el-button>
                   </el-col>
                 </el-row>
               </li>
@@ -163,8 +163,8 @@
                     <a :href="item.url">{{item.fileName}}</a>
                   </el-col>
                   <el-col :span="12">
-                    <el-button type="primary"  icon="el-icon-upload2" size="mini" @click="handleDownload(item.id)">下载</el-button>
-                    <el-button type="primary"  icon="el-icon-upload2" size="mini" @click="handleDelete(item.id)" v-if="techFlag">删除</el-button>
+                    <el-button type="primary"  icon="el-icon-download" size="mini" @click="handleDownload(item.id)">下载</el-button>
+                    <el-button type="primary"  icon="el-icon-delete" size="mini" @click="handleDelete(item.id)" v-if="techFlag">删除</el-button>
                   </el-col>
                 </el-row>
               </li>
@@ -195,8 +195,8 @@
                     <a :href="item.url">{{item.fileName}}</a>
                   </el-col>
                   <el-col :span="12">
-                    <el-button type="primary"  icon="el-icon-upload2" size="mini" @click="handleDownload(item.id)">下载</el-button>
-                    <el-button type="primary"  icon="el-icon-upload2" size="mini" @click="handleDelete(item.id)" v-if="techFlag">删除</el-button>
+                    <el-button type="primary"  icon="el-icon-download" size="mini" @click="handleDownload(item.id)">下载</el-button>
+                    <el-button type="primary"  icon="el-icon-delete" size="mini" @click="handleDelete(item.id)" v-if="techFlag">删除</el-button>
                   </el-col>
                 </el-row>
               </li>
@@ -225,8 +225,8 @@
                     <a :href="item.url">{{item.fileName}}</a>
                   </el-col>
                   <el-col :span="12">
-                    <el-button type="primary"  icon="el-icon-upload2" size="mini" @click="handleDownload(item.id)">下载</el-button>
-                    <el-button type="primary"  icon="el-icon-upload2" size="mini" @click="handleDelete(item.id)" v-if="techFlag">删除</el-button>
+                    <el-button type="primary"  icon="el-icon-download" size="mini" @click="handleDownload(item.id)">下载</el-button>
+                    <el-button type="primary"  icon="el-icon-delete" size="mini" @click="handleDelete(item.id)" v-if="techFlag">删除</el-button>
                   </el-col>
                 </el-row>
               </li>
@@ -257,8 +257,8 @@
                     <a :href="item.url">{{item.fileName}}</a>
                   </el-col>
                   <el-col :span="12">
-                    <el-button type="primary"  icon="el-icon-upload2" size="mini" @click="handleDownload(item.id)">下载</el-button>
-                    <el-button type="primary"  icon="el-icon-upload2" size="mini" @click="handleDelete(item.id)" v-if="finFlag">删除</el-button>
+                    <el-button type="primary"  icon="el-icon-download" size="mini" @click="handleDownload(item.id)">下载</el-button>
+                    <el-button type="primary"  icon="el-icon-delete" size="mini" @click="handleDelete(item.id)" v-if="finFlag">删除</el-button>
                   </el-col>
                 </el-row>
               </li>
@@ -287,8 +287,8 @@
                     <a :href="item.url">{{item.fileName}}</a>
                   </el-col>
                   <el-col :span="12">
-                    <el-button type="primary"  icon="el-icon-upload2" size="mini" @click="handleDownload(item.id)">下载</el-button>
-                    <el-button type="primary"  icon="el-icon-upload2" size="mini" @click="handleDelete(item.id)" v-if="finFlag">删除</el-button>
+                    <el-button type="primary"  icon="el-icon-download" size="mini" @click="handleDownload(item.id)">下载</el-button>
+                    <el-button type="primary"  icon="el-icon-delete" size="mini" @click="handleDelete(item.id)" v-if="finFlag">删除</el-button>
                   </el-col>
                 </el-row>
               </li>
@@ -317,8 +317,8 @@
                     <a :href="item.url">{{item.fileName}}</a>
                   </el-col>
                   <el-col :span="12">
-                    <el-button type="primary"  icon="el-icon-upload2" size="mini" @click="handleDownload(item.id)">下载</el-button>
-                    <el-button type="primary"  icon="el-icon-upload2" size="mini" @click="handleDelete(item.id)" v-if="finFlag">删除</el-button>
+                    <el-button type="primary"  icon="el-icon-download" size="mini" @click="handleDownload(item.id)">下载</el-button>
+                    <el-button type="primary"  icon="el-icon-delete" size="mini" @click="handleDelete(item.id)" v-if="finFlag">删除</el-button>
                   </el-col>
                 </el-row>
               </li>

+ 2 - 2
src/views/enterprise/project/edit.vue

@@ -12,8 +12,8 @@
       </el-tab-pane>
     </el-tabs>
     <div class="oper" v-if="oper == 'audit'">
-      <el-button @click="handleAudit('4')" type="primary">通过审核</el-button>
-      <el-button @click="handleAudit('1')" type="danger">驳回</el-button>
+      <el-button @click="handleAudit('4')" type="primary">审核通过</el-button>
+      <el-button @click="handleAudit('1')" type="danger">审核驳回</el-button>
     </div>
   </div>
 </template>