修改装备租赁价格可以为编辑状态
This commit is contained in:
parent
3d4d6bff07
commit
8afb989c93
|
|
@ -174,7 +174,7 @@ const equipmentDeployment = (row: any) => {
|
|||
deviceName: '',
|
||||
deviceTypeList: [],
|
||||
deviceCount: 1,
|
||||
originaValue:'',
|
||||
originaValue: '',
|
||||
unitName: '',
|
||||
code: '',
|
||||
brand: '',
|
||||
|
|
@ -517,7 +517,7 @@ const equipmentDeploymentParams: any = ref({
|
|||
deviceName: '',
|
||||
deviceTypeList: [],
|
||||
deviceCount: 1,
|
||||
originaValue:'',
|
||||
originaValue: '',
|
||||
unitName: '',
|
||||
code: '',
|
||||
brand: '',
|
||||
|
|
@ -605,7 +605,8 @@ const dialogFormVisibleSettlein: any = ref(false)
|
|||
const ruleFormRef: any = ref(null)
|
||||
//表单校验规则
|
||||
const equipRules = ref({
|
||||
originaValue:[{
|
||||
originaValue: [
|
||||
{
|
||||
required: true,
|
||||
message: '请输入原值',
|
||||
trigger: 'blur',
|
||||
|
|
@ -1102,7 +1103,7 @@ const addAndEditForm = reactive<any>({
|
|||
deviceName: '',
|
||||
deviceTypeList: [],
|
||||
deviceCount: 1,
|
||||
originaValue:'',
|
||||
originaValue: '',
|
||||
unitName: '',
|
||||
code: '',
|
||||
brand: '',
|
||||
|
|
@ -1342,7 +1343,7 @@ const onDialogClose = () => {
|
|||
deviceName: '',
|
||||
deviceTypeList: [],
|
||||
deviceCount: 1,
|
||||
originaValue:'',
|
||||
originaValue: '',
|
||||
unitName: '',
|
||||
code: '',
|
||||
brand: '',
|
||||
|
|
@ -1846,13 +1847,13 @@ const handleDel = (index: any) => {
|
|||
<el-form-item label="租赁价格(天/元):" prop="dayLeasePrice">
|
||||
<el-input
|
||||
@input="
|
||||
(v) => (addAndEditForm.dayLeasePrice = v.replace(/[^\d.]/g, ''))
|
||||
(v:any) => (addAndEditForm.dayLeasePrice = v.replace(/[^\d.]/g, ''))
|
||||
"
|
||||
v-model="addAndEditForm.dayLeasePrice"
|
||||
placeholder="请输入租赁价格"
|
||||
clearable
|
||||
maxlength="20"
|
||||
:disabled="isDisabled || isEditForm"
|
||||
placeholder="请输入租赁价格"
|
||||
v-model="addAndEditForm.dayLeasePrice"
|
||||
:disabled="settleinTitle == '新增详情'"
|
||||
/>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
|
|
|
|||
Loading…
Reference in New Issue