fix:添加店铺主店列表修改

This commit is contained in:
GaoHao 2025-04-09 15:08:43 +08:00
parent 373fd88226
commit f8c3c41247
2 changed files with 8 additions and 10 deletions

View File

@ -13,7 +13,7 @@
<el-button type="primary" @click="getTableData">查询</el-button>
<el-button @click="resetHandle">重置</el-button>
<span style="margin-left: 30px;">同步设置</span>
<span style="margin-left: 30px;">设置同步方式</span>
<el-select v-model="state.par.dataSyncMethod" @change="setDataSync" placeholder="请设置同步方式"
style="width: 200px">
<el-option v-for="item in state.status" :key="item.type" :label="item.label" :value="item.type" />

View File

@ -19,12 +19,12 @@
<el-radio :value="0"></el-radio>
</el-radio-group>
</el-form-item>
<el-form-item label="主店账号" prop="mainId" v-if="state.form.isHeadShop == '0'&&state.form.shopType != 'only'">
<el-form-item label="选择主店" prop="mainId" v-if="state.form.isHeadShop == '0'&&state.form.shopType != 'only'">
<!-- <el-form-item label="主店账号" prop="mainId" v-if="state.form.shopType != 'only'"> -->
<el-select v-model="state.form.mainId" placeholder="请选择主店铺" filterable reserve-keyword
:remote-method="getTableData" :loading="state.shopListLoading" :disabled="state.form.id || state.type == 'addBranch'">
<el-option v-for="item in state.shopList" :label="`${item.shopName}`" :value="item.id"
:key="item.id"></el-option>
<el-option v-for="item in state.shopList" :label="`${item.shopName}`" :value="item.shopId"
:key="item.shopId"></el-option>
</el-select>
</el-form-item>
<el-form-item label="连锁店扩展店名">
@ -305,19 +305,17 @@ onMounted(() => {
state.resetForm = { ...state.form };
});
//
async function getTableData(query = "") {
console.log(123)
state.shopListLoading = true;
try {
const res = await ShopApi.getList({
page: 1,
size: 100,
shopName: query,
type: "only",
const res = await ShopApi.getBranchList({
isHeadShop: 1,
});
state.shopListLoading = false;
state.shopList = res.records;
state.shopList = res;
} catch (error) {
state.shopListLoading = false;
console.log(error);