回收柜列表基础功能

master
mhsnet 4 months ago
parent 2169f8a97b
commit bce324b42e

@ -5,7 +5,7 @@ import jnpf.entity.RecycleDeviceEntity;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
*
* RecycleDevice
* V3.5
* https://www.jnpfsoft.com
* JNPF

@ -7,7 +7,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
/**
*
* RecycleDevice
* V3.5
* https://www.jnpfsoft.com
* JNPF

@ -32,7 +32,7 @@ import jnpf.base.UserInfo;
import jnpf.permission.entity.UserEntity;
/**
*
*
* RecycleDevice
* V3.5
* https://www.jnpfsoft.com
* JNPF
@ -113,7 +113,7 @@ public class RecycleDeviceServiceImpl extends ServiceImpl<RecycleDeviceMapper, R
allRuleIDlist = allRuleList;
}
}
boolean pcPermission = false;
boolean pcPermission = true;
boolean appPermission = false;
if(isPc && pcPermission){
if (!userProvider.get().getIsAdministrator()){
@ -202,6 +202,8 @@ public class RecycleDeviceServiceImpl extends ServiceImpl<RecycleDeviceMapper, R
List<String> finalAllRuleIDlist = allRuleIDlist;
recycleDeviceQueryWrapper.lambda().and(t->t.in(RecycleDeviceEntity::getId, finalAllRuleIDlist));
}
//假删除标志
recycleDeviceQueryWrapper.lambda().isNull(RecycleDeviceEntity::getDeleteMark);
//排序
if(StringUtil.isEmpty(recycleDevicePagination.getSidx())){
@ -288,20 +290,9 @@ public class RecycleDeviceServiceImpl extends ServiceImpl<RecycleDeviceMapper, R
if(isSave){
String mainId = RandomUtil.uuId() ;
entity.setDeviceCode(generaterSwapUtil.getBillNumber("deviceCode", false));
entity.setCreatorTime(DateUtil.getNowDate());
entity.setCreatorUserId(userInfo.getUserId());
entity.setLastModifyUserId(null);
entity.setLastModifyTime(null);
entity.setOrganizeJsonId(generaterSwapUtil.getCurrentOrgIds(userInfo.getOrganizeId(),"all"));
entity.setDeviceCode(generaterSwapUtil.getBillNumber("deviceCode", false));
entity.setId(mainId);
}else{
entity.setDeviceCode(generaterSwapUtil.getBillNumber("deviceCode", false));
entity.setCreatorTime(DateUtil.getNowDate());
entity.setCreatorUserId(userInfo.getUserId());
entity.setLastModifyUserId(null);
entity.setLastModifyTime(null);
entity.setOrganizeJsonId(generaterSwapUtil.getCurrentOrgIds(userInfo.getOrganizeId(),"all"));
}
this.saveOrUpdate(entity);

@ -30,7 +30,7 @@ import jnpf.exception.WorkFlowException;
import org.springframework.transaction.annotation.Transactional;
/**
*
* RecycleDevice
* @ V3.5
* @ https://www.jnpfsoft.com
* @ JNPF
@ -38,7 +38,7 @@ import org.springframework.transaction.annotation.Transactional;
*/
@Slf4j
@RestController
@Tag(name = "设备清单" , description = "scm")
@Tag(name = "RecycleDevice" , description = "scm")
@RequestMapping("/api/scm/RecycleDevice")
public class RecycleDeviceController {
@ -141,8 +141,9 @@ public class RecycleDeviceController {
public ActionResult delete(@PathVariable("id") String id){
RecycleDeviceEntity entity= recycleDeviceService.getInfo(id);
if(entity!=null){
//主表数据删除
recycleDeviceService.delete(entity);
//假删除
entity.setDeleteMark(1);
recycleDeviceService.update(id,entity);
}
return ActionResult.success("删除成功");
}
@ -183,11 +184,7 @@ public class RecycleDeviceController {
recycleDeviceMap.put("id", recycleDeviceMap.get("id"));
//副表数据
//子表数据
try {
recycleDeviceMap = generaterSwapUtil.swapDataForm(recycleDeviceMap,RecycleDeviceConstant.getFormData(),RecycleDeviceConstant.TABLEFIELDKEY,RecycleDeviceConstant.TABLERENAMES);
}catch (Exception e){
e.printStackTrace();
}
recycleDeviceMap = generaterSwapUtil.swapDataForm(recycleDeviceMap,RecycleDeviceConstant.getFormData(),RecycleDeviceConstant.TABLEFIELDKEY,RecycleDeviceConstant.TABLERENAMES);
return ActionResult.success(recycleDeviceMap);
}

@ -36,6 +36,10 @@ public class RecycleDeviceEntity {
private String beLongStationId;
@TableField(value = "BE_LONG_COMPANY_ID" , updateStrategy = FieldStrategy.IGNORED)
private String beLongCompanyId;
@TableField(value = "BE_LONG_RECYCLER_PHONE" , updateStrategy = FieldStrategy.IGNORED)
private String beLongRecyclerPhone;
@TableField(value = "DEVICE_CODE_QR" , updateStrategy = FieldStrategy.IGNORED)
private String deviceCodeQr;
@TableField(value = "LATITUDE" , updateStrategy = FieldStrategy.IGNORED)
private String latitude;
@TableField(value = "LONGITUDE" , updateStrategy = FieldStrategy.IGNORED)
@ -44,21 +48,21 @@ public class RecycleDeviceEntity {
private String creatorUserId;
@TableField("F_CREATOR_TIME")
private Date creatorTime;
@TableField("F_LAST_MODIFY_TIME")
@TableField(value = "f_last_modify_time" , fill = FieldFill.INSERT_UPDATE)
private Date lastModifyTime;
@TableField("F_LAST_MODIFY_USER_ID")
@TableField(value = "f_last_modify_user_id" , fill = FieldFill.INSERT_UPDATE)
private String lastModifyUserId;
@TableField("COMPANY_ID")
@TableField(value = "company_id" , fill = FieldFill.INSERT)
private String companyId;
@TableField("ORGANIZE_JSON_ID")
@TableField(value = "organize_json_id" , fill = FieldFill.INSERT)
private String organizeJsonId;
@TableField("F_FLOW_ID")
private String flowId;
@TableField("F_DELETE_TIME")
@TableField(value = "f_delete_time" , fill = FieldFill.UPDATE)
private Date deleteTime;
@TableField("F_DELETE_USER_ID")
@TableField(value = "f_delete_user_id" , fill = FieldFill.UPDATE)
private String deleteUserId;
@TableField("F_DELETE_MARK")
@TableField(value = "f_delete_mark" , updateStrategy = FieldStrategy.IGNORED)
private Integer deleteMark;
@TableField("F_TENANT_ID")
private Integer tenantId;

@ -77,7 +77,6 @@ public class RecycleStationStaffEntity {
private Integer deleteMark;
@TableField("F_TENANT_ID")
private String tenantId;
@TableField(value = "company_id" , fill = FieldFill.INSERT)
private String companyId;
@TableField(value = "department_id" , fill = FieldFill.INSERT)

@ -6,7 +6,7 @@ import java.math.BigDecimal;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
*
* RecycleDevice
* @ V3.5
* @ https://www.jnpfsoft.com
* @ JNPF
@ -35,12 +35,18 @@ public class RecycleDeviceForm {
/** 设备状态 **/
@JsonProperty("status")
private String status;
/** 分配商户 **/
/** 所属商户 **/
@JsonProperty("beLongCompanyId")
private String beLongCompanyId;
private Object beLongCompanyId;
/** 分配回收站 **/
@JsonProperty("beLongStationId")
private Object beLongStationId;
/** 所属清运员 **/
@JsonProperty("beLongRecyclerPhone")
private Object beLongRecyclerPhone;
/** 设备码二维码 **/
@JsonProperty("deviceCodeQr")
private Object deviceCodeQr;
/** 设备IP **/
@JsonProperty("ipAddress")
private String ipAddress;

@ -7,7 +7,7 @@ import java.util.List;
/**
*
*
* RecycleDevice
* @ V3.5
* @ https://www.jnpfsoft.com
* @ JNPF

@ -1,60 +1,81 @@
<template>
<el-dialog title="详情"
:close-on-click-modal="false" append-to-body
:visible.sync="visible" class="JNPF-dialog JNPF-dialog_center" lock-scroll
width="600px">
<el-row :gutter="15" class="">
<transition name="el-zoom-in-center">
<div class="JNPF-preview-main">
<Detail v-if="detailVisible" ref="Detail" @close="detailVisible = false" />
<div class="JNPF-common-page-header">
<el-page-header @back="goBack"
content="详情"/>
<div class="options">
<el-button @click="goBack"> </el-button>
</div>
</div>
<el-row :gutter="15" class=" main" :style="{margin: '0 auto',width: '100%'}">
<el-form ref="formRef" :model="dataForm" size="small" label-width="100px" label-position="right" >
<template v-if="!loading">
<el-col :span="24" >
<el-col :span="8" >
<jnpf-form-tip-item label="设备编码"
prop="deviceCode" >
<p>{{dataForm.deviceCode}}</p>
</jnpf-form-tip-item>
</el-col>
<el-col :span="24" >
<el-col :span="8" >
<jnpf-form-tip-item label="设备名称"
prop="deviceName" tip-label="设备名称" >
<p>{{dataForm.deviceName}}</p>
</jnpf-form-tip-item>
</el-col>
<el-col :span="24" >
<el-col :span="8" >
<jnpf-form-tip-item label="所在城市"
prop="city" >
<p>{{dataForm.city}}</p>
</jnpf-form-tip-item>
</el-col>
<el-col :span="24" >
<el-col :span="8" >
<jnpf-form-tip-item label="地址"
prop="address" >
<p>{{dataForm.address}}</p>
</jnpf-form-tip-item>
</el-col>
<el-col :span="24" >
<el-col :span="8" >
<jnpf-form-tip-item label="投用状态"
prop="useStatus" >
<p>{{ dataForm.useStatus }} </p>
</jnpf-form-tip-item>
</el-col>
<el-col :span="24" >
<el-col :span="8" >
<jnpf-form-tip-item label="设备状态"
prop="status" >
<p>{{ dataForm.status }} </p>
</jnpf-form-tip-item>
</el-col>
<el-col :span="24" >
<jnpf-form-tip-item label="分配商户"
prop="beLongCompanyId" tip-label="绑定商户" >
<el-col :span="8" >
<jnpf-form-tip-item label="所属商户"
prop="beLongCompanyId" >
<p>{{dataForm.beLongCompanyId}}</p>
</jnpf-form-tip-item>
</el-col>
<el-col :span="24" >
<el-col :span="8" >
<jnpf-form-tip-item label="分配回收站"
prop="beLongStationId" tip-label="分配回收站" >
<p>{{dataForm.beLongStationId}}</p>
</jnpf-form-tip-item>
</el-col>
<el-col :span="8" >
<jnpf-form-tip-item label="所属清运员"
prop="beLongRecyclerPhone" >
<p>{{dataForm.beLongRecyclerPhone}}</p>
</jnpf-form-tip-item>
</el-col>
<el-col :span="24" >
<jnpf-form-tip-item label="设备码二维码"
prop="deviceCodeQr" >
<JnpfUploadImg v-model="dataForm.deviceCodeQr"
disabled
detailed :fileSize="100" sizeUnit="MB" :limit="1" pathType="defaultPath" :isAccount="0" >
</JnpfUploadImg>
</jnpf-form-tip-item>
</el-col>
<el-col :span="8" >
<jnpf-form-tip-item label="设备总重"
prop="boxWeight" >
<p>{{dataForm.boxWeight}}</p>
@ -75,11 +96,8 @@
</template>
</el-form>
</el-row>
<span slot="footer" class="dialog-footer">
<el-button @click="visible = false"> </el-button>
</span>
<Detail v-if="detailVisible" ref="Detail" @close="detailVisible = false" />
</el-dialog>
</div>
</transition>
</template>
<script>
import request from '@/utils/request'
@ -105,8 +123,10 @@
address : '',
useStatus : "0",
status : "0",
beLongCompanyId : "",
beLongCompanyId : [],
beLongStationId : [],
beLongRecyclerPhone : "",
deviceCodeQr : [],
ipAddress : '',
boxWeight : '',
latitude : '',
@ -122,6 +142,7 @@
statusOptions:[{"fullName":"离线","id":"0"},{"fullName":"在线","id":"1"}],
statusProps:{"label":"fullName","value":"id" },
beLongStationIdProps:{"label":"station_name","value":"id" ,"children":"children" },
beLongRecyclerPhoneProps:{"label":"staffs_name","value":"mobile_phone" },
}
},
@ -149,6 +170,9 @@
this.dataForm = _dataAll
},
goBack() {
this.$emit('refresh')
},
init(id) {
this.dataForm.id = id || 0;
this.visible = true;

File diff suppressed because one or more lines are too long

@ -2,15 +2,39 @@
<template>
<el-dialog :title="!dataForm.id ? '新建' :'编辑'"
:close-on-click-modal="false" append-to-body
:visible.sync="visible" class="JNPF-dialog JNPF-dialog_center" lock-scroll
width="600px">
<el-row :gutter="15" class="">
<transition name="el-zoom-in-center">
<div class="JNPF-preview-main">
<div class="JNPF-common-page-header">
<el-page-header @back="goBack"
:content="!dataForm.id ? '新建':'编辑'"/>
<div class="options">
<el-dropdown class="dropdown" placement="bottom">
<el-button style="width:70px">
<i class="el-icon-arrow-down el-icon--right"></i>
</el-button>
<el-dropdown-menu slot="dropdown">
<template v-if="dataForm.id">
<el-dropdown-item @click.native="prev" :disabled='prevDis'>
{{'上一条'}}
</el-dropdown-item>
<el-dropdown-item @click.native="next" :disabled='nextDis'>
{{'下一条'}}
</el-dropdown-item>
</template>
<el-dropdown-item type="primary" @click.native="dataFormSubmit(2)"
:loading="continueBtnLoading" :disabled='btnLoading'>
{{!dataForm.id ?'确定并新增':'确定并继续'}}</el-dropdown-item>
</el-dropdown-menu>
</el-dropdown>
<el-button type="primary" @click="dataFormSubmit()" :loading="btnLoading" :disabled='continueBtnLoading'> </el-button>
<el-button @click="goBack"> </el-button>
</div>
</div>
<el-row :gutter="15" class=" main" :style="{margin: '0 auto',width: '100%'}">
<el-form ref="formRef" :model="dataForm" :rules="dataRule" size="small" label-width="100px" label-position="right" >
<template v-if="!loading">
<!-- 具体表单 -->
<el-col :span="24" >
<el-col :span="8" >
<jnpf-form-tip-item
label="设备编码" prop="deviceCode" >
<JnpfInput v-model="dataForm.deviceCode" @change="changeData('deviceCode',-1)"
@ -18,7 +42,7 @@
</JnpfInput>
</jnpf-form-tip-item>
</el-col>
<el-col :span="24" >
<el-col :span="8" >
<jnpf-form-tip-item
label="设备名称" tipLabel="设备名称" prop="deviceName" >
<JnpfInput v-model="dataForm.deviceName" @change="changeData('deviceName',-1)"
@ -26,7 +50,7 @@
</JnpfInput>
</jnpf-form-tip-item>
</el-col>
<el-col :span="24" >
<el-col :span="8" >
<jnpf-form-tip-item
label="所在城市" prop="city" >
<JnpfAreaSelect v-model="dataForm.city" @change="changeData('city',-1)"
@ -34,7 +58,7 @@
</JnpfAreaSelect>
</jnpf-form-tip-item>
</el-col>
<el-col :span="24" >
<el-col :span="8" >
<jnpf-form-tip-item
label="地址" prop="address" >
<JnpfInput v-model="dataForm.address" @change="changeData('address',-1)"
@ -42,7 +66,7 @@
</JnpfInput>
</jnpf-form-tip-item>
</el-col>
<el-col :span="24" >
<el-col :span="8" >
<jnpf-form-tip-item
label="投用状态" prop="useStatus" >
<JnpfRadio v-model="dataForm.useStatus" @change="changeData('useStatus',-1)"
@ -50,7 +74,7 @@
</JnpfRadio>
</jnpf-form-tip-item>
</el-col>
<el-col :span="24" >
<el-col :span="8" >
<jnpf-form-tip-item
label="设备状态" prop="status" >
<JnpfRadio v-model="dataForm.status" @change="changeData('status',-1)"
@ -58,24 +82,40 @@
</JnpfRadio>
</jnpf-form-tip-item>
</el-col>
<el-col :span="24" >
<el-col :span="8" >
<jnpf-form-tip-item
label="分配商户" tipLabel="绑定商户" prop="beLongCompanyId" >
<JnpfPopupSelect v-model="dataForm.beLongCompanyId" @change="changeData('beLongCompanyId',-1)"
:rowIndex="null" :formData="dataForm" :templateJson="interfaceRes.beLongCompanyId" placeholder="请选择商户" propsValue="f_id" popupWidth="800px" popupTitle="绑定商户" popupType="dialog" relationField='f_full_name' field='beLongCompanyId' interfaceId="563706688754953029" :pageSize="20" :columnOptions="beLongCompanyIdcolumnOptions" clearable :style='{"width":"100%"}'>
</JnpfPopupSelect>
label="所属商户" prop="beLongCompanyId" >
<JnpfOrganizeSelect v-model="dataForm.beLongCompanyId" @change="changeData('beLongCompanyId',-1)"
placeholder="请选择" selectType="all" :ableIds="ableAll.beLongCompanyIdableIds" clearable :style='{"width":"100%"}'>
</JnpfOrganizeSelect>
</jnpf-form-tip-item>
</el-col>
<el-col :span="24" >
<el-col :span="8" >
<jnpf-form-tip-item
label="分配回收站" tipLabel="分配回收站" prop="beLongStationId" >
<JnpfCascader v-model="dataForm.beLongStationId" @change="changeData('beLongStationId',-1)"
placeholder="请选择" show-all-levels clearable :style='{"width":"100%"}' separator="/" :options="beLongStationIdOptions" :props="beLongStationIdProps" >
</JnpfCascader>
</jnpf-form-tip-item>
</el-col>
<el-col :span="8" >
<jnpf-form-tip-item
label="所属清运员" prop="beLongRecyclerPhone" >
<JnpfSelect v-model="dataForm.beLongRecyclerPhone" @change="changeData('beLongRecyclerPhone',-1)"
placeholder="请选择" clearable :style='{"width":"100%"}' :options="beLongRecyclerPhoneOptions" :props="beLongRecyclerPhoneProps" >
</JnpfSelect>
</jnpf-form-tip-item>
</el-col>
<el-col :span="24" >
<jnpf-form-tip-item
label="设备码二维码" prop="deviceCodeQr" >
<JnpfUploadImg v-model="dataForm.deviceCodeQr" @change="changeData('deviceCodeQr',-1)"
:fileSize="100" sizeUnit="MB" :limit="1" pathType="defaultPath" :isAccount="0" >
</JnpfUploadImg>
</jnpf-form-tip-item>
</el-col>
<el-col :span="8" >
<jnpf-form-tip-item
label="设备总重" prop="boxWeight" >
<JnpfInput v-model="dataForm.boxWeight" @change="changeData('boxWeight',-1)"
placeholder="请选择" clearable :style='{"width":"100%"}'>
@ -104,21 +144,8 @@
<SelectDialog v-if="selectDialogVisible" :config="currTableConf" :formData="dataForm"
ref="selectDialog" @select="addForSelect" @close="selectDialogVisible=false"/>
</el-row>
<span slot="footer" class="dialog-footer">
<div class="upAndDown-button" v-if="dataForm.id">
<el-button @click="prev" :disabled='prevDis'>
{{'上一条'}}
</el-button>
<el-button @click="next" :disabled='nextDis'>
{{'下一条'}}
</el-button>
</div>
<el-button type="primary" @click="dataFormSubmit(2)" :loading="continueBtnLoading">
{{!dataForm.id ?'确定并新增':'确定并继续'}}</el-button>
<el-button @click="visible = false"> </el-button>
<el-button type="primary" @click="dataFormSubmit()" :loading="btnLoading"> </el-button>
</span>
</el-dialog>
</div>
</transition>
</template>
@ -168,8 +195,10 @@
address : undefined,
useStatus : "0",
status : "0",
beLongCompanyId : undefined,
beLongCompanyId : [],
beLongStationId : [],
beLongRecyclerPhone : undefined,
deviceCodeQr : [],
ipAddress : undefined,
boxWeight : undefined,
latitude : undefined,
@ -216,9 +245,10 @@
useStatusProps:{"label":"fullName","value":"id" },
statusOptions:[{"fullName":"离线","id":"0"},{"fullName":"在线","id":"1"}],
statusProps:{"label":"fullName","value":"id" },
beLongCompanyIdcolumnOptions:[ {"label":"商户ID","value":"f_id"}, {"label":"商户名称","value":"f_full_name"},],
beLongStationIdOptions:[],
beLongStationIdProps:{"label":"station_name","value":"id" ,"children":"children" },
beLongRecyclerPhoneOptions:[],
beLongRecyclerPhoneProps:{"label":"staffs_name","value":"mobile_phone" },
childIndex:-1,
isEdit:false,
interfaceRes: {
@ -230,6 +260,8 @@
status:[] ,
beLongCompanyId:[] ,
beLongStationId:[{"dataType":"varchar","defaultValue":"默认","field":"company_id","fieldName":"","id":"ISgfx72","jnpfKey":"popupSelect","relationField":"beLongCompanyId","required":"0"}] ,
beLongRecyclerPhone:[] ,
deviceCodeQr:[] ,
ipAddress:[] ,
boxWeight:[] ,
latitude:[] ,
@ -331,6 +363,7 @@
},
dataAll(){
this.getbeLongStationIdOptions();
this.getbeLongRecyclerPhoneOptions();
},
getbeLongStationIdOptions() {
const index = this.childIndex
@ -357,6 +390,34 @@
this.changeDataFormData(1,'beLongStationId','beLongStationId',index,[])
})
},
getbeLongRecyclerPhoneOptions() {
const index = this.childIndex
let templateJsonList = JSON.parse(JSON.stringify(this.interfaceRes.beLongRecyclerPhone))
for (let i = 0; i < templateJsonList.length; i++) {
let json = templateJsonList[i];
if(json.relationField){
let relationFieldAll = json.relationField.split("-");
let val = json.defaultValue;
if(relationFieldAll.length>1 && index>-1){
val = this.dataForm[relationFieldAll[0]+'List']&&this.dataForm[relationFieldAll[0]+'List'].length?this.dataForm[relationFieldAll[0]+'List'][index][relationFieldAll[1]]:''
}else {
val = this.dataForm[relationFieldAll]
}
json.defaultValue = val
}
}
let template ={
paramList:templateJsonList
}
getDataInterfaceRes('573108606942052421',template).then(res => {
let data = res.data
this.beLongRecyclerPhoneOptions = data
this.changeDataFormData(1,'beLongRecyclerPhone','beLongRecyclerPhone',index,'')
})
},
goBack() {
this.$emit('refresh')
},
clearData(){
this.dataForm = JSON.parse(JSON.stringify(this.dataValueAll))
},

@ -55,7 +55,7 @@
<div class="JNPF-common-layout-main JNPF-flex-main">
<div class="JNPF-common-head">
<div>
<el-button type="primary" icon="icon-ym icon-ym-btn-add" @click="addOrUpdateHandle()">
<el-button type="primary" icon="icon-ym icon-ym-btn-add" v-has="'btn_add'" @click="addOrUpdateHandle()">
</el-button>
</div>
<div class="JNPF-common-head-right">
@ -97,7 +97,7 @@
</el-table-column>
<el-table-column
prop="beLongCompanyId"
label="分配商户" align="left"
label="所属商户" align="left"
>
</el-table-column>
<el-table-column
@ -133,17 +133,22 @@
<el-table-column
prop="beLongStationId"
label="分配回收站" align="left"
>
</el-table-column>
<el-table-column
prop="beLongRecyclerPhone"
label="所属清运员" align="left"
>
</el-table-column>
<el-table-column label="操作"
fixed="right" width="150" >
<template slot-scope="scope" >
<el-button type="text"
@click="addOrUpdateHandle(scope.row)" >编辑
@click="addOrUpdateHandle(scope.row)" v-has="'btn_edit'" >编辑
</el-button>
<el-button type="text" class="JNPF-table-delBtn" @click="handleDel(scope.row.id)">
<el-button type="text" class="JNPF-table-delBtn" v-has="'btn_remove'" @click="handleDel(scope.row.id)">
</el-button>
<el-button type="text"
<el-button type="text" v-has="'btn_detail'"
@click="goDetail(scope.row.id)">详情
</el-button>
</template>
@ -242,8 +247,9 @@
statusProps:{"label":"fullName","value":"id" },
beLongStationIdOptions:[],
beLongStationIdProps:{"label":"station_name","value":"id" ,"children":"children" },
beLongRecyclerPhoneOptions:[],
beLongRecyclerPhoneProps:{"label":"staffs_name","value":"mobile_phone" },
interfaceRes: {
beLongCompanyId:[] ,
},
}
},

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save