Browse Source

订单功能完成,反馈信息功能完成,部分优化

zhang 4 years ago
parent
commit
fbf19fb543

+ 38 - 40
src/components/fankuijilu/fankuijilu.vue

@@ -11,9 +11,9 @@
     <hr style="background-color: #CCCCCC;height: 1px;border: 0;margin-top: 32px;">
     <el-row>
       <el-col :span="24" class="second-row">
-        <el-form :inline="true" :model="formInline" class="demo-form-inline">
+        <el-form :inline="true" class="demo-form-inline">
           <el-form-item label="关键字:" class="shuibiaoId">
-            <el-input v-model="formInline.user" placeholder="请输入订单号或者姓名"></el-input>
+            <el-input v-model="selectName" placeholder="请输入订单号或者姓名"></el-input>
           </el-form-item>
           <el-form-item>
             <el-button type="primary" @click="onSubmit">搜索</el-button>
@@ -23,8 +23,7 @@
     </el-row>
     <el-row>
       <el-col :span="24" class="third-row">
-        <el-table ref="multipleTable" :data="tableData" tooltip-effect="dark" style="width: 100%"
-          @selection-change="handleSelectionChange" highlight-current-row>
+        <el-table ref="multipleTable" :data="tableData" tooltip-effect="dark" style="width: 100%" highlight-current-row>
           <el-table-column prop="id" label="学号" width="260" align="center"></el-table-column>
           <el-table-column prop="stuName" label="姓名" width="200" align="center"></el-table-column>
           <el-table-column prop="tel" label="联系方式" width="270"></el-table-column>
@@ -57,8 +56,8 @@
             <span class="item-text">是否受理成功?</span>
           </div>
           <span slot="footer" class="dialog-footer">
+            <el-button type="primary" @click="handleSelect">确 定</el-button>
             <el-button @click="editdialogFormVisible = false">取 消</el-button>
-            <el-button type="primary" @click="editdialogFormVisible = false">确 定</el-button>
           </span>
         </el-dialog>
       </el-col>
@@ -71,27 +70,18 @@
     data() {
       return {
         editdialogFormVisible: false,
-        delDialogVisible: false,
-        form: {
-          id: 'KB580002652',
-          drom: '18',
-          room: '118'
-        },
-        formLabelWidth: '120px',
-        formInline: {
-          user: '',
-          value: '选项1'
-        },
+        selectName: '',
         tableData: [],
         multipleSelection: [],
         pageSize: 10,
-        totalCount: 0
+        totalCount: 0,
+        index: 0
       }
     },
     created: function() {
       this.user_info = JSON.parse(sessionStorage.getItem('usr_info'))
       this.user_token = this.user_info.token
-      this.getTableData(this.$Api.fankui,1)
+      this.getTableData(this.$Api.fankui, 1)
     },
     methods: {
       //分页
@@ -100,6 +90,13 @@
         this.tableData = []
         this.getTableData(this.$Api.fankui, val)
       },
+      //打开反馈操作页面
+      handleEdit(index, row) {
+        this.editdialogFormVisible = true
+        this.index = index
+        // console.log(index, row)
+      },
+      //获取反馈数据列表
       getTableData(url, index) {
         this.$axios.get(url + '?' + this.$qs.stringify({
           'curPage': index,
@@ -111,16 +108,17 @@
             'admin_token': this.user_token
           }
         }).then(res => {
-          console.log(res)
+          // console.log(res)
           this.totalCount = res.data.data.totalCount
           for (var i = 0; i < res.data.data.list.length; i++) {
             var list = {}
+            list.idNo = res.data.data.list[i].id
             list.id = res.data.data.list[i].feedbackPersonIdentify
             list.stuName = res.data.data.list[i].feedbackPersonName
             list.tel = res.data.data.list[i].feedbackPersonPhone
             list.time = res.data.data.list[i].publishTime
             list.content = res.data.data.list[i].feedbackInfo
-            if (res.data.data.list[i].status == 2) {
+            if (res.data.data.list[i].statu == 2) {
               list.state = '已处理'
             } else {
               list.state = '未处理'
@@ -132,6 +130,26 @@
           console.log(err)
         })
       },
+      //确定处理反馈信息
+      handleSelect() {
+        this.editdialogFormVisible = false
+        this.handleInfo('http://192.168.161.230:9998/tuitionpayment/feedbackmsg/info/' + this.tableData[this.index].idNo)
+      },
+      //修改信息
+      handleInfo(url) {
+        this.$axios.defaults.headers.common['Content-Type'] = 'application/x-www-form-urlencoded;charset=utf-8';
+        this.$axios.defaults.headers.common['admin_token'] = this.user_token;
+        this.$axios.put(url)
+        .then(res => {
+          console.log(this.index)
+          if(res.data.message == '执行成功'){
+            // console.log(this.tableData[this.index].state)
+            this.tableData[this.index].state = '已处理'
+          }
+        }).catch(err => {
+          console.log(err)
+        })
+      },
       onSubmit() {
         console.log('submit!')
       },
@@ -141,26 +159,6 @@
       handleClose(key, keyPath) {
         console.log(key, keyPath)
       },
-      toggleSelection(rows) {
-        if (rows) {
-          rows.forEach(row => {
-            this.$refs.multipleTable.toggleRowSelection(row)
-          })
-        } else {
-          this.$refs.multipleTable.clearSelection()
-        }
-      },
-      handleSelectionChange(val) {
-        this.multipleSelection = val
-      },
-      handleEdit(index, row) {
-        this.editdialogFormVisible = true
-        console.log(index, row)
-      },
-      handleDelete(index, row) {
-        this.delDialogVisible = true
-        console.log(index, row)
-      }
     },
   }
 </script>

+ 12 - 4
src/components/index/Index.css

@@ -5,8 +5,8 @@
 }
 
 .menu-left {
-  width: 240px;
-  /* width: 100%; */
+  width: 235px;
+  /* width: 20%; */
   height: 100%;
   background: #4393F8;
   overflow: hidden;
@@ -49,9 +49,16 @@
   justify-content: center;
 } */
 
+.el-menu {
+  width: 100%;
+  display: flex;
+  flex-direction: column;
+  align-items: center;
+}
+
 .el-menu-item {
-  width: 240px;
-  padding-left: 60px !important;
+  width: 170px;
+  /* padding-left: 60px !important; */
   height: 60px;
 }
 
@@ -195,6 +202,7 @@
   margin: 29px 29px 0 31px;
   padding: 32px 40px 53px 40px;
   width: 1600px;
+  /* width: 95%; */
   height: 961px;
   background: #FFFFFF;
 }

+ 14 - 7
src/components/index/Index.vue

@@ -1,6 +1,6 @@
 <template>
   <el-row type="flex" class="container" justify="space-between">
-    <el-col :span="2" class="menu-left">
+    <el-col :span="3" class="menu-left">
       <el-row>
         <el-col class="logo-col">
           <div class="logo"></div>
@@ -12,24 +12,24 @@
           <el-menu router :default-active="$route.path" class="el-menu-vertical-demo" @open="handleOpen"
             @close="handleClose" background-color="#4393F8" text-color="#fff" active-text-color="#fff">
             <router-link to="pnl">
-              <el-menu-item index="/index/pnl">
+              <el-menu-item index="/index/pnl" @click.native="refresh">
                 <i class="el-icon-sbgl"></i>
                 <span slot="title">缴费名单</span>
               </el-menu-item>
             </router-link>
-            <router-link to="orderlist">
+            <router-link to="orderlist" @click.native="refresh">
               <el-menu-item index="/index/orderlist">
                 <i class="el-icon-yue"></i>
                 <span slot="title">订单管理</span>
               </el-menu-item>
             </router-link>
-            <router-link to="wrongorder">
+            <router-link to="wrongorder" @click.native="refresh">
               <el-menu-item index="/index/wrongorder">
                 <i class="el-icon-sjdz"></i>
                 <span slot="title">异常订单</span>
               </el-menu-item>
             </router-link>
-            <router-link to="fkjl">
+            <router-link to="fkjl" @click.native="refresh">
               <el-menu-item index="/index/fkjl">
                 <i class="el-icon-ysfx"></i>
                 <span slot="title">反馈记录</span>
@@ -39,7 +39,7 @@
         </el-col>
       </el-row>
     </el-col>
-    <el-col :span="22">
+    <el-col :span="21">
       <el-row>
         <el-col :span="24" class="right-top">
           <div class="wecome-text">
@@ -87,6 +87,7 @@
       this.getNowDate()
     },
     methods: {
+      //获取当前时间
       getNowDate(){
         var _this = this;
         this.timer = setInterval(function() {
@@ -102,6 +103,7 @@
         }, 1000);
         // console.log(this.now_date) //2019-8-20
       },
+      //判断身份
       determineIdentify(){
         // console.log(this.user_info)
         if( this.user_info == null || this.user_info.userName != 'admin' || this.user_info.password != '123456'){
@@ -110,6 +112,10 @@
           })
         }
       },
+      //刷新页面
+      refresh(){
+        this.$router.go(0)
+      },
       onSubmit() {
         console.log('submit!');
       },
@@ -119,11 +125,12 @@
       handleClose(key, keyPath) {
         console.log(key, keyPath);
       },
+      //退出登录
       logout(done) {
         this.$confirm('确认退出?')
           .then(_ => {
             this.$router.push({
-              path: '/jiaofei/'
+              path: '/'
             })
             sessionStorage.clear()
           })

+ 2 - 2
src/components/orderList/orderList.css

@@ -14,7 +14,7 @@
   flex-direction: row;
   justify-content: space-between;
   align-items: center;
-  width: 400px;
+  width: 380px;
 }
 
 #logo {
@@ -104,7 +104,7 @@
 }
 
 .order>>>.el-input__inner {
-	width: 240px;
+	width: 280px;
 	height: 40px;
 	border: 1px solid #4D4D4D;
 	border-radius: 4px;

+ 102 - 66
src/components/orderList/orderList.vue

@@ -20,7 +20,7 @@
     <hr style="background-color: #CCCCCC;height: 1px;border: 0;margin-top: 32px;">
     <el-row>
       <el-col :span="24" class="second-row">
-        <div class="total_balance">总金额:<span class="all-money">{{all_money}}</span> 元</div>
+        <div class="total_balance">总金额:<span class="all-money">{{all_money.toFixed(2)}}</span> 元</div>
         <el-form :inline="true" class="demo-form-inline">
           <el-form-item label="关键字:" class="order">
             <el-input v-model="selectOrder" placeholder="请输入订单号或者班级"></el-input>
@@ -34,15 +34,15 @@
     <el-row>
       <el-col :span="24" class="third-row">
         <el-table ref="multipleTable" :data="tableData" tooltip-effect="dark" style="width: 100%" highlight-current-row>
-          <el-table-column label="订单号" width="220" align="center">
+          <el-table-column label="订单号" width="280" align="center">
             <template slot-scope="scope">{{ scope.row.order }}</template>
           </el-table-column>
-          <el-table-column prop="id" label="学号" width="250"></el-table-column>
-          <el-table-column prop="stuName" label="姓名" width="180"></el-table-column>
-          <el-table-column prop="class" label="班级" width="220"></el-table-column>
+          <el-table-column prop="id" label="学号" width="260"></el-table-column>
+          <el-table-column prop="stuName" label="姓名" width="160"></el-table-column>
+          <el-table-column prop="class" label="班级" width="180"></el-table-column>
           <el-table-column prop="money" label="金额(元)" width="160"></el-table-column>
           <el-table-column prop="time" label="时间" width="260" widshow-overflow-tooltip></el-table-column>
-          <el-table-column label="状态" align="center" width="200">
+          <el-table-column label="状态" align="center" width="180">
             <template slot-scope="scope">
               <el-tag :type="scope.row.state === '支付失败' ? 'danger' : 'success'" disable-transitions>{{scope.row.state}}
               </el-tag>
@@ -63,10 +63,11 @@
         <el-dialog v-if="selectM" title="请选择月份" :visible.sync="editdialogFormVisible" width="400px" top="0vh"
           class="my-dialog">
           <div id="month">
-            <el-date-picker v-model="monthValue" type="month" placeholder="选择月" value-format="yyyy-MM">
+            <el-date-picker v-model="monthValue" type="month" placeholder="选择月" value-format="yyyy-MM"
+              @change="handleSelectMonth">
             </el-date-picker>
             <div class="last-row">
-              <el-button @click="selectMonth" class="submitBtn">确定</el-button>
+              <el-button @click="selectMonth" class="submitBtn" :disabled="btnChangeEnableMonth">确定</el-button>
               <el-button @click="selectLogout" class="submitBtn">取消</el-button>
             </div>
           </div>
@@ -74,10 +75,11 @@
         <el-dialog v-if="!selectM" title="请选择日期" :visible.sync="editdialogFormVisible" width="400px" top="0vh"
           class="my-dialog">
           <div id="month">
-            <el-date-picker v-model="dayValue" type="date" placeholder="选择日期" value-format="yyyy-MM-dd">
+            <el-date-picker v-model="dayValue" type="date" placeholder="选择日期" value-format="yyyy-MM-dd"
+              @change="handleSelectDay">
             </el-date-picker>
             <div class="last-row">
-              <el-button @click="selectDay" class="submitBtn">确定</el-button>
+              <el-button @click="selectDay" class="submitBtn" :disabled="btnChangeEnableDay">确定</el-button>
               <el-button @click="selectLogout" class="submitBtn">取消</el-button>
             </div>
           </div>
@@ -92,7 +94,9 @@
     data() {
       return {
         editdialogFormVisible: false, //月份
-        selectM: true,//显示月份
+        btnChangeEnableMonth: true, //确定月份按钮
+        btnChangeEnableDay: true , //确定日期按钮
+        selectM: true, //显示月份
         formInline: {
           user: '',
           options: [{
@@ -100,10 +104,10 @@
             label: '全部'
           }, {
             value: 'month',
-            label: '月'
+            label: '份选择'
           }, {
             value: 'day',
-            label: '日'
+            label: '期选择'
           }],
           value: ''
         },
@@ -115,25 +119,91 @@
         selectOrder: '', //查找订单号或姓名
         monthValue: '', //选择的月份
         dayValue: '', //选择的日期
+        flag: 1, //选择的状态
+        datestr: '', //选择的时间
       }
     },
     created: function() {
       this.user_info = JSON.parse(sessionStorage.getItem('usr_info'))
       this.user_token = this.user_info.token
-      this.getTableData(this.$Api.orderList)
+      this.getTableData(this.$Api.orderList, this.flag)
     },
     methods: {
       //分页
       handleCurrentChange(val) {
         this.currentPage = val;
         this.tableData = []
-        this.getTableData(this.$Api.orderList, val)
+        this.all_money = 0
+        this.getTableData(this.$Api.orderList, this.flag, val)
+      },
+      //选择时间
+      selectTime(val) {
+        if (val == 'month') {
+          this.editdialogFormVisible = true
+          this.selectM = true
+          this.flag = 2
+        } else if (val == 'day') {
+          this.editdialogFormVisible = true
+          this.selectM = false
+          this.flag = 3
+        } else {
+          this.tableData = []
+          this.all_money = 0
+          this.flag = 1
+          this.getTableData(this.$Api.orderList, this.flag)
+        }
+      },
+      //选择月份按钮
+      handleSelectMonth() {
+        // console.log(this.monthValue)
+        if (this.monthValue != '') {
+          this.btnChangeEnableMonth = false
+        }
+      },
+      //确定选择日期
+      handleSelectDay(){
+        if (this.dayValue != '') {
+          this.btnChangeEnableDay = false
+        }
+      },
+      //确定选择月份
+      selectMonth(val) {
+        console.log(this.monthValue)
+        this.formInline.value = this.monthValue
+        this.editdialogFormVisible = false
+        this.tableData = []
+        this.all_money = 0
+        this.getTableData(this.$Api.orderList, this.flag, 1, '', this.monthValue)
+      },
+      //确定选择日期
+      selectDay() {
+        console.log(this.dayValue)
+        this.formInline.value = this.dayValue
+        this.editdialogFormVisible = false
+        this.tableData = []
+        this.all_money = 0
+        this.getTableData(this.$Api.orderList, this.flag, 1, '', this.dayValue)
+      },
+      //退出选择
+      selectLogout() {
+        this.editdialogFormVisible = false
+        this.formInline.value = '请重新选择'
+      },
+      //根据关键字查找订单
+      onSubmit() {
+        // console.log(this.selectOrder)
+        this.tableData = []
+        this.all_money = 0
+        this.getTableData(this.$Api.orderList, this.flag, 1, this.selectOrder)
       },
       //获取订单数据
-      getTableData(url, index) {
+      getTableData(url, flag, index, key, dateStr) {
         this.$axios.get(url + '?' + this.$qs.stringify({
+          'flag': flag,
           'curPage': index,
-          'pageSize': this.pageSize
+          'pageSize': this.pageSize,
+          'keyword': key,
+          'dateStr': dateStr
         }), {
           headers: {
             'Content-Type': 'application/x-www-form-urlencoded;charset=utf-8',
@@ -151,7 +221,8 @@
             list.class = res.data.data.page.list[i].className
             list.money = res.data.data.page.list[i].orderAmount
 
-            this.all_money += list.money
+            // this.all_money = (this.all_money + list.money).toFixed(2)
+            this.all_money = this.all_money + list.money
 
             list.time = res.data.data.page.list[i].finishTime
             if (res.data.data.page.list[i].status == 2) {
@@ -166,54 +237,19 @@
           console.log(err)
         })
       },
-      //选择时间
-      selectTime(val) {
-        if (val == 'month') {
-          this.editdialogFormVisible = true
-          this.selectM = true
-        } else if (val == 'day') {
-          this.editdialogFormVisible = true
-          this.selectM = false
-        }
-      },
-      //选择月份
-      selectMonth(val) {
-        console.log(this.monthValue)
-        this.formInline.value = this.monthValue
-        this.editdialogFormVisible = false
-      },
-      //选择日期
-      selectDay() {
-        console.log(this.dayValue)
-        this.formInline.value = this.dayValue
-        this.editdialogFormVisible = false
-      },
-      //退出选择
-      selectLogout() {
-        this.editdialogFormVisible = false
-        this.formInline.value = '请重新选择'
-      },
-      onSubmit() {
-        console.log('submit!')
-      },
-      handleOpen(key, keyPath) {
-        console.log(key, keyPath)
-      },
-      handleClose(key, keyPath) {
-        console.log(key, keyPath)
-      },
-      toggleSelection(rows) {
-        if (rows) {
-          rows.forEach(row => {
-            this.$refs.multipleTable.toggleRowSelection(row)
-          })
-        } else {
-          this.$refs.multipleTable.clearSelection()
-        }
-      },
       //下载文件
       downLoadFile() {
-        this.$axios.get(this.$Api.orderDownload, {
+        if (this.flag == 1) {
+          this.datestr = ''
+        } else if (this.flag == 2) {
+          this.datestr = this.monthValue
+        } else if (this.flag == 3) {
+          this.datestr = this.dayValue
+        }
+        this.$axios.get(this.$Api.orderDownload + '?' + this.$qs.stringify({
+          'flag': this.flag,
+          'dateStr': this.datestr
+        }), {
           headers: {
             'Content-Type': 'application/x-www-form-urlencoded;charset=utf-8',
             'Author': 'codingliang',
@@ -221,7 +257,7 @@
           },
           responseType: 'blob'
         }).then(res => {
-          console.log(res)
+          // console.log(res)
           this.download(res.data)
         }).catch(err => {
           console.log(err)
@@ -236,7 +272,7 @@
         let link = document.createElement('a')
         link.style.display = 'none'
         link.href = url
-        link.setAttribute('download', '订单列表.xlsx')
+        link.setAttribute('download', '订单列表' + this.datestr + '.xlsx')
         document.body.appendChild(link)
         link.click()
       }

+ 19 - 50
src/components/payNameList/payNameList.vue

@@ -18,9 +18,9 @@
     <el-row>
       <el-col :span="24" class="second-row">
         <div class="total_balance">关键字:</div>
-        <el-form :inline="true" :model="formInline" class="demo-form-inline">
+        <el-form :inline="true" class="demo-form-inline">
           <el-form-item class="shuibiaoId">
-            <el-input v-model="formInline.user" placeholder="请输入姓名或学号"></el-input>
+            <el-input v-model="selectName" placeholder="请输入姓名或学号"></el-input>
           </el-form-item>
           <el-form-item>
             <el-button type="primary" @click="onSubmit">搜索</el-button>
@@ -30,8 +30,7 @@
     </el-row>
     <el-row>
       <el-col :span="24" class="third-row">
-        <el-table ref="multipleTable" :data="tableData" tooltip-effect="dark" style="width: 100%"
-          @selection-change="handleSelectionChange" highlight-current-row>
+        <el-table ref="multipleTable" :data="tableData" tooltip-effect="dark" style="width: 100%" highlight-current-row>
           <el-table-column label="学号" width="300" align="center">
             <template slot-scope="scope">{{ scope.row.id }}</template>
           </el-table-column>
@@ -72,27 +71,15 @@
   export default {
     data() {
       return {
-        editdialogFormVisible: false,
-        delDialogVisible: false,
-        form: {
-          id: 'KB580002652',
-          drom: '18',
-          room: '118'
-        },
-        formLabelWidth: '120px',
-        formInline: {
-          user: '',
-          value: '选项1'
-        },
+        editdialogFormVisible: false, //对话框
         tableData: [], //主页数据
         payItemDetail: [], //详细数据
-        multipleSelection: [],
-        e_money: '5980',
-        user_info: {},
-        user_token: '',
-        pageSize: 10,
-        currentPage: 1,
-        totalCount: 0
+        user_info: {}, //用户登录信息
+        user_token: '', //token
+        pageSize: 10, //每页名单数量
+        currentPage: 1, //当前页
+        totalCount: 0, //名单数量总数
+        selectName: '', //搜索名称
       }
     },
     created: function() {
@@ -102,26 +89,11 @@
       this.getTableData(this.$Api.paylist)
     },
     methods: {
+      //搜索
       onSubmit() {
-        console.log('submit!')
-      },
-      handleOpen(key, keyPath) {
-        console.log(key, keyPath)
-      },
-      handleClose(key, keyPath) {
-        console.log(key, keyPath)
-      },
-      toggleSelection(rows) {
-        if (rows) {
-          rows.forEach(row => {
-            this.$refs.multipleTable.toggleRowSelection(row)
-          })
-        } else {
-          this.$refs.multipleTable.clearSelection()
-        }
-      },
-      handleSelectionChange(val) {
-        this.multipleSelection = val
+        // console.log(this.selectName)
+        this.tableData = []
+        this.getTableData(this.$Api.paylist, 1, this.selectName)
       },
       //分页
       handleCurrentChange(val) {
@@ -141,10 +113,6 @@
         }
         console.log(this.payItemDetail)
       },
-      handleDelete(index, row) {
-        this.delDialogVisible = true
-        console.log(index, row)
-      },
       //判断登录状态
       determineIdentify() {
         if (this.user_info == null || this.user_info.userName != 'admin' || this.user_info.password != '123456') {
@@ -154,10 +122,11 @@
         }
       },
       //获取订单列表数据
-      getTableData(url, index) {
+      getTableData(url, index, key) {
         // console.log(index)
         this.$axios.get(url + '?' + this.$qs.stringify({
-          'curPage': index
+          'curPage': index,
+          'keyword': key
         }), {
           headers: {
             'Content-Type': 'application/x-www-form-urlencoded;charset=utf-8',
@@ -165,7 +134,7 @@
             'admin_token': this.user_token
           }
         }).then(res => {
-          console.log(res)
+          // console.log(res)
           this.totalCount = res.data.data.totalCount
           for (var i = 0; i < res.data.data.list.length; i++) {
             var list = {} //外层数据
@@ -178,7 +147,7 @@
             list.payItemDetail = res.data.data.list[i].payItemDetail
             this.tableData.push(list)
           }
-          console.log(this.tableData)
+          // console.log(this.tableData)
         }).catch(err => {
           console.log(err)
         })

+ 10 - 7
src/interface/index.js

@@ -1,24 +1,27 @@
 // 配置主机地址和端口号(可以有多个,需要测试那个环境字节打开那个base即可)
-let base = "https://jtishfw.ncjti.edu.cn/jiaofei/backendApi/"
-//  let base = "http://192.168.161.230:9999/"
+// let base = "https://jtishfw.ncjti.edu.cn/jiaofei/backendApi/"
+ let base = "http://192.168.161.230:9998/"
 
 
 // 在线api接口路径,需要和项目后台确认
 let online_url = {
 
     //管理员登录
-    login: base + "/tuitionpayment/admininfo/login",
+    login: base + "tuitionpayment/admininfo/login",
 
     //学生缴费列表
-    paylist:base + "/tuitionpayment/payableinfo/list",
+    paylist:base + "tuitionpayment/payableinfo/list",
 
     //订单列表
-    orderList: base + "/tuitionpayment/payorder/list",
+    orderList: base + "tuitionpayment/payorder/list",
     //订单下载列表
-    orderDownload: base + "/tuitionpayment/payorder/downloadResult",
+    orderDownload: base + "tuitionpayment/payorder/downloadResult",
 
     //反馈列表
-    fankui: base + "/tuitionpayment/feedbackmsg/list"
+    fankui: base + "tuitionpayment/feedbackmsg/list",
+    
+    //反馈信息处理
+    fankuiHandle: base + "tuitionpayment/feedbackmsg/info/"
 
 }