From a4b3ee325c7354579d495bc74a777e494e5ec38c Mon Sep 17 00:00:00 2001
From: quanwei <419654421@qq.com>
Date: Fri, 06 Feb 2026 18:18:44 +0800
Subject: [PATCH] 商品可以价格面议 选择走访时显示输入走访企业名 分会添加活动时要总会审核 分类添加人数限制,添加活动选择了填写人数限制的分类时活动名额下显示该分类人数限制为15 同一个企业30天内只能走访一次,在30天内走访同一个企业时提示该企业已被走访xx天后才可以从新走访
---
shop_vue/src/views/plus/business/industry/index.vue | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/shop_vue/src/views/plus/business/industry/index.vue b/shop_vue/src/views/plus/business/industry/index.vue
index f1212c8..0573acb 100644
--- a/shop_vue/src/views/plus/business/industry/index.vue
+++ b/shop_vue/src/views/plus/business/industry/index.vue
@@ -8,7 +8,7 @@
<!--添加行业-->
<div class="common-level-rail">
- <el-button size="small" type="primary" @click="addClick" icon="el-icon-plus" v-auth="'/plus/business/industry/add'">添加行业</el-button>
+ <el-button size="small" type="primary" v-auth="'/plus/business/industry/add'" @click="addClick" icon="el-icon-plus">添加行业</el-button>
</div>
<!--内容-->
@@ -43,7 +43,7 @@
</template>
<script>
-import PlusApi from '@/api/plus';
+import BusinessApi from '@/api/business';
import Add from './Add.vue';
import Edit from './Edit.vue';
export default {
@@ -76,7 +76,7 @@
/*获取列表*/
getData() {
let self = this;
- PlusApi.getIndustryList({}, true)
+ BusinessApi.industryList({}, true)
.then(data => {
self.loading = false;
self.tableData = data.data.list.tree;
@@ -118,7 +118,7 @@
self.$confirm('删除后不可恢复,确认删除该记录吗?', '提示', {
type: 'warning'
}).then(() => {
- PlusApi.deleteIndustry({
+ BusinessApi.deleteIndustry({
industry_id: row.industry_id
}).then(data => {
self.$message({
@@ -141,7 +141,7 @@
sort: row.sort,
status: status
};
- PlusApi.editIndustry(
+ BusinessApi.industryEdit(
params,
true
)
--
Gitblit v1.9.2