|
@@ -38,7 +38,7 @@
|
|
@click="showParamsPage(row)"
|
|
@click="showParamsPage(row)"
|
|
>模型
|
|
>模型
|
|
<template #icon>
|
|
<template #icon>
|
|
- <svg-icon icon-class="moxing"></svg-icon>
|
|
|
|
|
|
+ <svg-icon icon-class="moxing" />
|
|
</template>
|
|
</template>
|
|
</el-button>
|
|
</el-button>
|
|
</template>
|
|
</template>
|
|
@@ -93,22 +93,22 @@
|
|
style="height: 280px"
|
|
style="height: 280px"
|
|
>
|
|
>
|
|
<el-table-column label="参数" prop="fieldCode">
|
|
<el-table-column label="参数" prop="fieldCode">
|
|
- <template v-slot="{ row }">
|
|
|
|
|
|
+ <template #default="{ row }">
|
|
<el-input v-model="row.fieldCode" />
|
|
<el-input v-model="row.fieldCode" />
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column label="参数名称" prop="fieldLabel">
|
|
<el-table-column label="参数名称" prop="fieldLabel">
|
|
- <template v-slot="{ row }">
|
|
|
|
|
|
+ <template #default="{ row }">
|
|
<el-input v-model="row.fieldLabel" />
|
|
<el-input v-model="row.fieldLabel" />
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column label="参数值" prop="fieldValue">
|
|
<el-table-column label="参数值" prop="fieldValue">
|
|
- <template v-slot="{ row }">
|
|
|
|
|
|
+ <template #default="{ row }">
|
|
<el-input v-model="row.fieldValue" />
|
|
<el-input v-model="row.fieldValue" />
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column label="操作" align="center">
|
|
<el-table-column label="操作" align="center">
|
|
- <template v-slot="{ row }">
|
|
|
|
|
|
+ <template #default="{ row }">
|
|
<el-button
|
|
<el-button
|
|
type="danger"
|
|
type="danger"
|
|
@click="minusItem(row)"
|
|
@click="minusItem(row)"
|
|
@@ -120,30 +120,25 @@
|
|
</el-table-column>
|
|
</el-table-column>
|
|
</el-table>
|
|
</el-table>
|
|
<div class="dialog-footer" style="margin-top: 20px" align="center">
|
|
<div class="dialog-footer" style="margin-top: 20px" align="center">
|
|
- <el-button
|
|
|
|
- type="primary"
|
|
|
|
- v-if="pageData.length > 0"
|
|
|
|
- @click="handleSubmit"
|
|
|
|
- >保 存</el-button
|
|
|
|
- >
|
|
|
|
|
|
+ <el-button type="primary" @click="handleSubmit">保 存</el-button>
|
|
<el-button @click="dialog.visible = false">取消</el-button>
|
|
<el-button @click="dialog.visible = false">取消</el-button>
|
|
</div>
|
|
</div>
|
|
</el-dialog>
|
|
</el-dialog>
|
|
<el-dialog
|
|
<el-dialog
|
|
- v-model="dialog2.visible"
|
|
|
|
- :title="dialog2.title"
|
|
|
|
- width="70%"
|
|
|
|
- @close="dialog2.visible = false"
|
|
|
|
|
|
+ v-model="dialog2.visible"
|
|
|
|
+ :title="dialog2.title"
|
|
|
|
+ width="70%"
|
|
|
|
+ @close="dialog2.visible = false"
|
|
>
|
|
>
|
|
- <choice-workshop-page @workShopInfo="workShopInfo" />
|
|
|
|
|
|
+ <choice-workshop-page @work-shop-info="workShopInfo" />
|
|
</el-dialog>
|
|
</el-dialog>
|
|
<el-dialog
|
|
<el-dialog
|
|
- v-model="dialog3.visible"
|
|
|
|
- :title="dialog3.title"
|
|
|
|
- width="70%"
|
|
|
|
- @close="dialog3.visible = false"
|
|
|
|
|
|
+ v-model="dialog3.visible"
|
|
|
|
+ :title="dialog3.title"
|
|
|
|
+ width="70%"
|
|
|
|
+ @close="dialog3.visible = false"
|
|
>
|
|
>
|
|
- <choice-station-page @stationInfo="stationInfo" />
|
|
|
|
|
|
+ <choice-station-page @station-info="stationInfo" />
|
|
</el-dialog>
|
|
</el-dialog>
|
|
<ExcelUpload ref="uploadRef" @finished="uploadFinished" />
|
|
<ExcelUpload ref="uploadRef" @finished="uploadFinished" />
|
|
</div>
|
|
</div>
|