update 修复已知BUG

This commit is contained in:
qijq 2025-06-26 17:56:44 +08:00
parent 82722f61d2
commit bed3f521d0
3 changed files with 12 additions and 12 deletions

View File

@ -1,8 +1,7 @@
import request from '@/utils/request' import request from '@/utils/request'
import { URL } from '@/config' import { URL } from '@/config'
export function getSameCityTransport(params) {
export function getSameCityTransport(params){
return request({ return request({
url: URL.shop.store.sameCityTransport.getSameCityTransport, url: URL.shop.store.sameCityTransport.getSameCityTransport,
method: 'get', method: 'get',
@ -10,7 +9,7 @@ export function getSameCityTransport(params){
}) })
} }
export function delectArea(params){ export function delectArea(params) {
return request({ return request({
url: URL.shop.store.sameCityTransport.delectArea, url: URL.shop.store.sameCityTransport.delectArea,
method: 'post', method: 'post',
@ -18,8 +17,7 @@ export function delectArea(params){
}) })
} }
export function saveSameCityTransport(params) {
export function saveSameCityTransport(params){
params = JSON.stringify(params) params = JSON.stringify(params)
return request({ return request({
url: URL.shop.store.sameCityTransport.saveSameCityTransport, url: URL.shop.store.sameCityTransport.saveSameCityTransport,
@ -27,11 +25,11 @@ export function saveSameCityTransport(params){
headers: { headers: {
'Content-Type': 'application/json', 'Content-Type': 'application/json',
}, },
data:params, data: params,
}) })
} }
export function getSFTypeList(params){ export function getSFTypeList(params) {
return request({ return request({
url: URL.shop.store.sameCityTransport.getSFTypeList, url: URL.shop.store.sameCityTransport.getSFTypeList,
method: 'get', method: 'get',

View File

@ -173,7 +173,7 @@ export default {
}, },
methods: { methods: {
handleSearch(){ handleSearch(){
this.pagination.pageNum = 0; this.pagination.pageNum = 1;
this.pagination.pageSize = 10; this.pagination.pageSize = 10;
this.getGoodsList() this.getGoodsList()
}, },

View File

@ -651,6 +651,7 @@
提交拉卡拉审核 提交拉卡拉审核
</el-button> </el-button>
<el-button <el-button
v-if="form.approval_status != 1"
class="btn" class="btn"
type="danger" type="danger"
@ -665,7 +666,7 @@
class="btn btn-hetong" class="btn btn-hetong"
type="success" type="success"
@click="createShop()" @click="createShop()"
v-if="form.store_status!=1 && form.approval_status == 1" v-if="form.has_apply_mer == 1 && form.approval_status == 5 && form.has_apply_split == 2 && form.store_status == 2"
> >
创建店铺 创建店铺
</el-button> </el-button>
@ -673,9 +674,9 @@
class="btn btn-hetong" class="btn btn-hetong"
type="success" type="success"
@click="createSubAccount()" @click="createSubAccount()"
v-if=" form.has_apply_mer ==1 && form.has_apply_split != 1" v-if=" form.approval_status == 5 && form.has_apply_mer ==1 && form.has_apply_split != 1"
> >
创建分账 分账业务申请
</el-button> </el-button>
<el-button class="btn" @click="close()">取消</el-button> <el-button class="btn" @click="close()">取消</el-button>
</div> </div>
@ -871,6 +872,7 @@ export default {
}, },
methods: { methods: {
async getMerchDetail() { async getMerchDetail() {
this.showLoading = true this.showLoading = true
let res = await getMerchDetail({ id: this.id }) let res = await getMerchDetail({ id: this.id })
if (res && res.status == 200) { if (res && res.status == 200) {
@ -979,7 +981,7 @@ export default {
} }
let msg = let msg =
status == 1 status == 5
? '此操作将通过审核,是否继续?' ? '此操作将通过审核,是否继续?'
: '此操作将驳回审核,是否继续?' : '此操作将驳回审核,是否继续?'