|
@@ -105,21 +105,18 @@
|
|
|
<a @click="handleView(props)">查看(view)</a>
|
|
|
</template>
|
|
|
<template #viewFile="props">
|
|
|
- <a-upload name="file" :showUploadList="false" :action="uploadUrl" :headers="headers" @change="(value) => handleChange(value, props)">
|
|
|
- <a>上传(upload)</a>
|
|
|
- </a-upload>
|
|
|
- <a>/</a>
|
|
|
- <a :href="props.record.stampInvoice">查看</a>
|
|
|
+ <a @click="handleViewFile(props,'1')">查看</a>
|
|
|
</template>
|
|
|
|
|
|
<template #signFile="props">
|
|
|
- <a @click="handleViewSin(props)">查看(view)</a>
|
|
|
+ <a @click="handleViewFile(props,'2')">查看(view)</a>
|
|
|
</template>
|
|
|
</BasicTable>
|
|
|
<!-- 表单区域 -->
|
|
|
<saleInvoiceFormModal @register="registerModal" @success="handleSuccess" v-if="viewType == ''" />
|
|
|
<SaleOrderFormList @register="registerModal" v-if="viewType == 'saleOrder'" @visible-change="changeVisi" />
|
|
|
<PurchaseOrderFormList @register="registerModal" v-if="viewType == 'purchaseOrder'" @visible-change="changeVisi" />
|
|
|
+ <ViewFileListModal ref="ViewFileListModalRef" @success="handleSuccess"></ViewFileListModal>
|
|
|
<SaleContractList @register="registerModal" v-if="viewType == 'saleContract'" @visible-change="changeVisi" />
|
|
|
</div>
|
|
|
</template>
|
|
@@ -152,15 +149,10 @@
|
|
|
import SaleOrderFormList from '../salesOrder/components/SaleOrderFormModal.vue';
|
|
|
import PurchaseOrderFormList from '../../purchase/purchaseOrder/components/PurchaseOrderFormModal.vue';
|
|
|
import SaleContractList from '../saleContract/components/SaleContractModal.vue';
|
|
|
+ import ViewFileListModal from './components/ViewFileListModal.vue';
|
|
|
import { message } from 'ant-design-vue';
|
|
|
- import { getHeaders } from '/@/utils/common/compUtils';
|
|
|
- import { uploadUrl } from '/@/api/common/api';
|
|
|
- import { useGlobSetting } from '/@/hooks/setting';
|
|
|
import { useMethods } from '/@/hooks/system/useMethods';
|
|
|
const { handleExportXlsx, } = useMethods();
|
|
|
- const globSetting = useGlobSetting();
|
|
|
- const baseUploadUrl = globSetting.uploadUrl;
|
|
|
- const headers = getHeaders();
|
|
|
const formRef = ref();
|
|
|
const queryParam = reactive<any>({});
|
|
|
//注册model
|
|
@@ -168,6 +160,7 @@
|
|
|
var classOption = ref([]);
|
|
|
var viewType = ref('');
|
|
|
var showField = ref('currency+name');
|
|
|
+ var ViewFileListModalRef = ref();
|
|
|
//注册table数据
|
|
|
const { prefixCls, tableContext, onExportXls, onImportXls } = useListPage({
|
|
|
tableProps: {
|
|
@@ -363,27 +356,6 @@
|
|
|
batchClose({ ids: ids }, handleSuccess);
|
|
|
}
|
|
|
}
|
|
|
- function handleChange(info, props) {
|
|
|
- if (info.file.status !== 'uploading') {
|
|
|
- // console.log(info.file, info.fileList);
|
|
|
- }
|
|
|
- if (info.file.status === 'done') {
|
|
|
- if (info.file.response.success) {
|
|
|
- editSinging(info.file.response.message, props.record);
|
|
|
- } else {
|
|
|
- message.error(`${info.file.name} ${info.file.response.message}.`);
|
|
|
- }
|
|
|
- } else if (info.file.status === 'error') {
|
|
|
- message.error(`文件上传失败: ${info.file.msg} `);
|
|
|
- }
|
|
|
- }
|
|
|
- function editSinging(fileName, record) {
|
|
|
- var params = {
|
|
|
- id: record.id,
|
|
|
- stampInvoice: baseUploadUrl + '/sys/common/static/' + fileName,
|
|
|
- };
|
|
|
- editSignSing(params, handleSuccess);
|
|
|
- }
|
|
|
async function handleView(prop) {
|
|
|
var param = {
|
|
|
id: '',
|
|
@@ -409,20 +381,19 @@
|
|
|
showFooter: false,
|
|
|
});
|
|
|
}
|
|
|
- async function handleViewSin(prop) {
|
|
|
- var param = {
|
|
|
- id: prop.record.id,
|
|
|
- type: 'signBill',
|
|
|
- };
|
|
|
- var record = await getListDetail(param);
|
|
|
- prop.record.sign = baseUploadUrl + '/sys/common/static/' + record.signing;
|
|
|
- window.location.href = prop.record.sign;
|
|
|
- }
|
|
|
function changeVisi(data) {
|
|
|
if (!data) {
|
|
|
viewType.value = '';
|
|
|
}
|
|
|
}
|
|
|
+ function handleViewFile(prop,data) {
|
|
|
+ if(data=='1'){
|
|
|
+ ViewFileListModalRef.value.getTable(prop.record);
|
|
|
+ }else{
|
|
|
+ ViewFileListModalRef.value.viewFile(prop.record);
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
/* ----------------------以下为原生查询需要添加的-------------------------- */
|
|
|
const toggleSearchStatus = ref<boolean>(false);
|
|
|
const labelCol = reactive({
|