|
@@ -16,7 +16,7 @@
|
|
|
</template>
|
|
|
<template #img="{ model }">
|
|
|
<PreviewGroup>
|
|
|
- <Image style="overflow: hidden;height: 100%;object-fit: cover;" :height="80" :width="80" v-for="item in model.payImgArray" :key="item" :src="item" :size="200" />
|
|
|
+ <Image style="overflow: hidden;height: 100%;object-fit: cover;margin-right:10px" :height="80" :width="80" v-for="item in model.payImgArray" :key="item" :src="item" :size="200" />
|
|
|
</PreviewGroup>
|
|
|
</template>
|
|
|
</BasicForm>
|
|
@@ -53,7 +53,7 @@
|
|
|
const repairId = ref('');
|
|
|
const fileFlow = reactive({
|
|
|
file: null,
|
|
|
- title: '发件登记',
|
|
|
+ title: '到账登记',
|
|
|
repairId: null,
|
|
|
cameraType: 0,
|
|
|
type: 2, //2-普通发票,3-专用发票
|
|
@@ -198,4 +198,9 @@
|
|
|
};
|
|
|
},
|
|
|
});
|
|
|
-</script>
|
|
|
+</script>
|
|
|
+<style lang="less">
|
|
|
+.ant-image {
|
|
|
+ margin-right: 10px;
|
|
|
+}
|
|
|
+</style>
|