123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- import request from '@/utils/request'
- /**
- * 会费缴交列表
- * @param {Object} data 参数
- */
- export function list() {
- return request({
- 'url': '/cost/list',
- headers: {
- isToken: true
- },
- 'method': 'get',
- 'data': null
- })
- }
- /**
- * 个人会费代缴查询
- * @param {Object} data 参数
- */
- export function person(data) {
- return request({
- 'url': '/cost/person',
- headers: {
- isToken: true
- },
- 'method': 'post',
- 'data': data
- })
- }
- /**
- * 个人会费支付
- * @param {Object} data 参数
- */
- export function personPayment(data) {
- return request({
- 'url': '/cost/person/payment',
- headers: {
- isToken: true
- },
- 'method': 'post',
- 'data': data
- })
- }
- /**
- * 单位会费代缴查询
- * @param {Object} data 参数
- */
- export function dept(data) {
- return request({
- 'url': '/cost/dept',
- headers: {
- isToken: true
- },
- 'method': 'post',
- 'data': data
- })
- }
- /**
- * 单位会费支付
- * @param {Object} data 参数
- */
- export function deptPayment(data) {
- return request({
- 'url': '/cost/dept/payment',
- headers: {
- isToken: true
- },
- 'method': 'post',
- 'data': data
- })
- }
- // 会费缴交文字说明
- export function getPersonCastAgree(){
- return request({
- url: '/explain/due',
- headers: {
- isToken: false
- },
- 'method': 'get'
- })
- }
- // 代缴个人会费缴交文字说明
- export function getSubPersonCastAgree(){
- return request({
- url: `/explain/prePayDue/1`,
- headers: {
- isToken: false
- },
- 'method': 'get'
- })
- }
- // 代缴单位会费缴交文字说明
- export function getSubUnitCastAgree(){
- return request({
- url: `/explain/prePayDue/2`,
- headers: {
- isToken: false
- },
- 'method': 'get'
- })
- }
|