123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395 |
- <template>
- <div>
- <div class="communal-list">
- <div>
- <div class="communal-title">
- <div>邀请公务费用</div>
- </div>
- <div style="display: flex;justify-content: space-between;">
- <div style="width: 70%;display: flex;">
- <el-select style="width:300px;margin-right:10px" v-model="DiId" placeholder="团组选择" clearable filterable
- @change="AirTicketResSelectChange">
- <el-option v-for="item in AirTicketResSelectData" :key="item.id" :label="item.teamName"
- :value="item.id">
- </el-option>
- </el-select>
- <el-input style="width:400px;margin-right:10px" v-model="inviter" placeholder="请输入邀请方名称" clearable></el-input>
- <el-date-picker style="width:400px;margin-right:10px" v-model="InviteTime" type="daterange" align="right"
- unlink-panels format="yyyy-MM-dd" value-format="yyyy-MM-dd" range-separator="至"
- start-placeholder="邀请开始日期" end-placeholder="邀请结束日期" :picker-options="pickerOptions">
- </el-date-picker>
- <el-button type="primary" @click="ConditionsQuery">查询</el-button>
- </div>
- <div style="width: 30%;text-align: right;">
- <el-button type="primary" style="margin-left: 10px;" @click="addIf">新增</el-button>
- </div>
- </div>
- <div style="margin:10px 0;color:#606266;">
- <span style="font-weight: bold;font-size:16px;">团队名称:</span>
- <span style="color:#606266;">{{ delegationInfo.teamName }} </span>
- <span style="font-weight: bold;font-size:16px;">客户:</span>
- <span style="color:#606266;">{{ delegationInfo.clientName }} {{
- }} </span>
- <span style="font-weight: bold;font-size:16px;">出访国家:</span>
- <span style="color:#606266;">{{ delegationInfo.visitCountry }} </span>
- <span style="font-weight: bold;font-size:16px;">起止日期:</span>
- <span style="color:#606266;">{{ delegationInfo.visitStartDate }}—{{ delegationInfo.visitEndDate
- }} </span>
- <span style="font-weight: bold;font-size:16px;">天数/人数:</span>
- <span style="color:#606266;">{{ delegationInfo.visitDays }}天/{{ delegationInfo.visitPNumber }}人</span>
- </div>
- </div>
- <template>
- <el-table :data="tableDatas.slice((currentPage - 1) * pageSize, currentPage * pageSize)" border
- style="width: 100%" v-loading="loading" element-loading-text="拼命加载中...">
- <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="inviterArea" label="邀请方地区" width="120">
- </el-table-column>
- <el-table-column prop="inviter" label="邀请方" width="200">
- </el-table-column>
- <el-table-column prop="inviteTime" label="邀请时间" width="160">
- </el-table-column>
- <el-table-column prop="inviteCost,currency" label="邀请费用" width="120" sortable>
- <template slot-scope="scope">
- {{ scope.row.inviteCost|numFilter}} {{ scope.row.inviteCurrency }}
- </template>
- </el-table-column>
- <el-table-column prop="inviteCost,currency" label="快递费用" width="120" sortable>
- <template slot-scope="scope">
- {{ scope.row.sendCost|numFilter}} {{ scope.row.sendCurrency }}
- </template>
- </el-table-column>
- <el-table-column prop="inviteCost,currency" label="翻译费用" width="120" sortable>
- <template slot-scope="scope">
- {{ scope.row.translateCost|numFilter }} {{ scope.row.translateCurrency }}
- </template>
- </el-table-column>
- <el-table-column prop="inviteCost,currency" label="活动费" width="120" sortable>
- <template slot-scope="scope">
- {{ scope.row.eventsCost|numFilter }} {{ scope.row.eventsCurrency }}
- </template>
- </el-table-column>
- <el-table-column prop="inviteCost,currency" label="支付费用" width="120" sortable>
- <template slot-scope="scope">
- {{ scope.row.payMoney|numFilter }} {{ scope.row.paymentCurrency }}
- </template>
- </el-table-column>
- <el-table-column prop="isGoOfficaiaBussiness" label="是否到场" width="78">
- <template slot-scope="isGoOfficaiaBussiness">
- <span v-if="isGoOfficaiaBussiness.row.isGoOfficaiaBussiness == 1">是</span>
- <span v-else>否</span>
- </template>
- </el-table-column>
- <el-table-column prop="isAudit" label="是否审核" width="78">
- <template slot-scope="isAudit">
- <span v-if="isAudit.row.isAudit == 1">已通过</span>
- <span v-else-if="isAudit.row.isAudit == 0">未审核</span>
- <span v-else-if="isAudit.row.isAudit == 2">未通过</span>
- <span v-else>自动审核通过</span>
- </template>
- </el-table-column>
- <el-table-column prop="attachment" label="附件" width="200">
- </el-table-column>
- <el-table-column label="操作">
- <template slot-scope="scope">
- <el-button size="mini" @click="download(scope.$index, scope.row)"
- v-show="scope.row.attachment">下载附件</el-button>
- <el-button size="mini" @click="upDate(scope.$index, scope.row)">编辑</el-button>
- <el-button size="mini" type="danger" @click="del(scope.$index, scope.row)">删除</el-button>
- </template>
- </el-table-column>
- </el-table>
- </template>
- <div class="block" style="margin-top:15px;">
- <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="tableDatas.length">
- </el-pagination>
- </div>
- </div>
- </div>
- </template>
- <script>
- export default {
- beforeRouteLeave(to, from, next) {
- console.log(to)
- console.log(from)
- if(to.name!='OpInvitationOfficialActivities'){
- from.meta.keepAlive = false;
- }
- next()
- },
- data() {
- return {
- loading: false,
- tableDatas: [],
- tableData: [],
- currentPage: 1, // 当前页码
- pageSize: 12,// 每页的数据条数
- input: '',
- token: '',
- userId: 0,
- DiId: '',
- inviter: "",
- pickerOptions: {
- shortcuts: [{
- text: '最近一周',
- onClick(picker) {
- const end = new Date();
- const start = new Date();
- start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
- picker.$emit('pick', [start, end]);
- }
- }, {
- text: '最近一个月',
- onClick(picker) {
- const end = new Date();
- const start = new Date();
- start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
- picker.$emit('pick', [start, end]);
- }
- }, {
- text: '最近三个月',
- onClick(picker) {
- const end = new Date();
- const start = new Date();
- start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
- picker.$emit('pick', [start, end]);
- }
- }]
- },
- InviteTime: '',
- startInviteTime: "",
- endInviteTime: "",
- AirTicketResSelectData: [],
- delegationInfo: {},
- }
- },
- methods: {
- //每页条数改变时触发 选择一页显示多少行
- handleSizeChange(val) {
- this.currentPage = 1;
- this.pageSize = val;
- },
- //当前页改变时触发 跳转其他页
- handleCurrentChange(val) {
- this.currentPage = val;
- },
- //团组下拉框
- AirTicketResSelect() {
- var url = "/api/Groups/DecreasePaymentsSelect"
- var that = this
- this.$axios({
- method: 'post',
- url: url,
- headers: {
- Authorization: 'Bearer ' + this.token
- },
- data: {
- userId: that.userId,
- ctId: 81
- }
- }).then(function (res) {
- if (res.data.code == 200) {
- that.AirTicketResSelectData = res.data.data.groupName;
- that.DiId = parseInt(that.AirTicketResSelectData[0].id);
- that.delegationInfo = that.AirTicketResSelectData[0];
- that.InvitationOfficialActivities()
- }
- }).catch(function (error) {
- that.$message.error("网络错误,请稍后重试");
- });
- },
- ConditionsQuery() {
- if (this.InviteTime != "" && this.InviteTime != undefined && this.InviteTime != null) {
- this.startInviteTime = this.InviteTime[0]
- this.endInviteTime = this.InviteTime[1]
- } else {
- this.startInviteTime = ""
- this.endInviteTime = ""
- }
- this.InvitationOfficialActivities();
- },
- AirTicketResSelectChange() {
- if (this.DiId != 0 && this.DiId != null) {
- this.InvitationOfficialActivities();
- for (let index = 0; index < this.AirTicketResSelectData.length; index++) {
- if (this.AirTicketResSelectData[index].id == parseInt(this.DiId)) {
- this.delegationInfo = this.AirTicketResSelectData[index];
- break;
- }
- }
- }
- },
- //商邀费用信息绑定
- InvitationOfficialActivities() {
- var url = "/api/Groups/InvitationOfficialActivitiesList"
- var that = this
- this.$axios({
- method: 'post',
- url: url,
- headers: {
- Authorization: 'Bearer ' + this.token
- },
- data: {
- diId: that.DiId,
- inviter: that.inviter,
- startInviteTime: that.startInviteTime,
- endInviteTime: that.endInviteTime,
- pageIndex: 0,
- pageSize: 0
- }
- }).then(function (res) {
- if (res.data.code == 200) {
- that.tableDatas = res.data.data;
- that.tableData = that.tableDatas
- if (that.tableDatas.length != 0) {
- if (that.tableDatas.slice((that.currentPage - 1) * that.pageSize, that.currentPage * that.pageSize).length == 0) {
- if (that.currentPage > 1) {
- that.currentPage = that.currentPage - 1;
- }
- }
- }
- }
- }).catch(function (error) {
- that.$message.error("网络错误,请稍后重试");
- });
- },
- upDate(index, row) {
- this.$router.push({
- path: "/home/OpInvitationOfficialActivities",
- query: {
- DiId: this.DiId,
- id: row.id
- }
- })
- },
- addIf() {
- if (this.DiId != 0 && this.DiId != '' && this.DiId != undefined) {
- this.$router.push({
- path: "/home/OpInvitationOfficialActivities",
- query: {
- DiId: this.DiId,
- }
- })
- } else {
- this.$message('请选择团组在进行添加');
- }
- },
- del(index, row) {
- this.$confirm('此操作将删除该数据, 是否继续?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- var that = this
- this.$axios({
- method: 'post',
- url: "/api/Groups/DelInvitationOfficialActivities",
- headers: {
- Authorization: 'Bearer ' + this.token
- },
- data: {
- Id: row.id,
- DeleteUserId: this.userId
- }
- }).then(function (res) {
- console.log(res)
- if (res.data.code == 200) {
- that.$message({
- message: '删除成功',
- type: 'success'
- });
- that.AirTicketResSelect();
- } else {
- that.$message.error('删除失败!');
- }
- that.loading = false
- }).catch(function (error) {
- that.loading = false
- that.$message.error("网络错误,请稍后重试");
- });
- }).catch(() => {
- this.$message({
- type: 'info',
- message: '操作已取消!'
- });
- });
- },
- download(index, row) {
- if (row.filePath != "") {
- window.location.href = "http://132.232.92.186:24/Office/GrpFile/商邀相关文件/" + row.attachment
- } else {
- this.$message.error("暂未上传附件");
- }
- }
- },
- filters: {
- numFilter(value) {
- let realVal = "";
- if (!isNaN(value) && value !== "") {
- // 截取当前数据到小数点后两位,改变toFixed的值即可截取你想要的数值
- realVal = parseFloat(value).toFixed(2);
- } else {
- realVal = "--";
- }
- return realVal;
- },
- dataFilter(value){
- return value.spilt(' ')[0]
- }
- },
- mounted() {
- this.token = JSON.parse(localStorage.getItem('userinif')).token;
- this.userId = JSON.parse(localStorage.getItem('userinif')).userInfo.userId
- this.AirTicketResSelect();
- //this.AirTicketResList()
- }
- }
- </script>
- <style>
- .communal-list {
- background-color: #fff;
- padding: 10px;
- box-shadow: 0 0 5px #0005;
- border-radius: 10px;
- min-height: 830px;
-
- }
- .communal-title {
- display: flex;
- font-size: 17px;
- font-weight: 600;
- color: #555;
- margin-top: 8px;
- margin-bottom: 10px;
- justify-content: space-between;
- align-items: center;
- }
- .communal-box {
- display: flex;
- }
- .communal-box>button {
- margin-left: 10px;
- padding: 8px 20px;
- }
- </style>
|