Zlpt_Portal/src/views/user/goodsManagement/index.vue

753 lines
27 KiB
Vue
Raw Normal View History

2023-12-01 11:22:09 +08:00
<script setup lang="ts">
2023-12-04 17:42:11 +08:00
import TableComponent from 'components/TableComponent/index.vue'
import FormComponent from 'components/FormComponent/index.vue'
import PagingComponent from 'components/PagingComponent/index.vue'
2023-12-06 09:38:11 +08:00
import uploadComponent from 'components/uploadComponent/index.vue'
import { ElMessage } from 'element-plus'
2023-12-02 18:05:58 +08:00
import { ref } from 'vue'
2023-12-06 09:38:11 +08:00
import { useStore } from 'store/user'
const store = useStore()
2023-12-10 01:43:50 +08:00
import { mainStore } from 'store/main'
2023-12-06 15:58:21 +08:00
import {
equipmentDeploymentApi,
getEquipmentListApi,
deleteGoodstApi
} from 'http/api/usercenter/goodsmang'
2023-12-06 09:38:11 +08:00
// 注册地址拼装
const AssemblyRegisterAddress: any = reactive([])
const deviceType: any = reactive([])
onMounted(() => {
// 获取省级数据
store.getprovinceList()
// 获取设备类型
store.getDeviceTypeList()
})
// 省级数据源
const selProvinceList: any = computed(() => {
return store.provinceList
})
// 获取市级数据源
const selMarketList: any = computed(() => {
return store.marketList
})
// 获取区级数据源
const selAreaList: any = computed(() => {
return store.areaList
})
// 设备类型大类
const selDeviceTypeList: any = computed(() => {
return store.deviceTypeList
})
// 设备类型子类
const selDeviceTypeSonList: any = computed(() => {
return store.deviceTypeSonList
})
// 设备类型小类
const selDeviceTypeSunList: any = computed(() => {
return store.deviceTypeSunList
})
2023-12-09 21:54:44 +08:00
/* 查看 */
const disabledForm = ref(false)
/* 编辑 */
const isEditDisabled = ref(false)
2023-12-06 09:38:11 +08:00
// 省级下拉框选中时获取市级
const changeProvince = (val: any) => {
// console.log(val, '省选择**')
store.getmarketList(val.split(',')[0])
2023-12-09 17:00:58 +08:00
// AssemblyRegisterAddress[0] = val.split(',')[1]
2023-12-06 09:38:11 +08:00
}
// 市级下拉框选中获取区级数据
const changeMarket = (val: any) => {
store.getareaList(val.split(',')[0])
2023-12-09 17:00:58 +08:00
// AssemblyRegisterAddress[1] = val.split(',')[1]
2023-12-06 09:38:11 +08:00
}
// 区级下拉框获取区级数据
const opeChangeArea = (val: any) => {
2023-12-09 17:00:58 +08:00
// AssemblyRegisterAddress[2] = val.split(',')[1]
2023-12-06 09:38:11 +08:00
}
// 设备类型大类
const changeDeviceType = (val: any) => {
2023-12-09 21:54:44 +08:00
store.getDeviceTypeSonList(val)
// deviceType[0] = val.split(',')[1]
2023-12-06 09:38:11 +08:00
}
// 设备类型子类
const changeDeviceTypeSon = (val: any) => {
2023-12-09 21:54:44 +08:00
store.getDeviceTypeSunList(val)
// deviceType[1] = val.split(',')[1]
2023-12-06 09:38:11 +08:00
}
// 设备类型小类
const changeDeviceTypeSun = (val: any) => {
2023-12-09 21:54:44 +08:00
// deviceType[2] = val.split(',')[1]
2023-12-06 09:38:11 +08:00
}
/*
* 商品入驻弹框参数
*/
const equipmentDeploymentParams: any = ref({
2023-12-10 01:43:50 +08:00
/* 企业Id */
ownCo: mainStore().userInfo.companyId,
2023-12-06 09:38:11 +08:00
/* 租赁范围 */
leaseScope: '',
2023-12-06 09:38:11 +08:00
/* 设备所在地 */
location: '',
2023-12-09 17:00:58 +08:00
/* 省 */
provinceId: '',
/* 市 */
cityId: '',
/* 区 */
areaId: '',
2023-12-06 09:38:11 +08:00
/* 设备所在地 省 */
addressEconomize: '',
/* 设备所在地 市 */
addressProvince: '',
/* 设备所在地 区 */
addressArea: '',
/* 设备类型 */
typeId: '',
/* 设备类型大类 */
deviceType: '',
/* 设备类型子类 */
deviceTypeSon: '',
/* 设备类型小类*/
deviceTypeSun: '',
/* 设备品牌 */
brand: '',
/* 设备型号 */
modelName: '',
/* 出场日期 */
productionDate: '',
/* 工作小时数 */
workingHours: '',
/* 整机序列号 */
serialNumber: '',
/* 月租金 */
monthLeasePrice: '',
/* 日租金 */
dayLeasePrice: '',
/* 是否提供机手 */
isOperator: '',
/* 机手月费用 */
jsMonthPrice: '',
/* 机手日费用 */
jsDayPrice: '',
/* 详细说明 */
description: '',
2023-12-09 17:00:58 +08:00
/* 设备主图片 */
2023-12-06 09:38:11 +08:00
picUrl: '',
/* 检测信息 ,保险信息*/
2023-12-09 21:54:44 +08:00
fileList: [],
/* 设备状态 */
maStatus: 15
2023-12-06 09:38:11 +08:00
})
2023-12-04 09:12:38 +08:00
const pageSize = 20
const pageNumber = 1
const total: any = ref(0)
2023-12-08 12:09:54 +08:00
const tableData: any = ref([])
2023-12-04 09:12:38 +08:00
// 获取数据列表
2023-12-06 09:38:11 +08:00
const getList = async () => {
const res: any = await getEquipmentListApi({})
2023-12-08 12:09:54 +08:00
console.log('商品管理99999', res)
total.value = res.total
2023-12-08 12:09:54 +08:00
tableData.value = res.rows.filter((item: any) => item !== null)
2023-12-04 09:12:38 +08:00
}
2023-12-06 09:38:11 +08:00
getList()
2023-12-02 18:05:58 +08:00
// 选择复选框时获取需要删除的数据源
const getRowId = (val: any) => {
console.log(val, '需要删除的数据源**')
}
// 编辑按钮
const editRowInfo = (row: any) => {
2023-12-09 21:54:44 +08:00
getRowList(row)
isEditDisabled.value = true
disabledForm.value = false
2023-12-02 18:05:58 +08:00
}
// 删除按钮
2023-12-06 15:58:21 +08:00
const deleteRowInfo = async (row: any) => {
const res: any = await deleteGoodstApi([row.maId])
if (res.code === 200) {
ElMessage({
type: 'success',
message: '删除成功'
})
getList()
}
2023-12-02 18:05:58 +08:00
}
2023-12-09 21:54:44 +08:00
/* 查看按钮 */
const previewRowInfo = (row: any) => {
row.devPicList = []
row.fileList.map((item) => {
if (item.dicId == 28) {
row.jcUrl = item.fileUrl
}
if (item.dicId == 29) {
row.bsUrl = item.fileUrl
}
if (item.dicId == 20) {
row.devPicList.push(item.fileUrl)
}
})
getRowList(row)
disabledForm.value = true
isEditDisabled.value = false
}
const getRowList = (row: any) => {
equipmentDeploymentParams.value = row
equipmentDeploymentParams.value.cityId = equipmentDeploymentParams.value.cityId + ''
equipmentDeploymentParams.value.areaId = equipmentDeploymentParams.value.areaId + ''
equipmentDeploymentParams.value.provinceId = equipmentDeploymentParams.value.provinceId + ''
equipmentDeploymentParams.value.leaseScope = equipmentDeploymentParams.value.leaseScope + ''
equipmentDeploymentParams.value.companyId = equipmentDeploymentParams.value.companyId * 1
equipmentDeploymentParams.value.groupId = equipmentDeploymentParams.value.groupId * 1
equipmentDeploymentParams.value.typeId = equipmentDeploymentParams.value.typeId * 1
dialogFormVisibleSettlein.value = true
store.getprovinceList()
store.getmarketList(row.provinceId)
store.getareaList(row.cityId)
store.getDeviceTypeList()
store.getDeviceTypeSonList(row.companyId)
store.getDeviceTypeSunList(row.groupId)
}
2023-12-02 18:05:58 +08:00
// 装备入驻按钮
const equipmentDeployment = () => {
2023-12-09 21:54:44 +08:00
isEditDisabled.value = true
2023-12-06 15:58:21 +08:00
equipmentDeploymentParams.value = {
2023-12-10 01:43:50 +08:00
/* 企业Id */
ownCo: mainStore().userInfo.companyId,
2023-12-06 15:58:21 +08:00
/* 租赁范围 */
leaseScope: '',
/* 设备所在地 */
location: '',
2023-12-09 21:54:44 +08:00
/* 省 */
provinceId: '',
/* 市 */
cityId: '',
/* 区 */
areaId: '',
2023-12-06 15:58:21 +08:00
/* 设备所在地 省 */
addressEconomize: '',
/* 设备所在地 市 */
addressProvince: '',
/* 设备所在地 区 */
addressArea: '',
/* 设备类型 */
typeId: '',
/* 设备类型大类 */
deviceType: '',
/* 设备类型子类 */
deviceTypeSon: '',
/* 设备类型小类*/
deviceTypeSun: '',
/* 设备品牌 */
brand: '',
/* 设备型号 */
modelName: '',
/* 出场日期 */
productionDate: '',
/* 工作小时数 */
workingHours: '',
/* 整机序列号 */
serialNumber: '',
/* 月租金 */
monthLeasePrice: '',
/* 日租金 */
dayLeasePrice: '',
/* 是否提供机手 */
isOperator: '',
/* 机手月费用 */
jsMonthPrice: '',
/* 机手日费用 */
jsDayPrice: '',
/* 详细说明 */
description: '',
2023-12-09 21:54:44 +08:00
/* 设备主图片 */
2023-12-06 15:58:21 +08:00
picUrl: '',
/* 检测信息 ,保险信息*/
2023-12-09 21:54:44 +08:00
fileList: [],
2023-12-06 15:58:21 +08:00
/* 设备状态 */
maStatus: 15
}
2023-12-02 18:05:58 +08:00
// 打开入驻弹框
dialogFormVisibleSettlein.value = true
}
2023-12-04 17:42:11 +08:00
const ruleFormRef = ref()
2023-12-02 18:05:58 +08:00
// 入驻框保存提交
2023-12-06 09:38:11 +08:00
const submitBtn = async () => {
console.log(AssemblyRegisterAddress, '地址***---***')
2023-12-06 15:58:21 +08:00
// equipmentDeploymentParams.value.location = AssemblyRegisterAddress.join(',')
2023-12-06 09:38:11 +08:00
// equipmentDeploymentParams.typeId = deviceType.join(',')
2023-12-06 15:58:21 +08:00
const res: any = await equipmentDeploymentApi(equipmentDeploymentParams.value)
if (res.code === 200) {
ElMessage({
type: 'success',
message: '入驻成功'
})
dialogFormVisibleSettlein.value = false
getList()
}
2023-12-06 09:38:11 +08:00
/* ruleFormRef.value.validate((valid: any) => {
2023-12-02 18:05:58 +08:00
console.log(valid)
2023-12-06 09:38:11 +08:00
}) */
2023-12-02 18:05:58 +08:00
}
2023-12-04 17:42:11 +08:00
const tableProps: any = ref([
{ v_label: '编码', v_props: 'code', v_slot: '', width: '' },
{ v_label: '租赁范围', v_props: 'leaseScope', v_slot: '', width: '' },
{ v_label: '装备类型', v_props: 'modelName', v_slot: '', width: '' },
2023-12-02 18:05:58 +08:00
{ v_label: '装备名称', v_props: 'v_equipment_name', v_slot: '', width: '' },
{ v_label: '租金', v_props: 'monthLeasePrice', v_slot: '', width: '' },
{ v_label: '状态', v_props: 'maStatus', v_slot: 'v_type', width: '' },
2023-12-02 18:05:58 +08:00
{ v_label: '操作', v_props: 'v_operate', v_slot: 'operate', width: '140px' }
])
// 表单 lable 数据
2023-12-04 17:42:11 +08:00
const formItemList: any = ref([
2023-12-02 18:05:58 +08:00
{ v_label: '编码', v_typ: 'ipt' },
{ v_label: '状态', v_typ: 'ipt' },
{ v_label: '租赁范围', v_typ: 'sel' },
{ v_label: '装备类型', v_typ: 'sel' },
{ v_label: '装备名称', v_typ: 'ipt' }
])
// 装备入驻弹框显示隐藏
const dialogFormVisibleSettlein: any = ref(false)
2023-12-02 18:05:58 +08:00
const rules = ref({
v_name: [
{
required: true,
message: '必填项',
trigger: 'blur'
},
{ min: 3, max: 5, message: 'Length should be 3 to 5', trigger: 'blur' }
],
v_region: [
{
required: true,
message: '必填项',
trigger: 'blur'
}
]
})
2023-12-09 17:00:58 +08:00
/* 检测信息图片地址 */
const successResultCallBackFnjc = (val: any) => {
2023-12-09 21:54:44 +08:00
equipmentDeploymentParams.value.fileList.push({
dicId: '28',
fileUrl: val.msg
2023-12-09 17:00:58 +08:00
})
}
/* 保险信息图片地址 */
const successResultCallBackFnbs = (val: any) => {
2023-12-09 21:54:44 +08:00
equipmentDeploymentParams.value.fileList.push({
dicId: '29',
fileUrl: val.msg
2023-12-09 17:00:58 +08:00
})
}
/* 设备图片信息地址 */
const successResultCallBackFnDevicePic = (val: any) => {
2023-12-09 21:54:44 +08:00
if (!equipmentDeploymentParams.value.picUrl) {
equipmentDeploymentParams.value.picUrl = val.msg
}
equipmentDeploymentParams.value.fileList.push({
dicId: '20',
fileUrl: val.msg
2023-12-09 17:00:58 +08:00
})
}
2023-12-01 11:22:09 +08:00
</script>
<template>
2023-12-02 18:05:58 +08:00
<!-- 商品管理 -->
<FormComponent :formItemList="formItemList">
2023-12-01 11:22:09 +08:00
<el-form-item>
2023-12-02 18:05:58 +08:00
<el-button type="primary" @click="equipmentDeployment">装备入驻</el-button>
2023-12-01 11:22:09 +08:00
</el-form-item>
2023-12-02 18:05:58 +08:00
</FormComponent>
2023-12-01 11:22:09 +08:00
<!-- 表格 -->
2023-12-09 21:54:44 +08:00
<!-- 表格 -->
<el-table
:data="tableData"
style="width: 100%"
show-overflow-tooltip
:header-cell-style="{
background: '#3E98FF',
color: '#fff'
}">
<el-table-column align="center" prop="code" label="编码" />
<el-table-column align="center" prop="leaseScope" label="租赁范围">
<template #default="{ row }">
{{ row.leaseScope == 329 ? '全平台' : '专区' }}
</template>
</el-table-column>
<el-table-column align="center" prop="typeName" label="装备类型" />
<el-table-column align="center" prop="deviceName" label="装备名称" />
2023-12-10 01:43:50 +08:00
<el-table-column align="center" label="租金">
<template #default="{ row }">
<el-tag size="small">{{ row.monthLeasePrice + '/月' }}</el-tag>
<el-tag size="small">{{ row.dayLeasePrice + '/天' }}</el-tag>
</template>
</el-table-column>
<el-table-column align="center" label="状态" width="80px">
2023-12-09 21:54:44 +08:00
<template #default="{ row }">
<el-tag v-if="row.maStatus == 15" size="small" type="info">待上架</el-tag>
<el-tag v-if="row.maStatus == 16" size="small" type="warning">待租</el-tag>
<el-tag v-if="row.maStatus == 17" size="small" type="success">在租</el-tag>
<el-tag v-if="row.maStatus == 18" size="small" type="danger">下架</el-tag>
<el-tag v-if="row.maStatus == 43" size="small" type="primary">自有</el-tag>
<el-tag v-if="row.maStatus == 331" size="small" type="warning">待审批</el-tag>
<el-tag v-if="row.maStatus == 332" size="small" type="danger">上架驳回</el-tag>
</template>
</el-table-column>
<el-table-column prop="name" label="操作" width="200px" align="center">
<template #default="{ row }">
<!-- <el-button
v-if="row.maStatus == 15 || row.maStatus == 1"
size="small"
type="primary"
@click="editRowInfo(row)">
编辑
</el-button> -->
<el-button size="small" type="primary" @click="editRowInfo(row)">编辑</el-button>
<el-button
v-if="row.maStatus == 15 || row.maStatus == 1"
size="small"
type="danger"
@click="deleteRowInfo(row)">
删除
</el-button>
<el-button size="small" type="primary" @click="previewRowInfo(row)">查看</el-button>
</template>
</el-table-column>
</el-table>
2023-12-02 18:05:58 +08:00
2023-12-04 09:12:38 +08:00
<!-- 分页 -->
<PagingComponent
@getList="getList"
:pageSize="pageSize"
:pageNumber="pageNumber"
:total="total" />
2023-12-02 18:05:58 +08:00
<!-- 装备入驻弹框 -->
<el-dialog v-model="dialogFormVisibleSettlein" title="装备入驻" width="60%" align-center>
2023-12-06 09:38:11 +08:00
<el-form
label-width="160"
ref="ruleFormRef"
:model="equipmentDeploymentParams"
2023-12-09 21:54:44 +08:00
:rules="rules"
:disabled="disabledForm">
2023-12-06 09:38:11 +08:00
<el-form-item label="租赁范围" prop="easeScope">
2023-12-09 17:00:58 +08:00
<el-select
v-model="equipmentDeploymentParams.leaseScope"
2023-12-09 17:00:58 +08:00
placeholder="选择租赁范围"
style="width: 220px; margin: 0 5px"
clearable>
<el-option label="全平台" value="329"></el-option>
2023-12-09 21:54:44 +08:00
<el-option label="专区" value="330"></el-option>
2023-12-09 17:00:58 +08:00
</el-select>
2023-12-02 18:05:58 +08:00
</el-form-item>
<el-form-item label="设备所在地">
2023-12-06 09:38:11 +08:00
<el-select
2023-12-09 17:00:58 +08:00
v-model="equipmentDeploymentParams.provinceId"
2023-12-06 09:38:11 +08:00
placeholder="选择省"
style="width: 220px; margin: 0 5px"
@change="changeProvince"
clearable>
<el-option
v-for="item in selProvinceList"
:key="item.id"
:label="item.name"
2023-12-09 21:54:44 +08:00
:value="item.code + ''"></el-option>
2023-12-02 18:05:58 +08:00
</el-select>
2023-12-06 09:38:11 +08:00
<el-select
2023-12-09 17:00:58 +08:00
v-model="equipmentDeploymentParams.cityId"
2023-12-06 09:38:11 +08:00
placeholder="选择市"
style="width: 220px; margin: 0 5px"
@change="changeMarket"
clearable>
<el-option
v-for="item in selMarketList"
:key="item.id"
:label="item.name"
2023-12-09 21:54:44 +08:00
:value="item.code + ''"></el-option>
2023-12-02 18:05:58 +08:00
</el-select>
2023-12-06 09:38:11 +08:00
<el-select
2023-12-09 17:00:58 +08:00
v-model="equipmentDeploymentParams.areaId"
2023-12-06 09:38:11 +08:00
placeholder="选择区"
style="width: 220px; margin: 0 5px"
clearable
@change="opeChangeArea">
<el-option
v-for="item in selAreaList"
:key="item.id"
:label="item.name"
2023-12-09 21:54:44 +08:00
:value="item.code + ''"></el-option>
2023-12-02 18:05:58 +08:00
</el-select>
</el-form-item>
<el-form-item label="设备类型">
2023-12-06 09:38:11 +08:00
<el-select
2023-12-09 21:54:44 +08:00
v-model="equipmentDeploymentParams.companyId"
2023-12-06 09:38:11 +08:00
placeholder="选择设备类型"
style="width: 220px; margin: 0 5px"
clearable
@change="changeDeviceType">
<el-option
v-for="item in selDeviceTypeList"
:key="item.typeId"
:label="item.typeName"
2023-12-09 21:54:44 +08:00
:value="item.typeId"></el-option>
2023-12-02 18:05:58 +08:00
</el-select>
2023-12-06 09:38:11 +08:00
<el-select
placeholder="选择组别"
style="width: 220px; margin: 0 5px"
clearable
@change="changeDeviceTypeSon"
2023-12-09 21:54:44 +08:00
v-model="equipmentDeploymentParams.groupId">
2023-12-06 09:38:11 +08:00
<el-option
v-for="item in selDeviceTypeSonList"
:key="item.typeId"
:label="item.typeName"
2023-12-09 21:54:44 +08:00
:value="item.typeId"></el-option>
2023-12-02 18:05:58 +08:00
</el-select>
2023-12-06 09:38:11 +08:00
<el-select
placeholder="选择产品名称"
style="width: 220px; margin: 0 5px"
clearable
@change="changeDeviceTypeSun"
v-model="equipmentDeploymentParams.typeId">
<el-option
v-for="item in selDeviceTypeSunList"
:key="item.typeId"
:label="item.typeName"
:value="item.typeId"></el-option>
2023-12-02 18:05:58 +08:00
</el-select>
</el-form-item>
2023-12-06 09:38:11 +08:00
<el-form-item label="设备品牌" prop="brand">
2023-12-02 18:05:58 +08:00
<el-input
autocomplete="off"
style="width: 360px"
2023-12-06 09:38:11 +08:00
v-model="equipmentDeploymentParams.brand"
2023-12-02 18:05:58 +08:00
clearable />
</el-form-item>
<el-form-item label="设备型号">
2023-12-06 09:38:11 +08:00
<el-input
v-model="equipmentDeploymentParams.modelName"
autocomplete="off"
style="width: 360px"
clearable />
2023-12-02 18:05:58 +08:00
</el-form-item>
<el-form-item label="出厂日期">
2023-12-09 21:54:44 +08:00
<el-date-picker
2023-12-06 09:38:11 +08:00
v-model="equipmentDeploymentParams.productionDate"
2023-12-09 21:54:44 +08:00
type="date"
placeholder="选择出厂日期"
2023-12-06 09:38:11 +08:00
style="width: 360px"
2023-12-09 21:54:44 +08:00
clearable
value-format="YYYY-MM-DD"
format="YYYY-MM-DD" />
2023-12-02 18:05:58 +08:00
</el-form-item>
<el-form-item label="工作小时数">
2023-12-06 09:38:11 +08:00
<el-input
v-model="equipmentDeploymentParams.workingHours"
autocomplete="off"
style="width: 360px; margin-right: 5px"
clearable />
2023-12-02 18:05:58 +08:00
小时
</el-form-item>
<el-form-item label="整机序列号">
2023-12-06 09:38:11 +08:00
<el-input
v-model="equipmentDeploymentParams.serialNumber"
autocomplete="off"
style="width: 360px"
clearable />
2023-12-02 18:05:58 +08:00
</el-form-item>
<el-form-item label="月租金">
2023-12-06 09:38:11 +08:00
<el-input
v-model="equipmentDeploymentParams.monthLeasePrice"
autocomplete="off"
style="width: 360px; margin-right: 5px"
clearable />
2023-12-02 18:05:58 +08:00
/
</el-form-item>
<el-form-item label="日租金">
2023-12-06 09:38:11 +08:00
<el-input
v-model="equipmentDeploymentParams.dayLeasePrice"
autocomplete="off"
style="width: 360px; margin-right: 5px"
clearable />
2023-12-02 18:05:58 +08:00
/
</el-form-item>
<el-form-item label="检测信息">
2023-12-06 09:38:11 +08:00
<uploadComponent
2023-12-09 21:54:44 +08:00
v-if="!disabledForm || isEditDisabled"
:maxLimit="1"
2023-12-09 17:00:58 +08:00
listType="text"
:acceptTypeList="['.pdf']"
2023-12-06 09:38:11 +08:00
width="120px"
2023-12-09 17:00:58 +08:00
height="120px"
:autoUpload="true"
:successResultCallBack="successResultCallBackFnjc">
2023-12-06 09:38:11 +08:00
<template v-slot:default>
2023-12-09 21:54:44 +08:00
<el-icon size="20" color="#aaa"><Plus /></el-icon>
2023-12-06 09:38:11 +08:00
</template>
</uploadComponent>
2023-12-09 21:54:44 +08:00
<template v-else>
<a
style="color: rgb(97, 226, 153); cursor: pointer"
target="_blank"
:href="equipmentDeploymentParams.jcUrl">
</a>
</template>
2023-12-02 18:05:58 +08:00
</el-form-item>
<el-form-item label="保险信息">
2023-12-06 09:38:11 +08:00
<uploadComponent
2023-12-09 21:54:44 +08:00
v-if="!disabledForm || isEditDisabled"
:maxLimit="1"
2023-12-09 17:00:58 +08:00
listType="text"
:acceptTypeList="['.pdf']"
2023-12-06 09:38:11 +08:00
width="120px"
2023-12-09 17:00:58 +08:00
height="120px"
:autoUpload="true"
:successResultCallBack="successResultCallBackFnbs">
2023-12-06 09:38:11 +08:00
<template v-slot:default>
2023-12-09 21:54:44 +08:00
<el-icon size="20" color="#aaa"><Plus /></el-icon>
2023-12-06 09:38:11 +08:00
</template>
</uploadComponent>
2023-12-09 21:54:44 +08:00
<template v-else>
<a
style="color: rgb(97, 226, 153); cursor: pointer"
target="_blank"
:href="equipmentDeploymentParams.bsUrl">
</a>
</template>
2023-12-02 18:05:58 +08:00
</el-form-item>
<el-form-item label="是否提供机手">
2023-12-06 09:38:11 +08:00
<el-select
placeholder="选择是否提供机手"
style="width: 220px; margin: 0 5px"
clearable
v-model="equipmentDeploymentParams.isOperator">
<el-option label="是" value="0"></el-option>
<el-option label="否" value="1"></el-option>
2023-12-06 09:38:11 +08:00
</el-select>
2023-12-02 18:05:58 +08:00
</el-form-item>
<el-form-item label="机手月费用">
2023-12-06 09:38:11 +08:00
<el-input
v-model="equipmentDeploymentParams.jsMonthPrice"
autocomplete="off"
style="width: 360px; margin-right: 5px"
clearable />
2023-12-02 18:05:58 +08:00
/
</el-form-item>
<el-form-item label="机手日费用">
2023-12-06 09:38:11 +08:00
<el-input
v-model="equipmentDeploymentParams.jsDayPrice"
autocomplete="off"
style="width: 360px; margin-right: 5px"
clearable />
2023-12-02 18:05:58 +08:00
/
</el-form-item>
<el-form-item label="详细说明">
2023-12-06 09:38:11 +08:00
<el-input
v-model="equipmentDeploymentParams.description"
autocomplete="off"
style="width: 360px; margin-right: 5px"
clearable
type="textarea"
:rows="5" />
2023-12-02 18:05:58 +08:00
</el-form-item>
<el-form-item label="设备图片">
2023-12-06 09:38:11 +08:00
<uploadComponent
2023-12-09 21:54:44 +08:00
v-if="!disabledForm && isEditDisabled"
2023-12-09 17:00:58 +08:00
:maxLimit="8"
2023-12-06 09:38:11 +08:00
listType="picture-card"
:acceptTypeList="['.jpg', '.jpeg', '.png']"
width="120px"
2023-12-09 17:00:58 +08:00
height="120px"
2023-12-09 21:54:44 +08:00
:successResultCallBack="successResultCallBackFnDevicePic"
:autoUpload="true"
:multiple="true">
2023-12-06 09:38:11 +08:00
<template v-slot:default>
<el-icon size="48" color="#aaa"><Plus /></el-icon>
</template>
</uploadComponent>
2023-12-09 21:54:44 +08:00
<span v-if="!disabledForm">
至少一张最多八张
设备图片格式为jpgpng和gif文件不得超过5M否则将无法上传请从前后左右四个方向以及从主要工作部件内部结构等方面展示设备
</span>
<template v-if="disabledForm && !isEditDisabled">
<el-image
v-for="item in equipmentDeploymentParams.devPicList"
:key="item"
style="width: 120px; height: 120px; margin-right: 8px"
:src="item"
fit="cover" />
</template>
<!-- <el-image
style="width: 120px; height: 120px; margin-right: 8px"
src="https://fuss10.elemecdn.com/e/5d/4a731a90594a4af544c0c25941171jpeg.jpeg"
fit="cover" />
<el-image
style="width: 120px; height: 120px; margin-right: 8px"
src="https://fuss10.elemecdn.com/e/5d/4a731a90594a4af544c0c25941171jpeg.jpeg"
fit="cover" /> -->
2023-12-02 18:05:58 +08:00
</el-form-item>
</el-form>
<template #footer>
<span class="dialog-footer">
<el-button type="primary" @click="dialogFormVisibleSettlein = false">
</el-button>
<el-button @click="submitBtn"> </el-button>
</span>
</template>
</el-dialog>
2023-12-01 11:22:09 +08:00
</template>
<style>
2023-12-02 18:05:58 +08:00
.el-form {
margin: 15px 0;
}
</style>