ソースを参照

1. 完成打卡审核

MONSTER-ygh 1 年間 前
コミット
f051c3e0e4

+ 5 - 5
src/views/tourism/popularCheck/contentManagement.vue

@@ -30,7 +30,7 @@
                 style="width: 100%"
                 >
                 <el-option
-                    v-for="dict in dict.type.tourism_orderRefund_status"
+                    v-for="dict in dict.type.tourism_contentManagement_status"
                     :key="dict.value"
                     :label="dict.label"
                     :value="dict.value"
@@ -62,10 +62,10 @@
             <el-table-column label="提交时间" align="center" key="createTime" prop="createTime" v-if="columns[3].visible" :show-overflow-tooltip="true" />
             <el-table-column label="状态" align="center" key="status" prop="status" v-if="columns[4].visible" :show-overflow-tooltip="true">
                 <template slot-scope="scope">
-                    <dict-tag :options="dict.type.tourism_ticketOrders_source" :value="scope.row.status"/>
+                    <dict-tag :options="dict.type.tourism_contentManagement_status" :value="scope.row.status"/>
                 </template>
             </el-table-column>
-            <el-table-column label="审核时间" align="center" key="refundTime" prop="refundTime" v-if="columns[5].visible" :show-overflow-tooltip="true" />
+            <el-table-column label="审核时间" align="center" key="updateTime" prop="updateTime" v-if="columns[5].visible" :show-overflow-tooltip="true" />
             <el-table-column label="点赞量(人/次)" align="center" key="praiseNum" prop="praiseNum" v-if="columns[6].visible" :show-overflow-tooltip="true" />
             <el-table-column
               label="操作"
@@ -113,10 +113,10 @@
     delTableParamsApi, 
     updateTableApi
   } from "@/api/CURD";
-  import detailsBox from "./detailsBox/ticketRefundOrderDetails.vue"
+  import detailsBox from "./detailsBox/contentManagementDetails.vue"
   export default {
     name: "User",
-    dicts: ['tourism_orderRefund_status','tourism_ticketOrders_source'],
+    dicts: ['tourism_contentManagement_status'],
     components: {detailsBox},
     data() {
       return {

+ 11 - 5
src/views/tourism/popularCheck/detailsBox/ticketRefundOrderDetails.vue

@@ -90,9 +90,9 @@
             </el-form-item>
           </div>
           <div v-if="model=='DEATILSADD'">
-            <div class="form-title"><span>审核操作</span></div>
+            <div class="form-title" style="display: flex;align-items: flex-end;"><span>审核操作</span><i>(注意:驳回时需填写驳回原因)</i></div>
               <div>
-                <el-form-item label="审核备注:" label-width="100px"></el-form-item>
+                <el-form-item label="审核备注:" :error="errReasonText" label-width="100px"></el-form-item>
                 <div>
                   <el-input
                     type="textarea"
@@ -107,8 +107,8 @@
                 type="danger" 
                 @click="refundAudit(2)"
                 :loading="loading"
-                >驳回退款</el-button>
-                <el-button type="primary" :loading="loading" @click="refundAudit(1)">同意退款</el-button>
+                >驳回</el-button>
+                <el-button type="primary" :loading="loading" @click="refundAudit(1)">同意</el-button>
               </div>
           </div>
         </el-form>
@@ -149,6 +149,7 @@ export default {
       },
       rules: {},
       scenicAreaProducts: [],// 景点产品关联
+      errReasonText: ''
     };
   },
   methods: {
@@ -229,9 +230,14 @@ export default {
     },
     /**  审核操作  */
     refundAudit(type){
+      if(type == 2 && !this.form.errReason) {
+        this.errReasonText = "请输入驳回原因"
+        return
+      } 
+      this.loading = true
       addTableApi(
         this.configUrl.refundAudit,{
-          refundId: this.form.id,// 退款ID-列表ID
+          id: this.form.id,// 退款ID-列表ID
           auditStatus: type,
           errReason: this.form.errReason,
         }).then(response => {