|
@@ -88,9 +88,7 @@
|
|
|
|
|
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
|
|
|
|
|
- <template v-slot:technicalDrawings="{ row }">
|
|
|
|
|
- <fileMain v-model="row.technicalDrawings" type="view"></fileMain>
|
|
|
|
|
- </template>
|
|
|
|
|
|
|
+
|
|
|
</el-col>
|
|
</el-col>
|
|
|
</el-row>
|
|
</el-row>
|
|
|
<headerTitle title="计划清单" style="margin-top: 15px"></headerTitle>
|
|
<headerTitle title="计划清单" style="margin-top: 15px"></headerTitle>
|
|
@@ -120,12 +118,18 @@
|
|
|
<el-link
|
|
<el-link
|
|
|
type="primary"
|
|
type="primary"
|
|
|
:underline="false"
|
|
:underline="false"
|
|
|
-
|
|
|
|
|
|
|
+ @click.native="handleMethod(scope.row)"
|
|
|
>
|
|
>
|
|
|
- {{ scope.row.expectReceiveDate }}
|
|
|
|
|
|
|
+ 查看分批时间
|
|
|
</el-link>
|
|
</el-link>
|
|
|
</div>
|
|
</div>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
+ <template v-slot:technicalDrawings="{ row }">
|
|
|
|
|
+ <fileMain v-model="row.technicalDrawings" type="view"></fileMain>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ <template v-slot:files="{ row }">
|
|
|
|
|
+ <fileMain v-model="row.files" type="view"></fileMain>
|
|
|
|
|
+ </template>
|
|
|
</ele-pro-table>
|
|
</ele-pro-table>
|
|
|
</el-tab-pane>
|
|
</el-tab-pane>
|
|
|
<el-tab-pane
|
|
<el-tab-pane
|
|
@@ -176,6 +180,7 @@
|
|
|
</el-tab-pane>
|
|
</el-tab-pane>
|
|
|
</el-tabs>
|
|
</el-tabs>
|
|
|
</el-form>
|
|
</el-form>
|
|
|
|
|
+ <timeDialog ref="timeDialogRef" :view="true"></timeDialog>
|
|
|
</div>
|
|
</div>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
@@ -186,10 +191,11 @@
|
|
|
import dictMixins from '@/mixins/dictMixins';
|
|
import dictMixins from '@/mixins/dictMixins';
|
|
|
import { getInventoryTotalAPI } from '@/api/bpm/components/wms';
|
|
import { getInventoryTotalAPI } from '@/api/bpm/components/wms';
|
|
|
import fileMain from '@/components/addDoc/index.vue';
|
|
import fileMain from '@/components/addDoc/index.vue';
|
|
|
|
|
+ import timeDialog from '@/components/timeDialog/index.vue';
|
|
|
|
|
|
|
|
export default {
|
|
export default {
|
|
|
mixins: [dictMixins],
|
|
mixins: [dictMixins],
|
|
|
- components: { fileMain },
|
|
|
|
|
|
|
+ components: { fileMain,timeDialog },
|
|
|
props: {
|
|
props: {
|
|
|
taskDefinitionKey: {
|
|
taskDefinitionKey: {
|
|
|
type: String,
|
|
type: String,
|
|
@@ -397,7 +403,9 @@
|
|
|
// }
|
|
// }
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
-
|
|
|
|
|
|
|
+ handleMethod(row) {
|
|
|
|
|
+ this.$refs.timeDialogRef.open(row);
|
|
|
|
|
+ },
|
|
|
//查看详情
|
|
//查看详情
|
|
|
openDetail(row) {
|
|
openDetail(row) {
|
|
|
this.$refs.contactDetailDialogRef.open(row);
|
|
this.$refs.contactDetailDialogRef.open(row);
|