123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250 |
- <template>
- <div v-loading="fullscreenLoading">
- <div class="group-list">
- <div class="group-title">
- <div>团组列表</div>
- <div class="group-box">
- <el-select v-model="value" clearable placeholder="请选择" @change="filterStatus(value)">
- <el-option
- v-for="item in options"
- :key="item.value"
- :label="item.label"
- :value="item.value">
- </el-option>
- </el-select>
- <el-input
- style="width:200px;"
- placeholder="请输入查询内容"
- v-model="input"
- clearable>
- </el-input>
- <el-button
- type="primary"
- size=""
- title="查看费用清单"
- @click="Inquireclick()">查 询</el-button>
- </div>
- </div>
- <template>
- <el-table
- :data="groupDatas"
- border
- style="width: 100%">
- <el-table-column
- prop="num"
- label="序 号"
- width="55">
- <template slot-scope="scope">
- {{(currentPage - 1) * pageSize + scope.$index + 1}}
- </template>
- </el-table-column>
- <el-table-column
- prop="tourCode"
- width="100"
- label="团 号">
- </el-table-column>
- <el-table-column
- width="100"
- prop="salesQuoteNo"
- label="销售报价号">
- </el-table-column>
- <el-table-column
- prop="teamType"
- label="团组类型"
- width="150">
- </el-table-column>
- <el-table-column
- prop="teamLev"
- label="级 别"
- width="80">
- </el-table-column>
- <el-table-column
- prop="teamName"
- label="团队名称"
- >
- </el-table-column>
- <el-table-column
- prop="clientName"
- label="客户名称"
- width="100">
- </el-table-column>
- <el-table-column
- prop="clientUnit"
- label="客户单位">
- </el-table-column>
- <el-table-column
- prop="visitDate"
- :formatter="filteryear"
- label="出访时间"
- width="100">
- </el-table-column>
- <el-table-column
- prop="visitDays"
- label="出访天数"
- width="80">
- </el-table-column>
- <el-table-column
- prop="visitPNumber"
- label="出访人数"
- width="80">
- </el-table-column>
- <el-table-column
- prop="jietuanOperator"
- label="接团操作人"
- width="110">
- </el-table-column>
- <el-table-column label="操作">
- <template slot-scope="scope">
- <el-button Inquireclick
- type="primary"
- size="mini"
- title="查看费用清单"
- @click="handleView(scope.$index, scope.row)">查看费用清单</el-button>
- </template>
- </el-table-column>
- </el-table>
- </template>
- <div class="block">
- <el-pagination align='center'
- @size-change="handleSizeChange"
- @current-change="handleCurrentChange"
- :current-page="currentPage"
- :page-sizes="[10,12,15,20]"
- :page-size="pageSize"
- layout="total, sizes, prev, pager, next"
- :total="count">
- </el-pagination>
- </div>
- </div>
- </div>
- </template>
- <script>
- export default {
- data() {
- return {
- pageId:0,
- options: [
- {
- value: '-1',
- label: '全部'
- }, {
- value: '0',
- label: '已完成'
- }, {
- value: '1',
- label: '未完成'
- }
- ],
- value: '-1',
- groupDatas:[],
- groupData: [],
- groupDatass:[],
- currentPage: 1, // 当前页码
- pageSize: 10 ,// 每页的数据条数
- count:0,//总数
- input:'',
- token:'',
- fullscreenLoading:false,
- userid:''
- }
- },
- methods:{
- //分页api
- PostGroupPageList(){
- var url = "/api/Groups/PostExpenseAuditGroupPageItems"
- var that = this
- this.$axios({
- method: 'post',
- url: url,
- headers: {
- Authorization: 'Bearer ' + this.token
- },
- data: {
- portType: 1,
- pageId:that.pageId,
- userId:that.userid,
- pageIndex: that.currentPage,
- pageSize: that.pageSize,
- isSure: that.value,
- searchCriteria: that.input,
- }
- }).then(function (res) {
- console.log(res)
- if (res.data.code == 200) {
- that.groupDatas=res.data.data.data
- that.count=res.data.count
- }
- console.log(that.count)
- })
- },
- //每页条数改变时触发 选择一页显示多少行
- handleSizeChange(val) {
- this.currentPage = 1;
- this.pageSize = val;
- this.PostGroupPageList();
- },
- //当前页改变时触发 跳转其他页
- handleCurrentChange(val) {
- this.currentPage = val;
- this.PostGroupPageList();
- },
- //查看费用申请
- handleView(index, row) {
- this.$router.push({path: '/home/FeesPage?id=' + row.id +''});
- },
- //模糊查询
- Inquireclick(){
- this.currentPage=1;
- this.PostGroupPageList()
- },
- //处理时间
- filteryear(val){
- let gstime=val.visitDate.split(' ')[0]
- return gstime;
- },
- //筛选状态
- filterStatus(){
- this.currentPage=1;
- this.PostGroupPageList();
- },
- },
- 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();
- }
- }
- </script>
- <style>
- .group-list{
- background-color: #fff;
- padding: 10px;
- box-shadow: 0 0 5px #0005;
- border-radius: 10px;
- }
- .group-title{
- display: flex;
- font-size: 17px;
- font-weight:600 ;
- color: #555;
- margin-top: 8px;
- margin-bottom: 2px;
- justify-content: space-between;
- align-items: center;
- }
- .group-box{
- display: flex;
- }
- .group-box>button{
- margin-left: 10px;
- padding: 8px 20px;
- }
- .group-list .el-table td.el-table__cell, .el-table th.el-table__cell.is-leaf{
- text-align: center;
- }
- .group-box>.el-input{
- margin-left: 10px;
- }
- </style>
|