Quellcode durchsuchen

修复招聘显示问题,商品重复编辑不显示品牌问题

udream-cxs vor 4 Jahren
Ursprung
Commit
c994e206cb

+ 4 - 2
src/apps/mobile/components/brandLongSerch/index.vue

@@ -19,10 +19,12 @@ export default {
             default: null,
         },
     },
-    created() {},
+    created() {
+        
+    },
     data() {
         return {
-            brand: `${this.brandName}`,
+            brand: `${this.brandName}`
         };
     },
     methods: {

+ 8 - 8
src/apps/mobile/filters/filters.js

@@ -204,13 +204,13 @@ Vue.filter('caseStatusPipe', (status, type) => {
                 str = '已接单'
                 break
             case 3:
-                str = '专家确认完成'
+                str = '用户待确认'
                 break
             case 4:
-                str = '用户确认完成'
+                str = '待归档'
                 break
             case 5:
-                str = '待归档'
+                str = '待评价'
                 break
             case 6:
                 str = '已完成'
@@ -230,19 +230,19 @@ Vue.filter('caseStatusPipe', (status, type) => {
                 str = '待接单'
                 break
             case 1:
-                str = '已接单'
+                str = '待报价'
                 break
             case 2:
-                str = '待付款'
+                str = '用户待付款'
                 break
             case 3:
-                str = '已付款'
+                str = '待打卡'
                 break
             case 4:
-                str = '专家确认完成'
+                str = '用户待确认'
                 break
             case 5:
-                str = '用户确认完成'
+                str = '待评价'
                 break
             case 6:
                 str = '已完成'

+ 5 - 4
src/apps/mobile/views/monitoring-center-bank/index.vue

@@ -61,10 +61,11 @@
                     </el-table-column>
                     <el-table-column prop="statuz" label="诊单状态">
                         <template slot-scope="scope">
-                            <span v-if="scope.row.colorGrade == 1 && scope.row.acceptStatus == 0" style="color:#ff9999">{{scope.row.statuz | caseStatusPipe(scope.row.dataTable)}}</span>
-                            <span v-else-if="scope.row.colorGrade == 2 && scope.row.acceptStatus == 0" style="color:#ff6666">{{scope.row.statuz | caseStatusPipe(scope.row.dataTable)}}</span>
-                            <span v-else-if="scope.row.colorGrade == 3 && scope.row.acceptStatus == 0" style="color:#ff1a1a">{{scope.row.statuz | caseStatusPipe(scope.row.dataTable)}}</span>
-                            <span v-else-if="scope.row.colorGrade >= 4 && scope.row.acceptStatus == 0" style="color:#e60000">{{scope.row.statuz | caseStatusPipe(scope.row.dataTable)}}</span>
+                            <span v-if="scope.row.colorGrade == 0 && scope.row.acceptStatus == 0" style="color:#00FF00">{{scope.row.statuz | caseStatusPipe(scope.row.dataTable)}}</span>
+                            <span v-else-if="scope.row.colorGrade == 1 && scope.row.acceptStatus == 0" style="color:#0000CD">{{scope.row.statuz | caseStatusPipe(scope.row.dataTable)}}</span>
+                            <span v-else-if="scope.row.colorGrade == 2 && scope.row.acceptStatus == 0" style="color:#FFFF00">{{scope.row.statuz | caseStatusPipe(scope.row.dataTable)}}</span>
+                            <span v-else-if="scope.row.colorGrade == 3 && scope.row.acceptStatus == 0" style="color:#FF8C00">{{scope.row.statuz | caseStatusPipe(scope.row.dataTable)}}</span>
+                            <span v-else-if="scope.row.colorGrade >= 4 && scope.row.acceptStatus == 0" style="color:#FF0000">{{scope.row.statuz | caseStatusPipe(scope.row.dataTable)}}</span>
                             <span v-else >{{scope.row.statuz | caseStatusPipe(scope.row.dataTable)}}</span>
                         </template>
                     </el-table-column>

+ 1 - 1
src/apps/mobile/views/recruitment/recruitment-application/components/detailsDialog.vue

@@ -28,7 +28,7 @@
                     <span>{{ formData.userResume.telephone }}</span>
                 </el-form-item>
                <el-form-item label="出生年月:">
-                    <span>{{ formData.userResume.brithday }}</span>
+                    <span>{{ formData.userResume.birthday }}</span>
                 </el-form-item>
                 <el-form-item label="微信号:">
                     <span>{{ formData.userResume.wechat }}</span>

+ 4 - 1
src/apps/mobile/views/recruitment/recruitment-application/index.vue

@@ -200,7 +200,10 @@ export default {
                     if(res.statusCode == "10"){
                         this.$router.replace("/login");
                     }
-                    this.tableData = res.data.records;
+                    this.tableData = res.data.records
+                    this.tableData.forEach(item=>{
+                        item.userResume.ability = JSON.parse(item.userResume.ability).toString()
+                    })
                     this.total = res.data.total;
                     this.listLoading = false;
                 })

+ 2 - 0
src/apps/mobile/views/shop/components/addEditDialog.vue

@@ -171,6 +171,7 @@ export default {
                             },
                         };
                     });
+                
             } else {
                 this.title = '新增';
             }
@@ -234,6 +235,7 @@ export default {
         close() {
             this.$refs['formData'].resetFields();
             this.visible = false;
+            this.brandName = null
             this.formData = { file: null };
             this.fileList = [];
             this.$refs.brand.reset();