|
@@ -1,6 +1,6 @@
|
|
|
<template>
|
|
|
<div>
|
|
|
- <div class="my-title">分派</div>
|
|
|
+ <div class="my-title">查看</div>
|
|
|
<el-form
|
|
|
:model="dataForm"
|
|
|
:rules="dataRule"
|
|
@@ -19,13 +19,13 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="6">
|
|
|
- <el-form-item label="技术协议:" prop="attachFile1">
|
|
|
- <span @click="attachDetail(dataForm.attachFile1)">{{dataForm.attachFile1 == null ? '' : dataForm.attachFile1[0].fileName}}</span>
|
|
|
+ <el-form-item label="技术协议:" prop="attachList1">
|
|
|
+ <span class="attch-file" @click="attachDetail(dataForm.attachList1)">{{dataForm.attachList1 == null ? '' : dataForm.attachList1[0].fileName}}</span>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="6">
|
|
|
- <el-form-item label="资料:" prop="attachFile2">
|
|
|
- <span @click="attachDetail(dataForm.attachFile1)">{{dataForm.attachFile2 == null ? '' : dataForm.attachFile2[0].fileName}}</span>
|
|
|
+ <el-form-item label="资料:" prop="attachList2">
|
|
|
+ <span class="attch-file" @click="attachDetail(dataForm.attachList2)">{{dataForm.attachList2 == null ? '' : dataForm.attachList2[0].fileName}}</span>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
@@ -162,13 +162,13 @@
|
|
|
</el-table>
|
|
|
</el-form>
|
|
|
<span slot="footer" class="dialog-footer">
|
|
|
- <el-button @click="onChose">取消</el-button>
|
|
|
- <el-button
|
|
|
+ <el-button @click="onChose">返回</el-button>
|
|
|
+ <!-- <el-button
|
|
|
type="primary"
|
|
|
@click="dataFormSubmit()"
|
|
|
v-reClick
|
|
|
>确定</el-button
|
|
|
- >
|
|
|
+ > -->
|
|
|
</span>
|
|
|
|
|
|
<attach-detail-dialog ref="attachDetail"/>
|
|
@@ -279,4 +279,9 @@ export default {
|
|
|
.radio-group-wrap :deep(.el-radio) {
|
|
|
margin-left: 0; /* 清除横向间距 */
|
|
|
}
|
|
|
+
|
|
|
+.attch-file {
|
|
|
+ cursor: pointer;
|
|
|
+ color: #3e8ef7;
|
|
|
+}
|
|
|
</style>
|