Browse Source

1. 优化

MONSTER-ygh 1 year ago
parent
commit
3aa12b5e11

+ 2 - 2
src/views/tourism/financialManagement/detailsBox/ticketRefundOrderDetails.vue

@@ -100,7 +100,7 @@
                     type="textarea"
                     :rows="2"
                     placeholder="请输入审核备注"
-                    v-model="form.remark">
+                    v-model="form.errReason">
                   </el-input>
                 </div>
               </div>
@@ -233,7 +233,7 @@ export default {
         this.configUrl.refundAudit,{
           refundId: this.form.id,// 退款ID-列表ID
           status: type,
-          remark: this.form.remark,
+          errReason: this.form.errReason,
           errReason: ''
         }).then(response => {
           this.$modal.msgSuccess(`提交成功`);

+ 1 - 1
src/views/tourism/financialManagement/ticketRefundOrder.vue

@@ -31,7 +31,7 @@
               @keyup.enter.native="handleQuery"
               />
           </el-form-item>
-          <el-form-item label="添加时间" prop="time">
+          <el-form-item label="退款申请时间" prop="time">
               <el-date-picker
               v-model="queryParams.time"
               type="datetimerange"

+ 2 - 2
src/views/tourism/orderManagement/ticketOrdersAll/detailsBox/ticketOrdersDetails.vue

@@ -93,9 +93,9 @@
               <el-table-column label="姓名" align="center" key="name" prop="name" :show-overflow-tooltip="true" />
               <el-table-column label="身份证号" align="center" key="idcard" prop="idcard" :show-overflow-tooltip="true" />
               <el-table-column label="取票码" align="center" key="qrcodeNo" prop="qrcodeNo" :show-overflow-tooltip="true" />
-              <el-table-column label="核销状态" align="center" key="qrcodeStatus" prop="qrcodeStatus" :show-overflow-tooltip="true">
+              <el-table-column label="核销状态" align="center" key="status" prop="status" :show-overflow-tooltip="true">
                 <template slot-scope="scope">
-                  <dict-tag :options="dict.type.tourism_ticketOrders_qrcodeStatus" :value="scope.row.qrcodeStatus"/>
+                  <dict-tag :options="dict.type.tourism_ticketOrders_status" :value="scope.row.status"/>
                 </template>
               </el-table-column>
               <el-table-column label="核销时间" align="center" key="qrcodeUseTime" prop="qrcodeUseTime" :show-overflow-tooltip="true" />