企业库导入功能

This commit is contained in:
yunkexin 2026-04-16 17:56:47 +08:00
parent 0d96842248
commit 609dcc7663

View File

@ -17,14 +17,14 @@
</u-form-item>
<u--textarea v-model="dataModel.CONTENTS" disabled placeholder="请输入内容" autoHeight></u--textarea>
<u-form-item label="开始时间">
<!-- @click="handleChangeRecitify('start')" -->
<!-- @click="handleChangeRecitify('start')" -->
<u--input v-model="dataModel.START_DATE" disabled placeholder="请选择时间" Color="#ffffff" inputAlign="right" fontSize="14px" border="none">
</u--input>
<!-- <u-icon style="margin-left: 4px;" slot="right" name="arrow-down" size="12">
</u-icon> -->
</u-form-item>
<u-form-item label="结束时间">
<!-- @click="handleChangeRecitify('end')" -->
<!-- @click="handleChangeRecitify('end')" -->
<u--input v-model="dataModel.END_DATE" disabled placeholder="请选择时间" Color="#ffffff" inputAlign="right" fontSize="14px" border="none">
</u--input>
<!-- <u-icon style="margin-left: 4px;" disabled slot="right" name="arrow-down" size="12">
@ -100,16 +100,23 @@
</u-form-item>
<u-form-item label="应急处置" prop="HIDDEN_PLACE" border-bottom>
</u-form-item>
<u--textarea v-model="item.EMERGENCY" placeholder="请填写应急处置" autoHeight maxlength="-1"></u--textarea>
<u-form-item label="是否有效" prop="HIDDEN_PLACE" @click="handleChangeUnit(index,'ENABLE_STATUS')">
<u--input v-model="item.ENABLE_STATUS" placeholder="请选择是否有效" disabledColor="#ffffff" inputAlign="right" fontSize="14px" border="none">
<u--textarea v-model="item.EMERGENCY" placeholder="请填写应急处置" autoHeight maxlength="-1"></u--textarea>
<u-form-item label="新增标识" prop="HIDDEN_PLACE" border-bottom>
<u--input v-model="item.MARK_NAME" disabled disabledColor="#ffffff" inputAlign="right" fontSize="14px" border="none">
</u--input>
</u-form-item>
<u-form-item label="是否有效" prop="HIDDEN_PLACE" @click="handleChangeUnit(index,'SKEnableStatusEnum')">
<u--input v-model="item.ENABLE_STATUS_NAME" placeholder="请选择是否有效" disabledColor="#ffffff" inputAlign="right" fontSize="14px" border="none">
</u--input>
<u-icon style="margin-left: 4px;" slot="right" name="arrow-down" size="12">
</u-icon>
</u-form-item>
</view>
</view>
<u-button text="新增检查区域" type="primary" @click="handleNewCheckContent"></u-button>
<view style="padding: 10px 16px;display: flex;flex-direction: row;">
<u-button type="primary" @click="handleNewCheckContent" color="#3d4b70">新增检查区域</u-button>
<u-button type="primary" @click="handleNewCheckList" color="#3d4b70" style="margin-left: 5px;">导入企业库内容</u-button>
</view>
</u--form>
</view>
<view style="padding: 10px 16px;display: flex;flex-direction: row;" v-if="stepsPageList === 1" class="bottom-button">
@ -118,8 +125,49 @@
</view>
<u-picker :show="showPopupUnit" :columns="UnitLists" @confirm="confirmUnit" @cancel="cancelUnit" :defaultIndex="UnitDefaultIndex" keyName="NAME"></u-picker>
<u-modal :show="showDelModalIndex >= 0" @confirm="confirmDel" @cancel="cacelDel" :showCancelButton="true" title="确认删除?"></u-modal>
<u-modal :show="showEnterpriseLibrary" :closeOnClickOverlay="false" :showCancelButton="true" @confirm="confirmEnterpriseSelection" @cancel="cancelEnterpriseSelection" title="选择企业库内容">
<view class="enterprise-list-container">
<view class="enterprise-list" :style="{ maxHeight: '400px', overflowY: 'auto' }">
<view v-for="(item, idx) in enterpriseLibraryList" :key="item.ID" class="enterprise-item" >
<u-checkbox-group><u-checkbox :checked="selectedEnterpriseIndices.includes(idx)" shape="circle" @change="(e) => toggleEnterpriseSelection(idx, e)"></u-checkbox></u-checkbox-group>
<view class="enterprise-info" >
<text class="enterprise-detail">{{idx+1}}.生产单元 : </text>
<text class="enterprise-name">{{ item.Nav_ProductionUnit.NAME || '' }}</text>
<text class="enterprise-detail">辨识区域 : </text>
<text class="enterprise-name">{{ item.Nav_Area.NAME || '' }}</text>
<text class="enterprise-detail">风险名称 : </text>
<text class="enterprise-name">{{ item.RISK_NAME || '' }}</text>
<text class="enterprise-detail">风险描述 : </text>
<text class="enterprise-name">{{ item.RISK_DESCRIPTION || '' }}</text>
<text class="enterprise-detail">风险类别 : </text>
<text class="enterprise-name">{{ item.Nav_Type.NAME || '' }}</text>
<text class="enterprise-detail">管控措施 : </text>
<text class="enterprise-name">{{ item.MEASURE || '' }}</text>
<text class="enterprise-detail">应急处置 : </text>
<text class="enterprise-name">{{ item.EMERGENCY || '' }}</text>
</view>
</view>
<view v-if="enterpriseLibraryList.length === 0 && !enterpriseLibraryLoading" class="empty-tip">暂无企业库数据</view>
</view>
<!-- 底部加载更多按钮 -->
<view class="load-more-footer" v-if="enterpriseLibraryList.length > 0">
<u-button v-if="enterpriseLibraryHasMore" type="primary" :plain="true" :loading="enterpriseLibraryLoading" @click="loadMoreEnterpriseData" class="load-more-btn" size="small">
{{ enterpriseLibraryLoading ? '加载中...' : '加载更多' }}
</u-button>
<view v-else class="no-more-tip"> 没有更多数据了 </view>
</view>
</view>
</u-modal>
<u-datetime-picker :show="showPopupRecitifyDate" v-model="dateRecitifyTime" mode="date" @confirm="confirmRecitifyDate" @cancel="cancelRecitifyDate"></u-datetime-picker>
<query-selector :show="showPopupStep" :total="curTotalStep" :lists="stepLists" :defaultValue="currentOperateStep.NAME" @close="handleClosePopupStep" @search="handleSearchStep" @select="handleSelectedStep" />
</view>
</view>
</template>
@ -135,7 +183,8 @@
guid,
initFilter,
initFilterGroup,
handleOriginalArray
handleOriginalArray,
transformData
} from '../../../../utils/common'
import {
FMProductionUnit,
@ -154,6 +203,10 @@
GetRiskTypeInfo,
GetRiskNameInfo,
} from '../../../../services/apply/subPages/SK/SKServices.js'
import {
getEnum,
GetEnumAnyOrder
} from '../../../../services/common';
import {
getRequest,
} from '../../../../services/apply/FOServices/FOServices';
@ -179,6 +232,15 @@
stepLoad: true,
UnitLists: [],
UnitDefaultIndex: [0],
//
showEnterpriseLibrary: false,
enterpriseLibraryList: [],
selectedEnterpriseIndices: [],
//
enterpriseLibraryPageIndex: 1,
enterpriseLibraryHasMore: true,
enterpriseLibraryLoading: false,
enterpriseLibraryTotal: 0,
dataModel: {
YEAR: '',
START_DATE: '',
@ -188,7 +250,7 @@
NAME: ''
},
RequireName: '',
IDENTIFY_EVALUATION_PLAN_ID:null,
IDENTIFY_EVALUATION_PLAN_ID: null,
Nav_Files: [],
Nav_Details: [{
showPack: false,
@ -210,7 +272,7 @@
}]
},
model: {
ORG_ID:'',
ORG_ID: '',
YEAR: '',
START_DATE: '',
END_DATE: '',
@ -219,7 +281,7 @@
NAME: ''
},
RequireName: '',
IDENTIFY_EVALUATION_PLAN_ID:null,
IDENTIFY_EVALUATION_PLAN_ID: null,
Nav_Files: [],
Nav_Details: [{
MineType: '',
@ -247,15 +309,29 @@
TaskID: '',
nowName: '',
nowIndex: 0,
enumsData: {}, //
enumsText: {} //
}
},
onLoad(option) {
this.TaskID = option.taskID ? option.taskID : '';
this.ID = option.ID ? option.ID : '';
this.loadData()
this.fetchEnums(['SKMarkEnum', 'SKEnableStatusEnum']);
},
methods: {
fetchEnums(enumNames) {
var dataParm = {
'name': enumNames.join('|')
}
GetEnumAnyOrder(dataParm).then(res => {
let newd = transformData(res, enumNames)
this.enumsData = newd[0];
//
this.enumsText = newd[1]
this.loadData();
})
},
loadData() {
// const json = {}
const orgId = uni.getStorageSync('orgId')
@ -278,13 +354,14 @@
this.dataModel.Nav_Require = res.Nav_Require ? res.Nav_Require : {
NAME: ''
},
this.dataModel.RequireName = res.Nav_Require ? res.Nav_Require.NAME : {
this.dataModel.RequireName = res.Nav_Require ? res.Nav_Require.NAME : {
NAME: ''
},
this.dataModel.Nav_Details.map(item => {
item['showPack'] = false
item.ENABLE_STATUS = item.ENABLE_STATUS == 0 ? '有效' : '无效'
})
this.dataModel.Nav_Details.map(item => {
item['showPack'] = false
item.ENABLE_STATUS_NAME = item.ENABLE_STATUS !== undefined ? this.enumsData['SKEnableStatusEnum'].find(item1 => item1.code === item.ENABLE_STATUS).name : '';
item.MARK_NAME = item.MARK !== undefined ? this.enumsData['SKMarkEnum'].find(item1 => item1.code === item.MARK).name : '';
})
this.stepLoad = false
})
@ -306,17 +383,17 @@
})
} else {
this.UnitLists = [SKEffective]
this.UnitLists = [this.enumsData[name]]
}
this.showPopupUnit = true
},
confirmUnit(e) {
console.log(e,'11')
if (this.nowIndex[1] == 'MinType') {
this.dataModel.Nav_Details[this.nowIndex[0]].Nav_ProductionUnit = e.value[0]
this.dataModel.Nav_Details[this.nowIndex[0]].PRODUCTION_UNIT_ID = e.value[0].ID
} else {
this.dataModel.Nav_Details[this.nowIndex[0]].ENABLE_STATUS = e.value[0]
this.dataModel.Nav_Details[this.nowIndex[0]].ENABLE_STATUS = e.value[0].code
this.dataModel.Nav_Details[this.nowIndex[0]].ENABLE_STATUS_NAME = e.value[0].name
}
this.showPopupUnit = false
},
@ -329,16 +406,16 @@
handleNewCheckContent() {
this.dataModel.Nav_Details.push({
showPack: false,
Nav_ProductionUnit:{
NAME: ''
Nav_ProductionUnit: {
NAME: ''
},
PRODUCTION_UNIT_ID:'',
PRODUCTION_UNIT_ID: '',
Nav_Area: {
NAME: ''
},
ORG_ID:this.ORG_ID,
ORG_ID: this.ORG_ID,
RISK_NAME: '',
Nav_RiskName:{
Nav_RiskName: {
NAME: ''
},
RISK_DESCRIPTION: '',
@ -347,11 +424,257 @@
},
MEASURE: '',
EMERGENCY: '',
ENABLE_STATUS: '有效',
ENABLE_STATUS: this.enumsData['SKEnableStatusEnum'][0].code,
ENABLE_STATUS_NAME: this.enumsData['SKEnableStatusEnum'][0].name,
MARK: this.enumsData['SKMarkEnum'].find(item1 => item1.name === '新增').code,
MARK_NAME: this.enumsData['SKMarkEnum'].find(item1 => item1.name === '新增').name,
})
this.dataModel.Nav_Details = [...this.dataModel.Nav_Details]
},
handleNewCheckList() {
//
this.enterpriseLibraryPageIndex = 1
this.enterpriseLibraryHasMore = true
this.enterpriseLibraryList = []
this.selectedEnterpriseIndices = []
this.loadEnterpriseLibraryData()
},
loadEnterpriseLibraryData(isLoadMore = false) {
if (this.enterpriseLibraryLoading) return
if (!isLoadMore) {
this.enterpriseLibraryPageIndex = 1
this.enterpriseLibraryHasMore = true
this.enterpriseLibraryList = []
this.selectedEnterpriseIndices = []
}
if (!this.enterpriseLibraryHasMore && isLoadMore) {
uni.showToast({
title: '没有更多数据了',
icon: 'none'
})
return
}
this.enterpriseLibraryLoading = true
const json = initFilter(this.ORG_ID)
extendInclude(json, 'Nav_ProductionUnit');
extendInclude(json, 'Nav_Area');
extendInclude(json, 'Nav_Type');
json.SelectField = [
"CODE",
"Nav_ProductionUnit.NAME",
"Nav_Area.NAME",
"RISK_NAME",
"RISK_DESCRIPTION",
"Nav_Type.NAME",
"CHECKLEVEL",
"CHECKDEPT",
"CHECKPOST",
"EVALUATE_LEVEL",
"MEASURE",
"EMERGENCY",
"ID",
"ORG_ID",
"PRODUCTION_UNIT_ID",
"AREA_ID",
"TYPE_ID",
"RISK_NAME_ID"
]
json.Limit = 2
json.PageIndex = this.enterpriseLibraryPageIndex
json.Start = (this.enterpriseLibraryPageIndex - 1) * json.Limit
getRequest(json, "/SK/SKEnterpriseLibrary/SKOrderPaged").then(res => {
this.enterpriseLibraryLoading = false
if (res && res.length > 0) {
if (isLoadMore) {
this.enterpriseLibraryList = [...this.enterpriseLibraryList, ...res]
} else {
this.enterpriseLibraryList = res
}
//
this.enterpriseLibraryHasMore = res.length >= json.Limit
this.enterpriseLibraryPageIndex++
this.showEnterpriseLibrary = true
} else {
if (isLoadMore) {
this.enterpriseLibraryHasMore = false
uni.showToast({
title: '没有更多数据了',
icon: 'none'
})
} else {
if (this.enterpriseLibraryList.length === 0) {
this.showEnterpriseLibrary = false
uni.showToast({
title: '暂无企业库数据',
icon: 'none'
})
}
}
}
}).catch(err => {
this.enterpriseLibraryLoading = false
uni.showToast({
title: '加载失败',
icon: 'none'
})
})
},
//
loadMoreEnterpriseData() {
if (this.enterpriseLibraryHasMore && !this.enterpriseLibraryLoading) {
this.loadEnterpriseLibraryData(true)
} else if (!this.enterpriseLibraryHasMore && this.enterpriseLibraryList.length > 0) {
uni.showToast({
title: '没有更多数据了',
icon: 'none'
})
}
},
handleEnterpriseListScroll(e) {
if (this.enterpriseLibraryHasMore && !this.enterpriseLibraryLoading) {
this.loadEnterpriseLibraryData(true)
} else if (!this.enterpriseLibraryHasMore && this.enterpriseLibraryList.length > 0) {
uni.showToast({
title: '没有更多数据了',
icon: 'none'
})
}
},
//
toggleEnterpriseSelection(index) {
const idx = this.selectedEnterpriseIndices.indexOf(index)
if (idx === -1) {
this.selectedEnterpriseIndices.push(index)
} else {
this.selectedEnterpriseIndices.splice(idx, 1)
}
},
//
confirmEnterpriseSelection() {
if (this.selectedEnterpriseIndices.length === 0) {
uni.showToast({
title: '请至少选择一项',
icon: 'none'
})
return
}
//
const newDetails = []
const duplicateItems = []
this.selectedEnterpriseIndices.forEach(idx => {
const enterpriseItem = this.enterpriseLibraryList[idx]
//
const isDuplicate = this.dataModel.Nav_Details.some(existingItem =>
existingItem.AREA_ID === (enterpriseItem.AREA_ID || '') &&
existingItem.PRODUCTION_UNIT_ID === (enterpriseItem.PRODUCTION_UNIT_ID || '') &&
existingItem.RISK_NAME === (enterpriseItem.RISK_NAME || '')
)
if (isDuplicate) {
duplicateItems.push({
生产单元: enterpriseItem.Nav_ProductionUnit?.NAME || '',
辨识区域: enterpriseItem.Nav_Area?.NAME || '',
风险名称: enterpriseItem.RISK_NAME || ''
})
return
}
const convertedItem = {
showPack: false,
PRODUCTION_UNIT_ID: enterpriseItem.PRODUCTION_UNIT_ID || '',
Nav_ProductionUnit: enterpriseItem.Nav_ProductionUnit || {
NAME: ''
},
AREA_ID: enterpriseItem.AREA_ID || '',
Nav_Area: enterpriseItem.Nav_Area || {
NAME: ''
},
RISK_NAME: enterpriseItem.RISK_NAME || '',
RISK_NAME_ID: enterpriseItem.RISK_NAME_ID || '',
Nav_RiskName: enterpriseItem.Nav_RiskName || {
NAME: ''
},
RISK_DESCRIPTION: enterpriseItem.RISK_DESCRIPTION || '',
TYPE_ID: enterpriseItem.TYPE_ID || '',
Nav_Type: enterpriseItem.Nav_Type || {
NAME: ''
},
MEASURE: enterpriseItem.MEASURE || '',
EMERGENCY: enterpriseItem.EMERGENCY || '',
ENABLE_STATUS: this.enumsData['SKEnableStatusEnum'][0].code,
ENABLE_STATUS_NAME: this.enumsData['SKEnableStatusEnum'][0].name,
MARK: this.enumsData['SKMarkEnum'].find(item1 => item1.name === '新增').code,
MARK_NAME: this.enumsData['SKMarkEnum'].find(item1 => item1.name === '新增').name,
ORG_ID: this.ORG_ID
}
newDetails.push(convertedItem)
})
//
if (duplicateItems.length > 0) {
const duplicateCount = duplicateItems.length
let message = ''
if (duplicateCount === 1) {
const dup = duplicateItems[0]
message = `以下数据已存在,无法重复导入:\n生产单元${dup.生产单元}\n辨识区域${dup.辨识区域}\n风险名称${dup.风险名称}`
} else {
message = `${duplicateCount} 条数据已存在,无法重复导入:\n`
duplicateItems.slice(0, 3).forEach((dup, i) => {
message += `${i+1}. ${dup.生产单元} / ${dup.辨识区域} / ${dup.风险名称}\n`
})
if (duplicateCount > 3) {
message += `...等共 ${duplicateCount}`
}
}
uni.showModal({
title: '重复数据提示',
content: message,
showCancel: false,
confirmText: '知道了'
})
}
if (newDetails.length > 0) {
this.dataModel.Nav_Details.push(...newDetails)
uni.showToast({
title: `成功导入 ${newDetails.length} 条数据${duplicateItems.length > 0 ? `,跳过 ${duplicateItems.length} 条重复数据` : ''}`,
icon: 'success',
duration: 2000
})
} else if (duplicateItems.length > 0) {
uni.showToast({
title: `所选数据均重复,未导入任何内容`,
icon: 'none',
duration: 2000
})
}
this.showEnterpriseLibrary = false
this.selectedEnterpriseIndices = []
},
//
cancelEnterpriseSelection() {
this.showEnterpriseLibrary = false
this.selectedEnterpriseIndices = []
this.enterpriseLibraryList = []
this.enterpriseLibraryPageIndex = 1
this.enterpriseLibraryHasMore = true
this.enterpriseLibraryLoading = false
},
handleDelRowBefore(index) {
this.showDelModalIndex = index
this.nowIndex = index
@ -398,9 +721,9 @@
// this.showPopupCertificate = false
},
handleSearchStep(val, pageIndex) {
let requestInfo = this.nowIndex[1] == 'demand' ? GetSKRequestInfo : this.nowIndex[1] == 'Area' ? GetRiskAreaInfo : this.nowIndex[1] == 'RiskName' ? GetRiskNameInfo:GetRiskTypeInfo
let requestInfo = this.nowIndex[1] == 'demand' ? GetSKRequestInfo : this.nowIndex[1] == 'Area' ? GetRiskAreaInfo : this.nowIndex[1] == 'RiskName' ? GetRiskNameInfo : GetRiskTypeInfo
const orgId = uni.getStorageSync('orgId')
const json = initFilter(orgId, "", "",0, pageIndex ?? 1)
const json = initFilter(orgId, "", "", 0, pageIndex ?? 1)
json.Limit = 20
if (pageIndex) {
@ -413,7 +736,7 @@
}
requestInfo(json).then(res => {
// if (res.IsSuccessful) {
this.stepLists = (res.Data || res).map(i => {
this.stepLists = (res.Data || res).map(i => {
return {
...i,
id: i.ID,
@ -437,8 +760,7 @@
} else if (this.nowIndex[1] == 'RiskName') {
this.dataModel.Nav_Details[this.nowIndex[0]].Nav_RiskName.NAME = val.NAME
this.dataModel.Nav_Details[this.nowIndex[0]].RISK_NAME_ID = val.ID
}
else {
} else {
this.dataModel.Nav_Details[this.nowIndex[0]].Nav_Type.NAME = val.NAME
this.dataModel.Nav_Details[this.nowIndex[0]].TYPE_ID = val.ID
}
@ -447,18 +769,18 @@
},
submit() {
let i = 1
let i = 1
for (let item of this.dataModel.Nav_Details) {
if (!item.PRODUCTION_UNIT_ID) {
uni.showToast({
title: '顺序' + i +'生产单元不能为空',
title: '顺序' + i + '生产单元不能为空',
icon: 'none'
})
return
}
if (!item.Nav_Area.NAME) {
uni.showToast({
title: '顺序' + i +'辨识区域不能为空',
title: '顺序' + i + '辨识区域不能为空',
icon: 'none'
})
return
@ -479,14 +801,14 @@
// }
if (!item.RISK_DESCRIPTION) {
uni.showToast({
title: '顺序' + i +'风险描述不能为空',
title: '顺序' + i + '风险描述不能为空',
icon: 'none'
})
return
}
if (!item.Nav_Type.NAME) {
uni.showToast({
title: '顺序' + i +'风险类别不能为空',
title: '顺序' + i + '风险类别不能为空',
icon: 'none'
})
return
@ -497,32 +819,33 @@
// this.model = this.dataModel
this.model.ORG_ID = this.ORG_ID
let arr=[]
let arr = []
this.dataModel.Nav_Details.map(item => {
arr.push({
PRODUCTION_UNIT_ID: item.PRODUCTION_UNIT_ID,
AREA_ID:item.AREA_ID,
AREA_ID: item.AREA_ID,
RISK_NAME: item.RISK_NAME,
RISK_NAME_ID: item.RISK_NAME_ID,
RISK_DESCRIPTION: item.RISK_DESCRIPTION,
TYPE_ID:item.TYPE_ID,
TYPE_ID: item.TYPE_ID,
MEASURE: item.MEASURE,
EMERGENCY: item.EMERGENCY,
ENABLE_STATUS: !item.ENABLE_STATUS ? 0 : item.ENABLE_STATUS == '有效' ? 0 : 10,
ENABLE_STATUS: item.ENABLE_STATUS,
MARK: item.MARK,
})
})
this.model={
ORG_ID:this.ORG_ID,
this.model = {
ORG_ID: this.ORG_ID,
YEAR: this.dataModel.YEAR,
START_DATE: this.dataModel.START_DATE,
END_DATE: this.dataModel.END_DATE,
CONTENTS: this.dataModel.CONTENTS,
REQUIRE_ID:this.dataModel.REQUIRE_ID,
REQUIRE_ID: this.dataModel.REQUIRE_ID,
RequireName: this.dataModel.RequireName,
IDENTIFY_EVALUATION_PLAN_ID:this.dataModel.IDENTIFY_EVALUATION_PLAN_ID,
IDENTIFY_EVALUATION_PLAN_ID: this.dataModel.IDENTIFY_EVALUATION_PLAN_ID,
Nav_Files: this.dataModel.Nav_Files,
Nav_Details:arr
Nav_Details: arr
}
this.model.ID = this.ID
this.model.TaskID = this.TaskID
@ -547,4 +870,75 @@
<style scoped>
@import url("../../../../style/css/newTemplate.css");
/* 新增企业库弹窗样式 */
.enterprise-list {
max-height: 500px;
overflow-y: auto;
padding: 10px 0;
}
.enterprise-item {
display: flex;
align-items: flex-start;
padding: 12px 8px;
border-bottom: 1px solid #f0f0f0;
gap: 12px;
}
.enterprise-info {
flex: 1;
display: flex;
flex-direction: column;
gap: 4px;
}
.enterprise-name {
font-size: 14px;
font-weight: 500;
color: #333;
}
.enterprise-detail {
font-size: 14px;
color: #999;
}
.empty-tip {
text-align: center;
padding: 40px 0;
color: #999;
font-size: 14px;
}
.enterprise-list-container {
display: flex;
flex-direction: column;
}
.load-more-footer {
padding: 15px 0 10px;
display: flex;
justify-content: center;
border-top: 1px solid #f0f0f0;
margin-top: 10px;
}
.load-more-btn {
width: 80%;
}
.no-more-tip {
text-align: center;
padding: 10px 0;
color: #999;
font-size: 12px;
}
.loading-tip {
text-align: center;
padding: 20px 0;
color: #999;
font-size: 12px;
}
</style>