|
@@ -110,12 +110,7 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="8" v-if="ruleForm.is_project === '1'">
|
|
|
- <el-form-item
|
|
|
- label="项目竞价截止时间"
|
|
|
- class="clear"
|
|
|
- required
|
|
|
- label-width="140px"
|
|
|
- >
|
|
|
+ <el-form-item label="项目竞价截止时间" class="clear" required label-width="140px">
|
|
|
<el-input
|
|
|
placeholder="项目竞价截止时间"
|
|
|
v-model="ruleForm.pendtime"
|
|
@@ -181,9 +176,8 @@
|
|
|
:size="'mini'"
|
|
|
v-text="
|
|
|
(
|
|
|
- statusOptions.find(
|
|
|
- (item) => item.value == scope.row.good_type
|
|
|
- ) || {}
|
|
|
+ statusOptions.find((item) => item.value == scope.row.good_type) ||
|
|
|
+ {}
|
|
|
).label || '--'
|
|
|
"
|
|
|
></el-tag
|
|
@@ -215,13 +209,7 @@
|
|
|
</el-col>
|
|
|
<el-co :span="24">
|
|
|
<el-form-item label="竞价商品要求" class="clear" required>
|
|
|
- <el-table
|
|
|
- :data="tableData"
|
|
|
- stripe
|
|
|
- border
|
|
|
- :size="'mini'"
|
|
|
- style="width: 100%"
|
|
|
- >
|
|
|
+ <el-table :data="tableData" stripe border :size="'mini'" style="width: 100%">
|
|
|
<el-table-column
|
|
|
prop="arrival_time"
|
|
|
label="到货时间"
|
|
@@ -234,12 +222,7 @@
|
|
|
show-overflow-tooltip
|
|
|
width="110"
|
|
|
/>
|
|
|
- <el-table-column
|
|
|
- prop="num"
|
|
|
- label="购买数量"
|
|
|
- show-overflow-tooltip
|
|
|
- width="80"
|
|
|
- >
|
|
|
+ <el-table-column prop="num" label="购买数量" show-overflow-tooltip width="80">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ scope.row.num }}</span
|
|
|
><span>{{ scope.row.unit_name }}</span>
|
|
@@ -282,9 +265,7 @@
|
|
|
width="170"
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
|
- <span
|
|
|
- v-for="(si, sii) in scope.row.specinfo"
|
|
|
- :key="si.spec_name + sii"
|
|
|
+ <span v-for="(si, sii) in scope.row.specinfo" :key="si.spec_name + sii"
|
|
|
><span v-if="sii !== 0">-</span>{{ si.spec_name }}:[{{
|
|
|
si.spec_value_name
|
|
|
}}]</span
|
|
@@ -358,9 +339,7 @@
|
|
|
/>
|
|
|
</el-co>
|
|
|
<el-col :span="24" style="text-align: right" v-if="id === 'add'">
|
|
|
- <el-button type="primary" @click="submitForm" :size="'mini'"
|
|
|
- >保 存</el-button
|
|
|
- >
|
|
|
+ <el-button type="primary" @click="submitForm" :size="'mini'">保 存</el-button>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
</el-form>
|
|
@@ -612,9 +591,7 @@ export default {
|
|
|
arrtime: "",
|
|
|
};
|
|
|
this.tableData =
|
|
|
- ladder && ladder.length > 0
|
|
|
- ? JSON.parse(JSON.stringify(ladder))
|
|
|
- : [];
|
|
|
+ ladder && ladder.length > 0 ? JSON.parse(JSON.stringify(ladder)) : [];
|
|
|
if (this.ruleForm.projectNo && this.ruleForm.projectNo.length === 1) {
|
|
|
await this.selectChange(this.ruleForm.projectNo);
|
|
|
}
|