|
- <template>
- <div class="app-container">
- <van-nav-bar
- left-arrow
- fixed
- placeholder
- @click-left="$router.back(-1)"
- @click-right="goAdd()"
- >
- <template #title>
- <p style="font-weight: bold;">现金使用申请列表</p>
- </template>
- <template #right>
- <van-icon name="add" size="18"/>
- </template>
- </van-nav-bar>
-
- <van-list
- v-model="loading"
- :finished="finished"
- finished-text="没有更多了"
- @load="getList"
- >
- <van-swipe-cell v-for="(item,index) in applicationList" :key="index">
- <van-cell :title="item.payer" :value="item.auditStatus" center :to="{name:'approvalDetail11', query: {id:item.id}}">
- <template #icon>
- <van-icon name="../../../../../static/images/onlineHome/icon_yn7.png" size="30" color="#539FFD" style="margin-right: 10px;" />
- </template>
- <template #label>
- <p><span><i>¥</i>{{item.expenditureAmount}}</span><i style="margin-right: 1rem;"></i>{{item.applyDate}}</p>
- </template>
- </van-cell>
- <template #right>
- <van-row>
- <van-col>
- <van-button v-if="item.auditStatus=='草稿'||item.auditStatus=='驳回'" square text="修改" type="info" :to="{name:'approvalModify11', query: {id:item.id}}" class="delete-button" />
- </van-col>
- <van-col>
- <van-button v-if="item.auditStatus=='草稿'||item.auditStatus=='驳回'" color="#FFA63E" square text="提交" type="info" @click="onSubmit(item.id)" class="delete-button" />
- </van-col>
- <van-col>
- <van-button v-if="item.auditStatus=='草稿'||item.auditStatus=='驳回'" square text="删除" type="danger" @click="deleteList(item.id,index)" class="delete-button" />
- </van-col>
- </van-row>
- </template>
- </van-swipe-cell>
- </van-list>
- </div>
- </template>
-
- <script>
- import { listTransfer , customSubmit , delTransfer } from "@/api/onlineHome/bankAgriculture/paymentApproval";
- import {cashSubmit, delCash, listCash} from "../../../../api/onlineHome/bankAgriculture/paymentApproval";
- export default {
- name: "approvalList11",
- data() {
- return {
- applicationList:[],
- auditStatusOptions:[],
- loading: false,
- finished: false,
- queryParams:{
- pageNum:1,
- pageSize:10,
- cashType: '11',
- }
- };
- },
- created() {
- this.getDicts("audit_status").then((response) => {
- this.auditStatusOptions = response.data;
- });
- },
- methods: {
- goAdd(){
- window.location = 'approvalAdd11';
- },
- getList(){
- setTimeout(() => {
- listCash(this.queryParams).then(response => {
- console.log(response)
- for (var i = 0; i < response.rows.length; i++) {
- response.rows[i].auditStatus = this.selectDictLabel(this.auditStatusOptions, response.rows[i].auditStatus);
- this.applicationList.push(response.rows[i]);
- }
- console.log(this.applicationList.length >= response.total)
- if(this.applicationList.length >= response.total){
- this.finished = true;
- return;
- }else{
- this.loading = false;
- this.queryParams.pageNum += 1 ;
- }
- });
- }, 1000);
- },
- deleteList(id,index){
- this.$dialog.confirm({
- message: '您确认删除草稿?',
- })
- .then(() => {
- // on confirm
- this.applicationList.splice(index,1)
- delCash(id).then(res => {
- if(res.code = 200){
- this.$toast.success('删除成功');
- }
- });
- })
- .catch(() => {
- // on cancel
- });
- },
- onSubmit(id){
- this.$dialog.confirm({
- message: '您确认提交草稿?',
- })
- .then(() => {
- cashSubmit(id).then(res => {
- this.$toast.success('提交成功');
- setTimeout(function(){
- history.go(0)
- },2000)
- })
- })
- .catch(() => {
- // on cancel
- });
- }
- },
- }
- </script>
-
- <style scoped lang="scss">
- .app-container {
- padding: 0.2rem 3%;
- }
- /deep/.van-cell__title{
- flex: 0.7;
- }
- /deep/.van-cell__title span{
- font-family: Arial;
- font-size: 0.4rem;
- font-weight: normal;
-
- }
- /deep/.van-cell__label span{
- color: #1D6FE9;
- font-weight: bold;
- i{
- font-size: 0.2rem;
- }
- }
- /deep/.van-cell__value{
- flex: 0.3;
- color: #1D6FE9;
- font-weight: bold;
- }
- /deep/.van-swipe-cell{
- margin-bottom: 0.2rem;
- border-radius: 0.2rem;
- overflow: hidden;
- box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);
- }
- /deep/van-ellipsis{
- font-weight: bold;
- }
- .van-row{
- height: 100%;
- }
- .van-col{
- height: 100%;
- }
- .delete-button {
- height: 100%;
- }
- </style>
|