Liuqi před 6 roky
rodič
revize
2b2daaf82a

binární
src/dashoo.cn/backend/api/static/limsdoc/dataentry/template/word/tmp_1573787957.docx


binární
src/dashoo.cn/backend/api/static/limsdoc/dataentry/template/word/tmp_1573787958.docx


+ 16 - 0
src/dashoo.cn/frontend_web/src/pages/select/components/subfilelist.vue

@@ -25,6 +25,11 @@
       </div>
       <el-table :data="subfileList" border size="mini">
         <el-table-column prop="NeedFileType" label="资质名称" show-overflow-tooltip></el-table-column>
+        <el-table-column label="资质类别" show-overflow-tooltip>
+          <template slot-scope="scope">
+            {{ SupplierTypeCode(scope.row.SupplierTypeCode+'') }}
+          </template>
+        </el-table-column>
         <el-table-column prop="FileUrlList" label="资质文件" show-overflow-tooltip>
           <template slot-scope="scope">
             <div v-for="(tmpUrl, index) in scope.row.FileUrlList">
@@ -170,6 +175,17 @@
           return val.substring(0, 10)
         }
       },
+      SupplierTypeCode(val){
+        if (val === '000') {
+          return '公用文件'
+        } else if (val === '01') {
+          return '物资类'
+        } else if (val === '02') {
+          return '基建类'
+        } else if (val === '03') {
+          return '技术服务类'
+        }
+      },
       handleCurrentChange (value) {
         this.currentPage = value
         this.getbusList()