This commit is contained in:
parent
47b27f5746
commit
2099b07178
|
|
@ -43,13 +43,13 @@
|
||||||
<el-table-column
|
<el-table-column
|
||||||
label="物资名称"
|
label="物资名称"
|
||||||
align="center"
|
align="center"
|
||||||
prop="typeName"
|
prop="materialType"
|
||||||
:show-overflow-tooltip="true"
|
:show-overflow-tooltip="true"
|
||||||
/>
|
/>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
label="规格型号"
|
label="规格型号"
|
||||||
align="center"
|
align="center"
|
||||||
prop="typeModel"
|
prop="typeName"
|
||||||
:show-overflow-tooltip="true"
|
:show-overflow-tooltip="true"
|
||||||
/>
|
/>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
|
|
@ -75,7 +75,7 @@
|
||||||
>
|
>
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<span v-if="scope.row.manageType==1">无编码</span>
|
<span v-if="scope.row.manageType==1">无编码</span>
|
||||||
<span v-if="scope.row.manageType==0" style="color: rgb(2, 167, 240);" @click="checkDetail(scope.row)">查看明细</span>
|
<span v-if="scope.row.manageType==0" style="color: rgb(2, 167, 240); cursor: pointer;" @click="checkDetail(scope.row)">查看明细</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<!-- <el-table-column prop="remarks" label="备注" align="center">
|
<!-- <el-table-column prop="remarks" label="备注" align="center">
|
||||||
|
|
@ -129,7 +129,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="item" style="width: 50%;flex-shrink: 0;margin-bottom: 5px;font-size: 14px;text-align: right;">
|
<div class="item" style="width: 50%;flex-shrink: 0;margin-bottom: 5px;font-size: 14px;text-align: right;">
|
||||||
<div>
|
<div>
|
||||||
<span>退料单位:</span><span>{{ rowObj.unitName }}</span>
|
<span>退料班组:</span><span>{{ rowObj.teamName }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<span>单号:</span><span>{{ rowObj.code }}</span>
|
<span>单号:</span><span>{{ rowObj.code }}</span>
|
||||||
|
|
@ -140,9 +140,9 @@
|
||||||
<el-table-column label="序号" align="center" type="index" width="60px"/>
|
<el-table-column label="序号" align="center" type="index" width="60px"/>
|
||||||
<el-table-column prop="materialType" label="物资类型" align="center">
|
<el-table-column prop="materialType" label="物资类型" align="center">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column prop="typeName" label="物资名称" align="center">
|
<el-table-column prop="materialName" label="物资名称" align="center">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column prop="materialName" label="规格型号" align="center">
|
<el-table-column prop="typeName" label="规格型号" align="center">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column prop="maCode" label="设备编号" align="center">
|
<el-table-column prop="maCode" label="设备编号" align="center">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
|
|
||||||
|
|
@ -188,8 +188,8 @@ export default {
|
||||||
console.log(this.tableList)
|
console.log(this.tableList)
|
||||||
let param = {
|
let param = {
|
||||||
keyWord: this.queryParams.keyWord,
|
keyWord: this.queryParams.keyWord,
|
||||||
typeName: this.queryParams.typeName,
|
startTime: this.queryParams.timeRange ? this.queryParams.timeRange[0] : null,
|
||||||
typeModelName: this.queryParams.typeModelName
|
endTime: this.queryParams.timeRange ? this.queryParams.timeRange[1] : null,
|
||||||
}
|
}
|
||||||
const response = await getBackInfoDetailsNoPageListApi(param)
|
const response = await getBackInfoDetailsNoPageListApi(param)
|
||||||
let obj = {
|
let obj = {
|
||||||
|
|
|
||||||
|
|
@ -331,7 +331,7 @@ export default {
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
phone: [
|
phone: [
|
||||||
{ required: true, message: '联系电话不能为空', trigger: 'blur' },
|
// { required: true, message: '联系电话不能为空', trigger: 'blur' },
|
||||||
{
|
{
|
||||||
pattern: /^1[3|4|5|6|7|8|9][0-9]\d{8}$/,
|
pattern: /^1[3|4|5|6|7|8|9][0-9]\d{8}$/,
|
||||||
message: '请输入正确的手机号码',
|
message: '请输入正确的手机号码',
|
||||||
|
|
|
||||||
|
|
@ -537,7 +537,7 @@ export default {
|
||||||
this.open = true
|
this.open = true
|
||||||
var ids = row.id
|
var ids = row.id
|
||||||
const res = await getApplyInfo(ids)
|
const res = await getApplyInfo(ids)
|
||||||
this.leaseApplyDetails = res.data.leaseOutDetailsList
|
this.leaseApplyDetails = res.data.leaseApplyDetailsList
|
||||||
this.leaseApplyData = res.data.leaseApplyInfo
|
this.leaseApplyData = res.data.leaseApplyInfo
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
@ -560,7 +560,7 @@ export default {
|
||||||
codeInfo(row) {
|
codeInfo(row) {
|
||||||
this.showView = true
|
this.showView = true
|
||||||
this.titleView = '查看'
|
this.titleView = '查看'
|
||||||
this.getListViewInfo = row.outMaCodeVoList
|
this.getListViewInfo = row.maCodeVoList
|
||||||
},
|
},
|
||||||
|
|
||||||
//打印
|
//打印
|
||||||
|
|
|
||||||
|
|
@ -188,8 +188,8 @@ export default {
|
||||||
console.log(this.tableList)
|
console.log(this.tableList)
|
||||||
let param = {
|
let param = {
|
||||||
keyWord: this.queryParams.keyWord,
|
keyWord: this.queryParams.keyWord,
|
||||||
typeName: this.queryParams.typeName,
|
startTime: this.queryParams.timeRange && this.queryParams.timeRange[0],
|
||||||
typeModelName: this.queryParams.typeModelName
|
endTime: this.queryParams.timeRange && this.queryParams.timeRange[1]
|
||||||
}
|
}
|
||||||
const response = await getLeaseInfoDetailsNoPageListApi(param)
|
const response = await getLeaseInfoDetailsNoPageListApi(param)
|
||||||
let obj = {
|
let obj = {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue