Browse Source

12-28-09:42 lhj

liuhj 1 year ago
parent
commit
b4bee91bbf

+ 1 - 1
src/components/Finance/Currency.vue

@@ -5,7 +5,7 @@
                 <div class="head-ipt">
                     <div class="name-ipt">
                         <label>团组名称:</label>
-                        <el-select @change="chkg" v-model="state1" filterable placeholder="请选择">
+                        <el-select style="width:250px" @change="chkg" v-model="state1" filterable placeholder="请选择">
                             <el-option
                               v-for="item in restaurants"
                               :key="item.id"

+ 1 - 1
src/components/Finance/GroupStatus.vue

@@ -3,7 +3,7 @@
         <div class="groupstatus-all">
             <div class="groupstatus-box">
                 <div>
-                    <el-select v-model="value" clearable placeholder="请选择" @change="filterStatus(value)">
+                    <el-select style="width:250px" v-model="value" clearable placeholder="请选择" @change="filterStatus(value)">
                         <el-option
                         v-for="item in options"
                         :key="item.value"

+ 1 - 1
src/components/Finance/LncomingBills.vue

@@ -4,7 +4,7 @@
             <div class="lncomingbill-head">
                 <div class="lncomingbill-head-li">
                     <label>团组名称:</label>
-                    <el-select @change="changediid()" v-model="value" filterable placeholder="请选择">
+                    <el-select style="width:250px" @change="changediid()" v-model="value" filterable placeholder="请选择">
                         <el-option
                         v-for="item in options"
                         :key="item.id"

+ 1 - 1
src/components/Finance/PayReceived.vue

@@ -4,7 +4,7 @@
             <div class="received-head">
                 <div class="received-head-li">
                     <label>团组名称:</label>
-                    <el-select @change="changediid()" v-model="value" filterable placeholder="请选择">
+                    <el-select style="width: 250px;" @change="changediid()" v-model="value" filterable placeholder="请选择">
                         <el-option
                         v-for="item in options"
                         :key="item.id"

+ 1 - 1
src/components/Finance/Sendack.vue

@@ -4,7 +4,7 @@
             <div class="sendack-head">
                 <div class="sendack-head-li">
                     <label>团组名称:</label>
-                    <el-select @change="changediid()" v-model="value" filterable placeholder="请选择">
+                    <el-select style="width:250px" @change="changediid()" v-model="value" filterable placeholder="请选择">
                         <el-option
                         v-for="item in options"
                         :key="item.id"

+ 6 - 2
src/components/OP/OPgroup.vue

@@ -155,7 +155,8 @@ export default {
             input:'',
             token:'',
             fullscreenLoading:false,
-            userid:''
+            userid:'',
+            pageId:''
         }
     },
     methods:{
@@ -171,6 +172,8 @@ export default {
                 },
                 data: {
                     portType: 1,
+                    pageId:that.pageId,
+                    userId:that.userid,
                     pageIndex: that.currentPage,
                     pageSize: that.pageSize,
                     isSure: that.value,
@@ -179,7 +182,7 @@ export default {
             }).then(function (res) {
                 console.log(res)
                 if (res.data.code == 200) {
-                    that.groupDatas=res.data.data
+                    that.groupDatas=res.data.data.data
                     that.count=res.data.count
                 }
                 console.log(that.count)
@@ -309,6 +312,7 @@ export default {
     },
     mounted(){
         this.token=JSON.parse(localStorage.getItem('userinif')).token;
+        this.pageId=Number(localStorage.getItem('indexs').split('-')[1]);//页面id
         this.userid=JSON.parse(localStorage.getItem('userinif')).userInfo.userId;
         this.PostGroupPageList();
     }

+ 1 - 1
src/components/statistics/Groupreports.vue

@@ -159,7 +159,7 @@ export default {
     methods:{
         //分页api
         PostGroupPageList(){
-            var url = "/api/Statistics"
+            var url = "/api/Statistics/PostGroupStatementItems"
             var that = this
             this.$axios({
                 method: 'post',