12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- import request from "@/utils/request";
- export function pageQuery(param) {
- return request({
- url: '/mk/bid/subscriptionRule/pageQuery',
- method: 'get',
- params: param
- })
- }
- export function updateState(data) {
- return request({
- url: '/mk/bid/subscriptionRule/updateState',
- method: 'post',
- data: data
- })
- }
- export function updateById(data) {
- return request({
- url: '/mk/bid/subscriptionRule/updateById',
- method: 'post',
- data: data
- })
- }
- export function insert(data) {
- return request({
- url: '/mk/bid/subscriptionRule/insert',
- method: 'post',
- data: data
- })
- }
- export function queryById(url) {
- return request({
- url: `/mk/bid/subscriptionRule/queryById/${url}`,
- method: 'get',
- // params: param
- })
- }
- export function cityQuery() {
- return request({
- url: `/mk/bid/subscriptionRule/cityQuery`,
- method: 'get',
- })
- }
- export function provinceQuery() {
- return request({
- url: `/mk/bid/subscriptionRule/provinceQuery`,
- method: 'get',
- })
- }
- export function getUserList() {
- return request({
- url: `/system/user/list`,
- method: 'get',
- })
- }
|