添加商户批发申请列表
This commit is contained in:
parent
568a27b6e4
commit
40960d0855
@ -382,4 +382,16 @@ export function marginDeductionForm(id) {
|
||||
*/
|
||||
export function merchantOperateLog(id, data) {
|
||||
return request.get(`system/merchant/get_operate_list/${id}`, data)
|
||||
}
|
||||
}
|
||||
/**
|
||||
* @description 批发申请 -- 列表
|
||||
*/
|
||||
export function wholesaleApplyListApi(id, data) {
|
||||
return request.get(`merchant/intention/list`, data)
|
||||
}
|
||||
/**
|
||||
* @description 批发申请 -- 审核
|
||||
*/
|
||||
export function wholesaleApplyAuditApi(id) {
|
||||
return request.get(`merchant/intention/change/${id}`)
|
||||
}
|
||||
|
@ -67,6 +67,15 @@ const merchantRouter =
|
||||
},
|
||||
component: () => import('@/views/merchant/application')
|
||||
},
|
||||
{
|
||||
path: 'wholesaleApply',
|
||||
name: 'wholesaleApply',
|
||||
meta: {
|
||||
title: '商户批发申请',
|
||||
noCache: true
|
||||
},
|
||||
component: () => import('@/views/merchant/wholesaleApply')
|
||||
},
|
||||
{
|
||||
path: 'agree',
|
||||
name: 'MerchantAgreement',
|
||||
|
182
src/views/merchant/wholesaleApply/index.vue
Normal file
182
src/views/merchant/wholesaleApply/index.vue
Normal file
@ -0,0 +1,182 @@
|
||||
<template>
|
||||
<div class="divBox">
|
||||
<div class="selCard mb14">
|
||||
<el-form :model="tableFrom" ref="searchForm" size="small" inline label-width="85px">
|
||||
<el-form-item label="类型:" prop="type">
|
||||
<el-select v-model="tableFrom.type" clearable placeholder="请选择" class="selWidth" @change="getList(1)">
|
||||
<el-option label="春耕采购补贴" value="1" />
|
||||
<el-option label="增收补贴" value="2" />
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="状态:" prop="status">
|
||||
<el-select v-model="tableFrom.status" clearable placeholder="请选择" class="selWidth" @change="getList(1)">
|
||||
<el-option label="未激活" value="-1" />
|
||||
<el-option label="审核中" value="0" />
|
||||
<el-option label="待确认" value="1" />
|
||||
<el-option label="已到账" value="2" />
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button type="primary" size="small" @click="getList(1)">搜索</el-button>
|
||||
<el-button size="small" @click="searchReset()">重置</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
</div>
|
||||
<cards-data v-if="cardLists.length>0" :card-lists="cardLists" />
|
||||
<el-card>
|
||||
<el-table
|
||||
v-loading="listLoading"
|
||||
:data="tableData.data"
|
||||
size="small"
|
||||
class="table"
|
||||
highlight-current-row
|
||||
>
|
||||
<el-table-column label="商户ID" min-width="80">
|
||||
<template slot-scope="scope">
|
||||
<span>{{ scope.row.mer_id }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop=".mer_name" label="商户名称" min-width="150" />
|
||||
<el-table-column prop="type_name" label="申请类型" min-width="120" />
|
||||
<el-table-column prop="create_time" label="创建时间" min-width="150" sortable />
|
||||
<el-table-column label="操作" min-width="150" fixed="right">
|
||||
<template slot-scope="scope">
|
||||
<el-button
|
||||
type="text"
|
||||
size="small"
|
||||
@click="handleStatus(scope.row.mer_id, scope.$index)"
|
||||
>审核</el-button>
|
||||
</template>
|
||||
<template slot-scope="scope">
|
||||
<router-link v-if="scope.row.status == 0" :to=" { path:`${roterPre}` + '/order/list?order_sn='+scope.row.mer_id } ">
|
||||
<el-button type="text" size="small" class="mr10">审核</el-button>
|
||||
</router-link>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
<div class="block">
|
||||
<el-pagination
|
||||
background
|
||||
:page-size="tableFrom.limit"
|
||||
:current-page="tableFrom.page"
|
||||
layout="total, prev, pager, next, jumper"
|
||||
:total="tableData.total"
|
||||
@size-change="handleSizeChange"
|
||||
@current-change="pageChange"
|
||||
/>
|
||||
</div>
|
||||
</el-card>
|
||||
<!-- <editForm ref="editForm" @complete="fetchData"></editForm> -->
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { wholesaleApplyListApi, wholesaleApplyAuditApi } from '@/api/merchant'
|
||||
import { fromList } from '@/libs/constants.js'
|
||||
import createWorkBook from '@/utils/newToExcel.js'
|
||||
import fileList from '@/components/exportFile/fileList'
|
||||
import { roterPre } from '@/settings'
|
||||
import cardsData from "@/components/cards/index";
|
||||
import timeOptions from '@/utils/timeOptions';
|
||||
export default {
|
||||
name: 'AccountsCapitalFlow',
|
||||
components: { fileList, cardsData },
|
||||
data() {
|
||||
return {
|
||||
pickerOptions: timeOptions,
|
||||
timeVal: [],
|
||||
tableData: {
|
||||
data: [],
|
||||
total: 0
|
||||
},
|
||||
roterPre: roterPre,
|
||||
listLoading: true,
|
||||
tableFrom: {
|
||||
type: '',
|
||||
status: '',
|
||||
keyword: '',
|
||||
page: 1,
|
||||
limit: 20
|
||||
},
|
||||
fromList: fromList,
|
||||
options: [],
|
||||
cardLists: [],
|
||||
}
|
||||
},
|
||||
mounted() {
|
||||
this.getList()
|
||||
},
|
||||
methods: {
|
||||
/**重置 */
|
||||
searchReset(){
|
||||
this.timeVal = []
|
||||
this.tableFrom.type = ""
|
||||
this.tableFrom.status = ""
|
||||
this.$refs.searchForm.resetFields()
|
||||
this.getList(1)
|
||||
},
|
||||
// 具体日期
|
||||
onchangeTime(e) {
|
||||
this.timeVal = e
|
||||
this.tableFrom.date = e ? this.timeVal.join('-') : ''
|
||||
this.tableFrom.page = 1;
|
||||
this.getList()
|
||||
},
|
||||
async exports(x) {
|
||||
let excelData = JSON.parse(JSON.stringify(this.tableFrom)), data = []
|
||||
excelData.page = 1
|
||||
let pageCount = 1
|
||||
let lebData = {};
|
||||
for (let i = 0; i < pageCount; i++) {
|
||||
lebData = await this.downData(excelData)
|
||||
pageCount = Math.ceil(lebData.count/excelData.limit)
|
||||
if (lebData.export.length) {
|
||||
data = data.concat(lebData.export)
|
||||
excelData.page++
|
||||
}
|
||||
}
|
||||
createWorkBook(lebData.header, lebData.title, data, lebData.foot,lebData.filename);
|
||||
return
|
||||
},
|
||||
// 列表
|
||||
getList(num) {
|
||||
this.listLoading = true
|
||||
this.tableFrom.page = num ? num : this.tableFrom.page;
|
||||
wholesaleApplyListApi(this.tableFrom)
|
||||
.then((res) => {
|
||||
this.tableData.data = res.data.list
|
||||
this.tableData.total = res.data.count
|
||||
this.listLoading = false
|
||||
})
|
||||
.catch((res) => {
|
||||
this.$message.error(res.message)
|
||||
this.listLoading = false
|
||||
})
|
||||
},
|
||||
pageChange(page) {
|
||||
this.tableFrom.page = page
|
||||
this.getList()
|
||||
},
|
||||
// 审核
|
||||
handleStatus(id, idx) {
|
||||
this.$modalSure('确定审核通过当前数据?').then(() => {
|
||||
wholesaleApplyAuditApi({id: id})
|
||||
.then(({ message }) => {
|
||||
this.$message.success(message);
|
||||
this.getList(1)
|
||||
})
|
||||
.catch(({ message }) => {
|
||||
this.$message.error(message);
|
||||
});
|
||||
});
|
||||
},
|
||||
handleSizeChange(val) {
|
||||
this.tableFrom.limit = val
|
||||
this.getList()
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
</style>
|
Loading…
x
Reference in New Issue
Block a user