|
|
@@ -276,9 +276,15 @@ import { dictData } from '@/views/localDict/index';
|
|
|
import { ElMessage } from "element-plus";
|
|
|
import { useRouter } from 'vue-router';
|
|
|
import { FormInstance } from 'element-plus';
|
|
|
-import quotation from './modules/quotation.vue' // 报价单
|
|
|
+import quotation from '../modules/quotation.vue' // 报价单
|
|
|
import QRCode from 'qrcode'
|
|
|
|
|
|
+const props = defineProps({
|
|
|
+ mySalesmanType: {
|
|
|
+ type: String,
|
|
|
+ }
|
|
|
+})
|
|
|
+
|
|
|
const router = useRouter()
|
|
|
const loading = ref(false)
|
|
|
const formData = ref({})
|
|
|
@@ -509,6 +515,7 @@ const initData = () => {
|
|
|
pages: pages.value,
|
|
|
size: size.value,
|
|
|
...params,
|
|
|
+ mySalesmanType: props.mySalesmanType,
|
|
|
startDate: range.value?.[0],
|
|
|
endDate: range.value?.[1],
|
|
|
startSigningTime: signingTime.value?.[0],//开始核保时间
|