forked from integrated_whb/integrated_whb_vue
BUG 优化
parent
be4df46323
commit
ddf52fc4ca
|
@ -35,15 +35,15 @@
|
|||
{{ serialNumber(pagination, $index) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="INQUIRYCONTENT" label="问询内容" width="800" />
|
||||
<el-table-column prop="INQUIRYCONTENT" label="问询内容" />
|
||||
<el-table-column
|
||||
prop="INQUIRYCONCLUSION"
|
||||
label="问询结果"
|
||||
width="230"
|
||||
width="100"
|
||||
/>
|
||||
<el-table-column prop="CREATTIME" label="创建时间" width="200" />
|
||||
<el-table-column prop="OPERATTIME" label="修改时间" width="200" />
|
||||
<el-table-column label="操作">
|
||||
<el-table-column prop="CREATTIME" label="创建时间" width="150" />
|
||||
<el-table-column prop="OPERATTIME" label="修改时间" width="150" />
|
||||
<el-table-column label="操作" width="100">
|
||||
<template #default="{ row }">
|
||||
<el-button
|
||||
type="primary"
|
||||
|
|
|
@ -50,20 +50,20 @@
|
|||
{{ serialNumber(pagination, $index) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="WAYBILLNUMBER" label="运单编号" width="230" />
|
||||
<el-table-column label="行车状态" width="130">
|
||||
<el-table-column prop="WAYBILLNUMBER" label="运单编号" />
|
||||
<el-table-column label="行车状态" width="80">
|
||||
<template #default="{ row }">
|
||||
<el-tag v-if="row.WAYBILLSTATUS === '0'">未出发</el-tag>
|
||||
<el-tag v-else-if="row.WAYBILLSTATUS === '1'">已出发</el-tag>
|
||||
<el-tag v-else-if="row.WAYBILLSTATUS === '2'">收车后</el-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="TRANSPORTVEHICLE" label="运输车辆" width="230" />
|
||||
<el-table-column prop="NAME" label="从业人员" width="130" />
|
||||
<el-table-column prop="PHONE" label="联系电话" width="130" />
|
||||
<el-table-column prop="STARTTIME" label="发车时间" />
|
||||
<el-table-column prop="STOPTIME" label="收车时间" />
|
||||
<el-table-column label="操作" width="180">
|
||||
<el-table-column prop="TRANSPORTVEHICLE" label="运输车辆" width="100" />
|
||||
<el-table-column prop="NAME" label="从业人员"/>
|
||||
<el-table-column prop="PHONE" label="联系电话" />
|
||||
<el-table-column prop="STARTTIME" label="发车时间" width="150"/>
|
||||
<el-table-column prop="STOPTIME" label="收车时间" width="150"/>
|
||||
<el-table-column label="操作" width="50">
|
||||
<template #default="{ row }">
|
||||
<el-button
|
||||
type="primary"
|
||||
|
|
|
@ -42,12 +42,12 @@
|
|||
{{ serialNumber(pagination, $index) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="CHECKITEMNAME" label="检查项名称" width="330" />
|
||||
<el-table-column prop="CHECKTYPE_NAME" label="检查项类型" width="230" />
|
||||
<el-table-column prop="REMARKS" label="检查项说明" width="330" />
|
||||
<el-table-column prop="CREATTIME" label="创建时间" width="230" />
|
||||
<el-table-column prop="OPERATTIME" label="修改时间" width="230" />
|
||||
<el-table-column label="操作">
|
||||
<el-table-column prop="CHECKITEMNAME" label="检查项名称" />
|
||||
<el-table-column prop="CHECKTYPE_NAME" label="检查项类型" width="80" />
|
||||
<el-table-column prop="REMARKS" label="检查项说明" />
|
||||
<el-table-column prop="CREATTIME" label="创建时间" width="150" />
|
||||
<el-table-column prop="OPERATTIME" label="修改时间" width="150" />
|
||||
<el-table-column label="操作" width="100">
|
||||
<template #default="{ row }">
|
||||
<el-button
|
||||
type="primary"
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
{{ serialNumber(pagination, $index) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="CUSTOMERTYPE" label="客户类型" width="200">
|
||||
<el-table-column prop="CUSTOMERTYPE" label="客户类型" width="100">
|
||||
<template #default="{ row }">
|
||||
{{
|
||||
row.CUSTOMERTYPE === "1"
|
||||
|
@ -50,12 +50,12 @@
|
|||
}}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="CUSTOMERNAME" label="客户名称" width="200" />
|
||||
<el-table-column prop="CONTACT" label="联系人" width="200" />
|
||||
<el-table-column prop="CONTACTPHONE" label="联系电话" width="180" />
|
||||
<el-table-column prop="CUSTOMERADDRESS" label="客户地址" width="200" />
|
||||
<el-table-column prop="CORP_NAME" label="运输企业" width="190" />
|
||||
<el-table-column prop="CREATETIME" label="创建时间" width="200" />
|
||||
<el-table-column prop="CUSTOMERNAME" label="客户名称" />
|
||||
<el-table-column prop="CONTACT" label="联系人" />
|
||||
<el-table-column prop="CONTACTPHONE" label="联系电话" />
|
||||
<el-table-column prop="CUSTOMERADDRESS" label="客户地址" />
|
||||
<el-table-column prop="CORP_NAME" label="运输企业" width="100" />
|
||||
<el-table-column prop="CREATETIME" label="创建时间" width="150" />
|
||||
<el-table-column label="操作" width="130">
|
||||
<template #default="{ row }">
|
||||
<el-button
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
{{ serialNumber(pagination, $index) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="LOCATIONTYPE" label="地点类型" width="200">
|
||||
<el-table-column prop="LOCATIONTYPE" label="地点类型" width="80">
|
||||
<template #default="{ row }">
|
||||
{{
|
||||
row.LOCATIONTYPE === "1"
|
||||
|
@ -50,10 +50,10 @@
|
|||
}}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="LOCATIONNAME" label="地点名称" width="300" />
|
||||
<el-table-column prop="ADDRESSDETAILS" label="地址详情" width="300" />
|
||||
<el-table-column prop="CORP_NAME" label="运输企业" width="300" />
|
||||
<el-table-column prop="CREATETIME" label="创建时间" width="250" />
|
||||
<el-table-column prop="LOCATIONNAME" label="地点名称" />
|
||||
<el-table-column prop="ADDRESSDETAILS" label="地址详情"/>
|
||||
<el-table-column prop="CORP_NAME" label="运输企业"/>
|
||||
<el-table-column prop="CREATETIME" label="创建时间" width="150" />
|
||||
<el-table-column label="操作" width="150">
|
||||
<template #default="{ row }">
|
||||
<el-button
|
||||
|
|
|
@ -45,23 +45,23 @@
|
|||
{{ serialNumber(pagination, $index) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="WAYBILLNUMBER" label="运单编号" width="150" />
|
||||
<el-table-column prop="WAYBILLSTATUS" label="运单状态" width="150">
|
||||
<el-table-column prop="WAYBILLNUMBER" label="运单编号"/>
|
||||
<el-table-column prop="WAYBILLSTATUS" label="运单状态" width="80">
|
||||
<template #default="{ row }">
|
||||
<el-tag v-if="row.WAYBILLSTATUS === '0'">未出发</el-tag>
|
||||
<el-tag v-else-if="row.WAYBILLSTATUS === '1'">已出发</el-tag>
|
||||
<el-tag v-else-if="row.WAYBILLSTATUS === '2'">收车后</el-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="TRANSPORTVEHICLE" label="运输车辆" width="150" />
|
||||
<el-table-column prop="NAME" label="从业人员" width="150" />
|
||||
<el-table-column prop="CLIENT_NAME" label="委托方" width="150">
|
||||
<el-table-column prop="TRANSPORTVEHICLE" label="运输车辆" width="80" />
|
||||
<el-table-column prop="NAME" label="从业人员" width="100" />
|
||||
<el-table-column prop="CLIENT_NAME" label="委托方">
|
||||
</el-table-column>
|
||||
<el-table-column prop="CONFIRMER_NAME" label="确认方" width="150">
|
||||
<el-table-column prop="CONFIRMER_NAME" label="确认方">
|
||||
</el-table-column>
|
||||
<el-table-column prop="ORIGIN_NAME" label="起运地" width="150">
|
||||
<el-table-column prop="ORIGIN_NAME" label="起运地">
|
||||
</el-table-column>
|
||||
<el-table-column prop="DESTINATION_NAME" label="目的地" width="150">
|
||||
<el-table-column prop="DESTINATION_NAME" label="目的地">
|
||||
</el-table-column>
|
||||
<el-table-column prop="SHIPPINGDATE" label="承运日期" width="180">
|
||||
</el-table-column>
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
{{ serialNumber(pagination, $index) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="NUM" label="自编号" width="200" />
|
||||
<el-table-column prop="NUM" label="自编号"/>
|
||||
<el-table-column prop="PLATE_NUMBER" label="车牌号" width="200" />
|
||||
<el-table-column prop="CONTACTS" label="联系人" width="150" />
|
||||
<el-table-column prop="CONTACT_PHONE" label="联系电话" width="150" />
|
||||
|
@ -70,7 +70,7 @@
|
|||
label="初登日期"
|
||||
width="150"
|
||||
/>
|
||||
<el-table-column prop="DUE_DATE" label="到期日期" width="200" />
|
||||
<el-table-column prop="DUE_DATE" label="到期日期" width="150" />
|
||||
<el-table-column label="归属部门" width="150">
|
||||
<template #default="{ row }">
|
||||
{{ row.DEPARTMENT_NAME || row.BELONGING_DEPT || "" }}
|
||||
|
|
|
@ -47,20 +47,20 @@
|
|||
row-key="LABORCONTRACT_ID"
|
||||
@get-data="fnGetData"
|
||||
>
|
||||
<el-table-column label="序号" width="60">
|
||||
<el-table-column label="序号" width="80">
|
||||
<template #default="{ $index }">
|
||||
{{ serialNumber(pagination, $index) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="NEWCONTRACTNAME" label="用户名称" width="100" />
|
||||
<el-table-column prop="CONTRACTNAME" label="合同名称" width="250" />
|
||||
<el-table-column prop="COMPLETIONSTATUS" label="完成状态" width="150">
|
||||
<el-table-column prop="CONTRACTNAME" label="合同名称"/>
|
||||
<el-table-column prop="COMPLETIONSTATUS" label="完成状态" width="100">
|
||||
<template #default="{ row }">
|
||||
<el-tag v-if="row.COMPLETIONSTATUS === '1'">已上传</el-tag>
|
||||
<el-tag v-else>未上传</el-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="有效状态" prop="VALIDSTATUS">
|
||||
<el-table-column label="有效状态" prop="VALIDSTATUS" width="100">
|
||||
<template #default="{ row }">
|
||||
<el-tag v-if="row.VALIDSTATUS === '1'">有效</el-tag>
|
||||
<el-tag v-else>失效</el-tag>
|
||||
|
|
|
@ -52,14 +52,14 @@
|
|||
{{ serialNumber(pagination, $index) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="SYSTEMNAME" label="制度名称" width="250" />
|
||||
<el-table-column prop="COMPLETIONSTATUS" label="完成状态" width="250">
|
||||
<el-table-column prop="SYSTEMNAME" label="制度名称"/>
|
||||
<el-table-column prop="COMPLETIONSTATUS" label="完成状态" width="100">
|
||||
<template #default="{ row }">
|
||||
<el-tag v-if="row.COMPLETIONSTATUS === '1'">已上传</el-tag>
|
||||
<el-tag v-else-if="row.COMPLETIONSTATUS === '0'">未上传</el-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="有效状态" prop="VALIDSTATUS">
|
||||
<el-table-column label="有效状态" prop="VALIDSTATUS" width="100">
|
||||
<template #default="{ row }">
|
||||
<el-tag v-if="row.VALIDSTATUS === '1'">有效</el-tag>
|
||||
<el-tag v-else-if="row.VALIDSTATUS === '0'">失效</el-tag>
|
||||
|
|
|
@ -115,31 +115,28 @@
|
|||
</el-table-column>
|
||||
|
||||
<el-table-column prop="RECORD_NUMBER" label="档案号" />
|
||||
<el-table-column prop="ASSIGNED_TYPE" label="过户类型" />
|
||||
<el-table-column prop="PLATE_NUMBER" label="原车牌号" />
|
||||
<el-table-column prop="NOW_PLATE_NUMBER" label="现车牌号" />
|
||||
<el-table-column prop="ASSIGNED_TYPE" label="过户类型" width="80" />
|
||||
<el-table-column prop="PLATE_NUMBER" label="原车牌号" width="80" />
|
||||
<el-table-column prop="NOW_PLATE_NUMBER" label="现车牌号" width="80" />
|
||||
<el-table-column
|
||||
prop="RAW_OWNERS"
|
||||
label="原车主业主"
|
||||
width="140"
|
||||
show-overflow-tooltip
|
||||
/>
|
||||
<el-table-column
|
||||
prop="NOW_OWNERS"
|
||||
label="现车主业主"
|
||||
width="140"
|
||||
show-overflow-tooltip
|
||||
/>
|
||||
<el-table-column
|
||||
prop="ASSIGNED_DATE"
|
||||
label="过户时间"
|
||||
width="140"
|
||||
width="100"
|
||||
show-overflow-tooltip
|
||||
/>
|
||||
<el-table-column
|
||||
prop="REGISTRANT"
|
||||
label="登记人"
|
||||
width="140"
|
||||
show-overflow-tooltip
|
||||
/>
|
||||
<el-table-column
|
||||
|
|
|
@ -86,20 +86,20 @@
|
|||
{{ serialNumber(pagination, $index) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="NUM" label="编号" width="150" />
|
||||
<el-table-column prop="PLATE_NUMBER" label="车牌号" width="100" />
|
||||
<el-table-column prop="CAR_OWNERS" label="车主业户" width="100" />
|
||||
<el-table-column prop="TELEPHONE" label="联系电话" width="100" />
|
||||
<el-table-column prop="NUM" label="编号" />
|
||||
<el-table-column prop="PLATE_NUMBER" label="车牌号" />
|
||||
<el-table-column prop="CAR_OWNERS" label="车主业户" />
|
||||
<el-table-column prop="TELEPHONE" label="联系电话" />
|
||||
<el-table-column
|
||||
prop="NETWORK_ACCESS_COMPANY"
|
||||
label="入网公司"
|
||||
width="150"
|
||||
/>
|
||||
<el-table-column prop="PROCESSING_DATE" label="办理日期" width="120" />
|
||||
<el-table-column prop="DUE_DATE" label="到期日期" width="120" />
|
||||
<el-table-column prop="REGISTRANT" label="登记人" width="140" />
|
||||
<el-table-column prop="PROCESSING_DATE" label="办理日期" width="100" />
|
||||
<el-table-column prop="DUE_DATE" label="到期日期" width="100" />
|
||||
<el-table-column prop="REGISTRANT" label="登记人" />
|
||||
<!--<el-table-column prop="CONTACTS" label="经营企业" width="150"/>-->
|
||||
<el-table-column prop="REMINDER_STATUS" label="提醒状态" width="90">
|
||||
<el-table-column prop="REMINDER_STATUS" label="提醒状态" width="80">
|
||||
<template #default="{ row }">
|
||||
<el-tag v-if="row.REMINDER_STATUS === '1'" type="success"
|
||||
>开启</el-tag
|
||||
|
@ -109,7 +109,7 @@
|
|||
>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="DUE_DATE_TYPE" label="到期状态" width="90">
|
||||
<el-table-column prop="DUE_DATE_TYPE" label="到期状态" width="80">
|
||||
<template #default="{ row }">
|
||||
<el-tag v-if="row.DUE_DATE_TYPE === 1" type="success"
|
||||
>未到期</el-tag
|
||||
|
@ -122,7 +122,7 @@
|
|||
>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="ARCHIVES_TYPE" label="车辆状态" width="90">
|
||||
<el-table-column prop="ARCHIVES_TYPE" label="车辆状态" width="80">
|
||||
<template #default="{ row }">
|
||||
<el-tag v-if="row.ARCHIVES_TYPE === '1'" type="error">报废</el-tag>
|
||||
<el-tag v-else-if="row.ARCHIVES_TYPE === '0'" type="success"
|
||||
|
@ -133,7 +133,7 @@
|
|||
>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="操作" width="242">
|
||||
<el-table-column label="操作" width="200">
|
||||
<template #default="{ row }">
|
||||
<el-button
|
||||
type="primary"
|
||||
|
|
|
@ -106,28 +106,28 @@
|
|||
@get-data="fnGetDataTransfer"
|
||||
>
|
||||
<el-table-column reserve-selection type="selection" width="55" />
|
||||
<el-table-column label="序号" width="60">
|
||||
<el-table-column label="序号" width="50">
|
||||
<template #default="{ $index }">
|
||||
{{ serialNumber(pagination, $index) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="NUM" label="编号" width="100" />
|
||||
<el-table-column prop="VEHICLE_MODEL" label="运营车型" width="100">
|
||||
<el-table-column prop="NUM" label="编号" />
|
||||
<el-table-column prop="VEHICLE_MODEL" label="运营车型" width="80">
|
||||
<template #default="{ row }">
|
||||
{{
|
||||
translationStatus(row.VEHICLE_MODEL, OPERATING_VEHICLE_TYPE_LIST)
|
||||
}}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="PLATE_NUMBER" label="车牌号" width="100" />
|
||||
<el-table-column prop="CAR_OWNERS" label="车主业户" width="100" />
|
||||
<el-table-column prop="PLATE_NUMBER" label="车牌号" width="80" />
|
||||
<el-table-column prop="CAR_OWNERS" label="车主业户" width="128" />
|
||||
<el-table-column prop="TELEPHONE" label="联系电话" width="100" />
|
||||
<el-table-column prop="PROCESSING_DATE" label="办理日期" width="100" />
|
||||
<el-table-column prop="NAME" label="年检周期" width="92" />
|
||||
<el-table-column prop="NAME" label="年检周期" width="75" />
|
||||
<el-table-column prop="DUE_DATE" label="到期日期" width="100" />
|
||||
<el-table-column prop="REGISTRANT" label="登记人" width="100" />
|
||||
<el-table-column prop="REGISTRANT" label="登记人" width="110" />
|
||||
<!--<el-table-column prop="CONTACTS" label="经营企业" width="150"/>-->
|
||||
<el-table-column prop="REMINDER_STATUS" label="提醒状态" width="100">
|
||||
<el-table-column prop="REMINDER_STATUS" label="提醒状态" width="95">
|
||||
<template #default="{ row }">
|
||||
<el-tag v-if="row.REMINDER_STATUS === '1'" type="success"
|
||||
>开启</el-tag
|
||||
|
@ -137,7 +137,7 @@
|
|||
>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="DUE_DATE_TYPE" label="到期状态" width="100">
|
||||
<el-table-column prop="DUE_DATE_TYPE" label="到期状态" width="95">
|
||||
<template #default="{ row }">
|
||||
<el-tag v-if="row.DUE_DATE_TYPE === 1" type="success"
|
||||
>未到期
|
||||
|
@ -150,7 +150,7 @@
|
|||
</el-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="ARCHIVES_TYPE" label="车辆状态" width="100">
|
||||
<el-table-column prop="ARCHIVES_TYPE" label="车辆状态" width="95">
|
||||
<template #default="{ row }">
|
||||
<el-tag v-if="row.ARCHIVES_TYPE === '2'" type="error">报废</el-tag>
|
||||
<el-tag v-else-if="row.ARCHIVES_TYPE === '0'" type="success"
|
||||
|
@ -161,9 +161,9 @@
|
|||
>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="CREATTIME" label="创建时间" width="100" />
|
||||
<el-table-column prop="OPERATTIME" label="修改时间" width="100" />
|
||||
<el-table-column label="操作" width="100">
|
||||
<!-- <el-table-column prop="CREATTIME" label="创建时间" width="100" />-->
|
||||
<el-table-column prop="OPERATTIME" label="修改时间" width="150" />
|
||||
<el-table-column label="操作" width="140">
|
||||
<template #default="{ row }">
|
||||
<el-button
|
||||
type="primary"
|
||||
|
|
|
@ -113,14 +113,14 @@
|
|||
row-key="INSURE_ID"
|
||||
@get-data="fnGetDataTransfer"
|
||||
>
|
||||
<el-table-column reserve-selection type="selection" width="55" />
|
||||
<el-table-column reserve-selection type="selection" width="50" />
|
||||
<el-table-column label="序号" width="60">
|
||||
<template #default="{ $index }">
|
||||
{{ serialNumber(pagination, $index) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="NUM" label="编号" width="100" />
|
||||
<el-table-column prop="VEHICLE_MODEL" label="运营车型" width="100">
|
||||
<el-table-column prop="NUM" label="编号" />
|
||||
<el-table-column prop="VEHICLE_MODEL" label="运营车型" width="80">
|
||||
<template #default="{ row }">
|
||||
{{
|
||||
translationStatus(row.VEHICLE_MODEL, OPERATING_VEHICLE_TYPE_LIST)
|
||||
|
@ -128,7 +128,7 @@
|
|||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="PLATE_NUMBER" label="车牌号" width="100" />
|
||||
<el-table-column prop="CAR_OWNERS" label="车主业户" width="100" />
|
||||
<el-table-column prop="CAR_OWNERS" label="车主业户" width="98" />
|
||||
<el-table-column prop="TELEPHONE" label="联系电话" width="100" />
|
||||
<el-table-column
|
||||
prop="PROCESSING_DATE_YEAR"
|
||||
|
@ -138,12 +138,12 @@
|
|||
<el-table-column
|
||||
prop="INSURANCE_COVERAGE"
|
||||
label="保险项目"
|
||||
width="100"
|
||||
width="160"
|
||||
/>
|
||||
<el-table-column prop="PROCESSING_DATE" label="办理日期" width="100" />
|
||||
<el-table-column prop="EFFECTIVE_DATE" label="生效日期" width="100" />
|
||||
<el-table-column prop="DUE_DATE" label="到期日期" width="100" />
|
||||
<el-table-column prop="REGISTRANT" label="登记人" width="100" />
|
||||
<el-table-column prop="REGISTRANT" label="登记人" width="120" />
|
||||
<!--<el-table-column prop="NULLL" label="经营类型" width="150"/>-->
|
||||
<!--<el-table-column prop="CONTACTS" label="经营企业" width="150"/>-->
|
||||
<el-table-column prop="REMINDER_STATUS" label="提醒状态" width="80">
|
||||
|
@ -171,7 +171,7 @@
|
|||
</el-table-column>
|
||||
<!-- <el-table-column prop="CREATTIME" label="创建时间" width="150" />
|
||||
<el-table-column prop="OPERATTIME" label="修改时间" width="150" />-->
|
||||
<el-table-column label="操作" width="250">
|
||||
<el-table-column label="操作" width="200">
|
||||
<template #default="{ row }">
|
||||
<el-button
|
||||
type="primary"
|
||||
|
|
|
@ -86,10 +86,10 @@
|
|||
{{ serialNumber(pagination, $index) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="NUM" label="编号" width="150" />
|
||||
<el-table-column prop="PLATE_NUMBER" label="车牌号" width="100" />
|
||||
<el-table-column prop="CAR_OWNERS" label="车主业户" width="100" />
|
||||
<el-table-column prop="TELEPHONE" label="联系电话" width="100" />
|
||||
<el-table-column prop="NUM" label="编号"/>
|
||||
<el-table-column prop="PLATE_NUMBER" label="车牌号"/>
|
||||
<el-table-column prop="CAR_OWNERS" label="车主业户"/>
|
||||
<el-table-column prop="TELEPHONE" label="联系电话"/>
|
||||
<el-table-column prop="MAINTENANCE_LEVEL" label="维保等级" width="100">
|
||||
<template #default="{ row }">
|
||||
{{
|
||||
|
@ -97,14 +97,14 @@
|
|||
}}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="PROCESSING_DATE" label="办理日期" width="120" />
|
||||
<el-table-column prop="PROCESSING_DATE" label="办理日期" width="100" />
|
||||
<el-table-column prop="MAINTENANCE_CYCLE" label="维保周期" width="80">
|
||||
<template #default="{ row }">
|
||||
{{ row.MAINTENANCE_CYCLE + "天" }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="DUE_DATE" label="到期日期" width="150" />
|
||||
<el-table-column prop="REGISTRANT" label="登记人" width="100" />
|
||||
<el-table-column prop="DUE_DATE" label="到期日期" width="100" />
|
||||
<el-table-column prop="REGISTRANT" label="登记人"/>
|
||||
<!--<el-table-column prop="CONTACTS" label="经营企业" width="150"/>-->
|
||||
<el-table-column prop="REMINDER_STATUS" label="提醒状态" width="80">
|
||||
<template #default="{ row }">
|
||||
|
@ -140,7 +140,7 @@
|
|||
>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="操作" width="250">
|
||||
<el-table-column label="操作" width="200">
|
||||
<template #default="{ row }">
|
||||
<el-button
|
||||
type="primary"
|
||||
|
@ -243,6 +243,8 @@ const data = reactive({
|
|||
});
|
||||
const { list, pagination, searchForm, fnGetData, fnResetPagination, tableRef } =
|
||||
useListData(getMaintenanceList);
|
||||
|
||||
console.log(getMaintenanceList());
|
||||
const fnGetDataTransfer = () => {
|
||||
fnGetData({
|
||||
PLATE_NUMBER: searchForm.value.PLATE_NUMBER,
|
||||
|
|
|
@ -117,12 +117,12 @@
|
|||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="PLATE_NUMBER" label="车牌号" width="95" />
|
||||
<el-table-column prop="CAR_OWNERS" label="车主业户" width="150" />
|
||||
<el-table-column prop="TELEPHONE" label="联系电话" width="150" />
|
||||
<el-table-column prop="PROCESSING_DATE" label="办理日期" width="142" />
|
||||
<el-table-column prop="CAR_OWNERS" label="车主业户" />
|
||||
<el-table-column prop="TELEPHONE" label="联系电话" />
|
||||
<el-table-column prop="PROCESSING_DATE" label="办理日期" width="100" />
|
||||
<el-table-column prop="CYCLE_NAME" label="运营周期" width="80" />
|
||||
<el-table-column prop="DUE_DATE" label="到期日期" width="150" />
|
||||
<el-table-column prop="REGISTRANT" label="登记人" width="150" />
|
||||
<el-table-column prop="DUE_DATE" label="到期日期" width="100" />
|
||||
<el-table-column prop="REGISTRANT" label="登记人" />
|
||||
<!--<el-table-column prop="CONTACTS" label="经营企业" width="150"/>-->
|
||||
<el-table-column prop="REMINDER_STATUS" label="提醒状态" width="80">
|
||||
<template #default="{ row }">
|
||||
|
@ -159,7 +159,7 @@
|
|||
</template>
|
||||
</el-table-column>
|
||||
|
||||
<el-table-column label="操作" width="240">
|
||||
<el-table-column label="操作" width="150">
|
||||
<template #default="{ row }">
|
||||
<el-button
|
||||
type="primary"
|
||||
|
|
|
@ -57,7 +57,7 @@
|
|||
<el-table-column prop="CORP_NAME" label="工作部门" />
|
||||
<el-table-column prop="JOBTYPE" label="人员工种" />
|
||||
<el-table-column prop="INJUREDPART" label="受伤部位" />
|
||||
<el-table-column label="事故性质">
|
||||
<el-table-column label="事故性质" width="80">
|
||||
<template #default="{ row }">
|
||||
{{ convertACCIDENTNATURE(row.ACCIDENTNATURE) }}
|
||||
</template>
|
||||
|
@ -70,9 +70,9 @@
|
|||
<el-table-column prop="ACCIDENTRECORDPERSON" label="事故登记人" />
|
||||
<el-table-column prop="ACCIDENTDATE" label="事故日期" />
|
||||
<el-table-column prop="REGISTRATIONDATE" label="登记日期" />
|
||||
<el-table-column prop="CREATETIME" label="创建时间" />
|
||||
<el-table-column prop="OPERATTIME" label="修改时间" />
|
||||
<el-table-column label="操作" width="180">
|
||||
<el-table-column prop="CREATETIME" label="创建时间" width="150"/>
|
||||
<el-table-column prop="OPERATTIME" label="修改时间" width="150"/>
|
||||
<el-table-column label="操作" width="100">
|
||||
<template #default="{ row }">
|
||||
<el-button
|
||||
type="primary"
|
||||
|
|
|
@ -75,7 +75,7 @@
|
|||
</el-table-column>
|
||||
<el-table-column prop="RECORD_NUMBER" label="档案号" />
|
||||
<el-table-column prop="PLATE_NUMBER" label="车牌号" />
|
||||
<el-table-column prop="SCRAP_VEHICLEMODEL" label="移除车型" />
|
||||
<el-table-column prop="SCRAP_VEHICLEMODEL" label="移除车型" width="80" />
|
||||
<el-table-column prop="VEHICLEOWNER" label="车主业主" />
|
||||
<el-table-column
|
||||
prop="CONTACT_NUMBER"
|
||||
|
@ -92,7 +92,6 @@
|
|||
<el-table-column
|
||||
prop="REGISTRANT"
|
||||
label="登记人"
|
||||
width="140"
|
||||
show-overflow-tooltip
|
||||
/>
|
||||
<el-table-column
|
||||
|
|
|
@ -101,13 +101,13 @@
|
|||
<el-table-column prop="PLATE_NUMBER" label="车牌号" />
|
||||
<el-table-column prop="VEHICLEOWNER" label="车主业主" />
|
||||
<el-table-column prop="CONTACT_NUMBER" label="联系电话" />
|
||||
<el-table-column prop="TRANSACTION_DATA" label="办理日期" />
|
||||
<el-table-column prop="TAXESDUES_PERIOD" label="税费周期" />
|
||||
<el-table-column prop="EXPIRE_DATE" label="到期日期" />
|
||||
<el-table-column prop="TRANSACTION_DATA" label="办理日期" width="100" />
|
||||
<el-table-column prop="TAXESDUES_PERIOD" label="税费周期" width="80" />
|
||||
<el-table-column prop="EXPIRE_DATE" label="到期日期" width="100" />
|
||||
<el-table-column prop="REGISTRANT" label="登记人" />
|
||||
<el-table-column prop="CREATTIME" label="创建时间" />
|
||||
<el-table-column prop="OPERATTIME" label="更改时间" />
|
||||
<el-table-column prop="REMINDER_STATUS" label="提醒状态">
|
||||
<el-table-column prop="CREATTIME" label="创建时间" width="140" />
|
||||
<el-table-column prop="OPERATTIME" label="更改时间" width="140" />
|
||||
<el-table-column prop="REMINDER_STATUS" label="提醒状态" width="80">
|
||||
<template #default="{ row }">
|
||||
<el-tag v-if="row.REMINDER_STATUS === '0'" type="success"
|
||||
>开启
|
||||
|
@ -117,7 +117,7 @@
|
|||
</el-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="EXPIRE_STATUS" label="到期状态">
|
||||
<el-table-column prop="EXPIRE_STATUS" label="到期状态" width="80">
|
||||
<template #default="{ row }">
|
||||
<el-tag v-if="row.EXPIRE_STATUS === '1'" type="success"
|
||||
>未到期
|
||||
|
@ -130,7 +130,7 @@
|
|||
</el-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="ARCHIVES_TYPE" label="车辆状态" width="150">
|
||||
<el-table-column prop="ARCHIVES_TYPE" label="车辆状态" width="80">
|
||||
<template #default="{ row }">
|
||||
<el-tag v-if="row.ARCHIVES_TYPE === '1'" type="error">报废</el-tag>
|
||||
<el-tag v-else-if="row.ARCHIVES_TYPE === '0'" type="success"
|
||||
|
|
|
@ -56,7 +56,7 @@
|
|||
{{ serialNumber(pagination, $index) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="NEWOCCUPATIONALNAME" label="用户名称" />
|
||||
<el-table-column prop="NEWOCCUPATIONALNAME" label="用户名称" width="100"/>
|
||||
<el-table-column prop="OCCUPATIONALNAME" label="职业危害告知书" />
|
||||
<el-table-column prop="COMPLETIONSTATUS" label="完成状态" width="100">
|
||||
<template #default="{ row }">
|
||||
|
@ -72,10 +72,10 @@
|
|||
</el-table-column>
|
||||
<!-- <el-table-column prop="CORP_NAME" label="经营企业" width="220" />
|
||||
<el-table-column prop="OPERATIONTYPE" label="经营类型" width="150" />-->
|
||||
<el-table-column prop="EXPIRYDATE" label="到期时间" />
|
||||
<el-table-column prop="CREATETIME" label="创建时间" />
|
||||
<el-table-column prop="OPERATTIME" label="修改时间" />
|
||||
<el-table-column label="操作">
|
||||
<el-table-column prop="EXPIRYDATE" label="到期时间" width="180"/>
|
||||
<el-table-column prop="CREATETIME" label="创建时间" width="180"/>
|
||||
<el-table-column prop="OPERATTIME" label="修改时间" width="180"/>
|
||||
<el-table-column label="操作" width="180">
|
||||
<template #default="{ row }">
|
||||
<el-button
|
||||
type="primary"
|
||||
|
|
|
@ -56,15 +56,15 @@
|
|||
{{ serialNumber(pagination, $index) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="WATCHKEEPER" label="值班人员" width="130" />
|
||||
<el-table-column prop="WATCH_DATE" label="值班日期" width="130" />
|
||||
<el-table-column prop="WATCHLEAD" label="值班领导" width="130" />
|
||||
<el-table-column prop="WATCHKEEPER" label="值班人员"/>
|
||||
<el-table-column prop="WATCH_DATE" label="值班日期" width="100" />
|
||||
<el-table-column prop="WATCHLEAD" label="值班领导"/>
|
||||
<el-table-column prop="WATCH_TELEPHONE" label="值班座机" width="130" />
|
||||
<el-table-column prop="WATCH_PHONE" label="值班人电话" width="180" />
|
||||
<el-table-column prop="REGISTRANT" label="登记人" width="130" />
|
||||
<el-table-column prop="WATCH_PHONE" label="值班人电话" width="100" />
|
||||
<el-table-column prop="REGISTRANT" label="登记人"/>
|
||||
<el-table-column prop="WATCH_CONDITION" label="值班情况" width="200" />
|
||||
<el-table-column prop="CREATTIME" label="创建时间" width="180" />
|
||||
<el-table-column prop="OPERATTIME" label="修改时间" width="180" />
|
||||
<el-table-column prop="CREATTIME" label="创建时间" width="150" />
|
||||
<el-table-column prop="OPERATTIME" label="修改时间" width="150" />
|
||||
<el-table-column label="操作" width="150">
|
||||
<template #default="{ row }">
|
||||
<el-button
|
||||
|
|
|
@ -37,19 +37,19 @@
|
|||
{{ serialNumber(pagination, $index) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="PERSON_NAME" label="人员名称" width="130" />
|
||||
<el-table-column prop="GLOVE" label="手套" width="130" />
|
||||
<el-table-column prop="MASK" label="口罩" width="130" />
|
||||
<el-table-column prop="OVERALL" label="工作服" width="130" />
|
||||
<el-table-column prop="FOOTWARE" label="工作鞋" width="180" />
|
||||
<el-table-column prop="WINTER_COAT" label="防寒服" width="130" />
|
||||
<el-table-column prop="RAINCOAT" label="雨衣" width="200" />
|
||||
<el-table-column prop="GOGGLES" label="护目镜" width="180" />
|
||||
<el-table-column prop="AID_KIT" label="急救药箱" width="180" />
|
||||
<el-table-column prop="HELMET" label="安全帽" width="180" />
|
||||
<el-table-column prop="PERSON_NAME" label="人员名称" width="100" />
|
||||
<el-table-column prop="GLOVE" label="手套" />
|
||||
<el-table-column prop="MASK" label="口罩" />
|
||||
<el-table-column prop="OVERALL" label="工作服" />
|
||||
<el-table-column prop="FOOTWARE" label="工作鞋" />
|
||||
<el-table-column prop="WINTER_COAT" label="防寒服" />
|
||||
<el-table-column prop="RAINCOAT" label="雨衣" />
|
||||
<el-table-column prop="GOGGLES" label="护目镜" />
|
||||
<el-table-column prop="AID_KIT" label="急救药箱" />
|
||||
<el-table-column prop="HELMET" label="安全帽" />
|
||||
<el-table-column prop="SUPPLIES" label="其他用品" width="180" />
|
||||
<el-table-column prop="CREATTIME" label="创建时间" width="180" />
|
||||
<el-table-column prop="OPERATTIME" label="修改时间" width="180" />
|
||||
<el-table-column prop="CREATTIME" label="创建时间" width="150" />
|
||||
<el-table-column prop="OPERATTIME" label="修改时间" width="150" />
|
||||
<el-table-column label="操作" width="150">
|
||||
<template #default="{ row }">
|
||||
<el-button
|
||||
|
|
|
@ -54,27 +54,25 @@
|
|||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="FACILITY_NUMBER" label="设施编号" width="160" />
|
||||
<el-table-column prop="FACILITY_NAME" label="设施名称" width="160" />
|
||||
<el-table-column prop="FACILITY_UNIT" label="设施单位" width="140" />
|
||||
<el-table-column prop="FACILITY_NAME" label="设施名称"/>
|
||||
<el-table-column prop="FACILITY_UNIT" label="设施单位"/>
|
||||
<el-table-column prop="FACILITY_COUNT" label="设施数量" width="140" />
|
||||
<el-table-column
|
||||
prop="FACILITY_LOCALTION"
|
||||
label="设施位置"
|
||||
width="130"
|
||||
/>
|
||||
<el-table-column
|
||||
prop="FACILITY_PRINCIPAL"
|
||||
label="设施负责人"
|
||||
width="150"
|
||||
/>
|
||||
<el-table-column
|
||||
prop="REGISTRATION_TIME"
|
||||
label="登记时间"
|
||||
width="160"
|
||||
width="100"
|
||||
/>
|
||||
<el-table-column prop="CREATTIME" label="创建时间" width="160" />
|
||||
<el-table-column prop="OPERATTIME" label="修改时间" width="160" />
|
||||
<el-table-column label="操作" width="180">
|
||||
<el-table-column prop="CREATTIME" label="创建时间" width="150" />
|
||||
<el-table-column prop="OPERATTIME" label="修改时间" width="150" />
|
||||
<el-table-column label="操作" width="200">
|
||||
<template #default="{ row }">
|
||||
<el-button
|
||||
type="primary"
|
||||
|
|
|
@ -55,15 +55,15 @@
|
|||
<el-table-column
|
||||
prop="MANAGEMENTAGREEMENTNAME"
|
||||
label="名称"
|
||||
width="250"
|
||||
|
||||
/>
|
||||
<el-table-column prop="COMPLETIONSTATUS" label="完成状态" width="250">
|
||||
<el-table-column prop="COMPLETIONSTATUS" label="完成状态" width="80">
|
||||
<template #default="{ row }">
|
||||
<el-tag v-if="row.COMPLETIONSTATUS === '1'">已上传</el-tag>
|
||||
<el-tag v-else-if="row.COMPLETIONSTATUS === '0'">未上传</el-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="有效状态" prop="VALIDSTATUS">
|
||||
<el-table-column label="有效状态" prop="VALIDSTATUS" width="80">
|
||||
<template #default="{ row }">
|
||||
<el-tag v-if="row.VALIDSTATUS === '1'" type="success">正常</el-tag>
|
||||
<el-tag v-else-if="row.VALIDSTATUS === '0'" type="error"
|
||||
|
@ -72,7 +72,7 @@
|
|||
</template>
|
||||
</el-table-column>
|
||||
<!-- <el-table-column prop="CORP_NAME" label="经营企业" width="150" />-->
|
||||
<el-table-column prop="EXPIRYDATE" label="到期时间" width="150" />
|
||||
<el-table-column prop="EXPIRYDATE" label="到期时间" width="100" />
|
||||
<el-table-column prop="CREATETIME" label="创建时间" width="150" />
|
||||
<el-table-column prop="OPERATTIME" label="修改时间" width="150" />
|
||||
<el-table-column label="操作" width="180">
|
||||
|
|
|
@ -70,11 +70,11 @@
|
|||
<el-table-column
|
||||
prop="REGISTRATION_TIME"
|
||||
label="登记时间"
|
||||
width="160"
|
||||
width="148"
|
||||
/>
|
||||
<el-table-column prop="CREATTIME" label="创建时间" width="160" />
|
||||
<el-table-column prop="OPERATTIME" label="修改时间" width="160" />
|
||||
<el-table-column label="操作" width="180">
|
||||
<el-table-column label="操作" width="200">
|
||||
<template #default="{ row }">
|
||||
<el-button
|
||||
type="primary"
|
||||
|
|
|
@ -63,12 +63,12 @@
|
|||
{{ serialNumber(pagination, $index) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="REPORTPERSON" label="上报人" width="150" />
|
||||
<el-table-column prop="DISPOSE_STATUS" label="处理状态" width="150" />
|
||||
<el-table-column prop="REPORTED_CONTENT" label="上报内容" width="600" />
|
||||
<el-table-column prop="DISPOSE_RESULT" label="处理结果" width="150" />
|
||||
<el-table-column prop="REPORTED_TIME" label="上报时间" width="180" />
|
||||
<el-table-column prop="DISPOSE_DATE" label="处理时间" width="180" />
|
||||
<el-table-column prop="REPORTPERSON" label="上报人" />
|
||||
<el-table-column prop="DISPOSE_STATUS" label="处理状态" />
|
||||
<el-table-column prop="REPORTED_CONTENT" label="上报内容" />
|
||||
<el-table-column prop="DISPOSE_RESULT" label="处理结果" />
|
||||
<el-table-column prop="REPORTED_TIME" label="上报时间" width="100" />
|
||||
<el-table-column prop="DISPOSE_DATE" label="处理时间" width="100" />
|
||||
<el-table-column label="操作" width="150">
|
||||
<template #default="{ row }">
|
||||
<el-button
|
||||
|
|
|
@ -52,14 +52,14 @@
|
|||
{{ serialNumber(pagination, $index) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="SYSTEMNAME" label="制度名称" width="250" />
|
||||
<el-table-column prop="COMPLETIONSTATUS" label="完成状态" width="250">
|
||||
<el-table-column prop="SYSTEMNAME" label="制度名称"/>
|
||||
<el-table-column prop="COMPLETIONSTATUS" label="完成状态" width="100">
|
||||
<template #default="{ row }">
|
||||
<el-tag v-if="row.COMPLETIONSTATUS === '1'">已上传</el-tag>
|
||||
<el-tag v-else-if="row.COMPLETIONSTATUS === '0'">未上传</el-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="有效状态" prop="VALIDSTATUS">
|
||||
<el-table-column label="有效状态" prop="VALIDSTATUS" width="100">
|
||||
<template #default="{ row }">
|
||||
<el-tag v-if="row.VALIDSTATUS === '1'">有效</el-tag>
|
||||
<el-tag v-else-if="row.VALIDSTATUS === '0'">失效</el-tag>
|
||||
|
|
|
@ -52,14 +52,14 @@
|
|||
{{ serialNumber(pagination, $index) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="SYSTEMNAME" label="名称" width="250" />
|
||||
<el-table-column prop="COMPLETIONSTATUS" label="完成状态" width="250">
|
||||
<el-table-column prop="SYSTEMNAME" label="名称"/>
|
||||
<el-table-column prop="COMPLETIONSTATUS" label="完成状态" width="100">
|
||||
<template #default="{ row }">
|
||||
<el-tag v-if="row.COMPLETIONSTATUS === '1'">已上传</el-tag>
|
||||
<el-tag v-else-if="row.COMPLETIONSTATUS === '0'">未上传</el-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="有效状态" prop="VALIDSTATUS">
|
||||
<el-table-column label="有效状态" prop="VALIDSTATUS" width="100">
|
||||
<template #default="{ row }">
|
||||
<el-tag v-if="row.VALIDSTATUS === '1'">有效</el-tag>
|
||||
<el-tag v-else-if="row.VALIDSTATUS === '2'">失效</el-tag>
|
||||
|
|
|
@ -46,14 +46,14 @@
|
|||
{{ serialNumber(pagination, $index) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="MEETING_TITLE" label="会议标题" width="250" />
|
||||
<el-table-column prop="MEETING_TYPE" label="会议类型" width="250">
|
||||
<el-table-column prop="MEETING_TITLE" label="会议标题"/>
|
||||
<el-table-column prop="MEETING_TYPE" label="会议类型" width="150">
|
||||
<template #default="{ row }">
|
||||
<div v-if="row.MEETING_TYPE === '1'">安全生产例会</div>
|
||||
<div v-else-if="row.MEETING_TYPE === '2'">安全生产委员会会议</div>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="会议状态" prop="SIGNEDDATE">
|
||||
<el-table-column label="会议状态" prop="SIGNEDDATE" width="80">
|
||||
<!-- <template #default="{ row }">-->
|
||||
<!-- <el-tag v-if="row.MEETING_STATUS === 1">{{ "进行中" }}</el-tag>-->
|
||||
<!-- <el-tag v-else>未开始</el-tag>-->
|
||||
|
@ -64,15 +64,15 @@
|
|||
<el-tag v-else-if="row.MEETING_STATUS === '2'">已结束</el-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="MEETING_DATE" label="会议时间" />
|
||||
<el-table-column label="参会人数" width="100">
|
||||
<el-table-column prop="MEETING_DATE" label="会议时间" width="200"/>
|
||||
<el-table-column label="参会人数" width="80">
|
||||
<template #default="{ row }">
|
||||
{{ row.MEETING_PERSONS + "/" + row.TOTALPERSONNUM }}人
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="HOST_PERSON" label="主持人" />
|
||||
<el-table-column prop="MEETING_ADDRESS" label="会议地点" />
|
||||
<el-table-column prop="CORP_NAME" label="运输企业" />
|
||||
<el-table-column prop="CORP_NAME" label="运输企业" width="80"/>
|
||||
<el-table-column label="操作" width="180">
|
||||
<template #default="{ row }">
|
||||
<el-button
|
||||
|
|
|
@ -58,8 +58,8 @@
|
|||
{{ serialNumber(pagination, $index) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="TITLE" label="通知标题" width="400" />
|
||||
<el-table-column label="通知等级" width="200">
|
||||
<el-table-column prop="TITLE" label="通知标题" />
|
||||
<el-table-column label="通知等级" width="100">
|
||||
<template #default="{ row }">
|
||||
<el-tag v-if="row.LEVEL === '紧急通知'" type="error">{{
|
||||
row.LEVEL
|
||||
|
@ -70,24 +70,24 @@
|
|||
}}</el-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="POSTSTATUS" label="发布状态" width="200">
|
||||
<el-table-column prop="POSTSTATUS" label="发布状态" width="100">
|
||||
<template #default="{ row }">
|
||||
<el-tag v-if="row.POSTSTATUS === '0'" type="warning">待发布</el-tag>
|
||||
<el-tag v-else type="success">已发布</el-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="回复情况" width="150">
|
||||
<el-table-column label="回复情况" width="100">
|
||||
<template #default="{ row }">
|
||||
{{ row.COUNT_REPLY + "/" + row.TOTALREADDETAIL + "人" }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
|
||||
<el-table-column label="签收情况" width="150">
|
||||
<el-table-column label="签收情况" width="100">
|
||||
<template #default="{ row }">
|
||||
{{ row.COUNT_SIGNING + "/" + row.TOTALREADDETAIL + "人" }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="CREATETIME" label="创建时间" width="200" />
|
||||
<el-table-column prop="CREATETIME" label="创建时间" width="150" />
|
||||
<!-- <el-table-column prop="CORP_NAME" label="运输企业" width="250"/>-->
|
||||
<el-table-column label="操作" width="200">
|
||||
<template #default="{ row }">
|
||||
|
|
|
@ -56,11 +56,10 @@
|
|||
{{ serialNumber(pagination, $index) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="NEWCONTRACTNAME" label="用户名称" width="100" />
|
||||
<el-table-column prop="NEWCONTRACTNAME" label="用户名称" width="100"/>
|
||||
<el-table-column
|
||||
prop="RESPONSIBILITYNAME"
|
||||
label="岗位安全责任书"
|
||||
width="250"
|
||||
/>
|
||||
<el-table-column prop="COMPLETIONSTATUS" label="完成状态" width="100">
|
||||
<template #default="{ row }">
|
||||
|
@ -68,7 +67,7 @@
|
|||
<el-tag v-else>未上传</el-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="有效状态" prop="VALIDSTATUS">
|
||||
<el-table-column label="有效状态" prop="VALIDSTATUS" width="100">
|
||||
<template #default="{ row }">
|
||||
<el-tag v-if="row.VALIDSTATUS === '1'">有效</el-tag>
|
||||
<el-tag v-else>失效</el-tag>
|
||||
|
|
|
@ -57,14 +57,14 @@
|
|||
label="用户名称"
|
||||
width="100"
|
||||
/>
|
||||
<el-table-column prop="COMMITMENTNAME" label="承诺书名称" width="250" />
|
||||
<el-table-column prop="COMMITMENTNAME" label="承诺书名称"/>
|
||||
<el-table-column prop="COMPLETIONSTATUS" label="完成状态" width="100">
|
||||
<template #default="{ row }">
|
||||
<el-tag v-if="row.COMPLETIONSTATUS === '1'">已上传</el-tag>
|
||||
<el-tag v-else>未上传</el-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="有效状态" prop="VALIDSTATUS">
|
||||
<el-table-column label="有效状态" prop="VALIDSTATUS" width="100">
|
||||
<template #default="{ row }">
|
||||
<el-tag v-if="row.VALIDSTATUS === '1'">有效</el-tag>
|
||||
<el-tag v-else>失效</el-tag>
|
||||
|
|
|
@ -74,17 +74,17 @@
|
|||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="PLAN_NAME" label="计划名称" />
|
||||
<el-table-column prop="PLAN_YEAR" label="计划年份" />
|
||||
<el-table-column prop="PLAN_YEAR" label="计划年份" width="80" />
|
||||
<el-table-column prop="PLAN_PERIOD" label="计划周期" />
|
||||
<el-table-column prop="INFO_COUNT" label="涉及费用项数" />
|
||||
<el-table-column prop="TOTAL_AMOUNT" label="总金额" />
|
||||
<el-table-column prop="INFO_COUNT" label="涉及费用项数" width="100" />
|
||||
<el-table-column prop="TOTAL_AMOUNT" label="总金额" width="100" />
|
||||
<el-table-column prop="CREATOR" label="编制人" />
|
||||
<el-table-column label="审核人">
|
||||
<template #default="{ row }">
|
||||
<span v-if="row.STATUS !== 0">{{ row.OPERATOR }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="状态">
|
||||
<el-table-column label="状态" width="80">
|
||||
<template #default="{ row }">
|
||||
{{ translationStatus(row.STATUS, statusList) }}
|
||||
</template>
|
||||
|
|
|
@ -71,17 +71,17 @@
|
|||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="PLAN_NAME" label="计划名称" />
|
||||
<el-table-column prop="PLAN_YEAR" label="计划年份" />
|
||||
<el-table-column prop="PLAN_YEAR" label="计划年份" width="80" />
|
||||
<el-table-column prop="PLAN_PERIOD" label="计划周期" />
|
||||
<el-table-column prop="INFO_COUNT" label="涉及费用项数" />
|
||||
<el-table-column prop="TOTAL_AMOUNT" label="总金额" />
|
||||
<el-table-column prop="INFO_COUNT" label="涉及费用项数" width="100" />
|
||||
<el-table-column prop="TOTAL_AMOUNT" label="总金额" width="100" />
|
||||
<el-table-column prop="CREATOR" label="编制人" />
|
||||
<el-table-column label="审核人">
|
||||
<template #default="{ row }">
|
||||
<span v-if="row.STATUS !== 0">{{ row.OPERATOR }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="状态">
|
||||
<el-table-column label="状态" width="80">
|
||||
<template #default="{ row }">
|
||||
{{ translationStatus(row.STATUS, statusList) }}
|
||||
</template>
|
||||
|
|
|
@ -99,7 +99,7 @@
|
|||
{{ serialNumber(pagination, $index) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="REMARKS" :label="labelName" />
|
||||
<el-table-column prop="REMARKS" :label="labelName"/>
|
||||
<el-table-column label="类型">
|
||||
<template #default="{ row }">
|
||||
{{
|
||||
|
@ -131,7 +131,7 @@
|
|||
<span v-else>通用</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="UPLOAD_TIME" label="上传时间" width="150px" />
|
||||
<el-table-column prop="UPLOAD_TIME" label="上传时间" width="150" />
|
||||
<el-table-column label="操作" width="200">
|
||||
<template #default="{ row }">
|
||||
<el-button
|
||||
|
|
Loading…
Reference in New Issue