|
@@ -6,8 +6,8 @@
|
|
|
{{ route.query.flowName || "流程标题(发起)" }}
|
|
|
</div>
|
|
|
<div class="line"></div>
|
|
|
- <SendSubscribe ref="makeDom" @auxiliaryChange='(e) => auxiliaryData = e' v-if="flowForm.flowKey == 'subscribe_flow'" :queryData="queryData.data"></SendSubscribe>
|
|
|
- <SendPurchase ref="makeDom" @auxiliaryChange='(e) => auxiliaryData = e' v-else-if="flowForm.flowKey == 'purchase_flow'" :queryData="queryData.data"></SendPurchase>
|
|
|
+ <SendSubscribe ref="makeDom" @auxiliaryChange='(e) => getAuxiliaryData(e)' v-if="flowForm.flowKey == 'subscribe_flow'" :queryData="queryData.data"></SendSubscribe>
|
|
|
+ <SendPurchase ref="makeDom" @auxiliaryChange='(e) => getAuxiliaryData(e)' v-else-if="flowForm.flowKey == 'purchase_flow'" :queryData="queryData.data"></SendPurchase>
|
|
|
<SendFunds ref="makeDom" v-else-if="flowForm.flowKey == 'account_request_funds_flow'" :queryData="queryData.data"></SendFunds>
|
|
|
<ReturnGood ref="makeDom" v-else-if="flowForm.flowKey == 'sales_return_flow'" :queryData="queryData.data"></ReturnGood>
|
|
|
<PurchaseRefund ref="makeDom" v-else-if="flowForm.flowKey == 'refund_flow'" :queryData="queryData.data"></PurchaseRefund>
|
|
@@ -85,7 +85,10 @@
|
|
|
<!-- <div style="overflow-y: auto; max-height: calc(100vh - 200px)">
|
|
|
<DecisionAids></DecisionAids>
|
|
|
</div> -->
|
|
|
+ <div style="overflow: auto; height: calc(100vh - 200px)">
|
|
|
<auxiliary :data="auxiliaryData"></auxiliary>
|
|
|
+
|
|
|
+ </div>
|
|
|
<!-- <div style="overflow: auto; height: calc(100vh - 200px)">
|
|
|
<purchaseAuxiliary></purchaseAuxiliary>
|
|
|
</div> -->
|
|
@@ -161,6 +164,9 @@ const handleClick = (tab, event) => {
|
|
|
// console.log(tab, event);
|
|
|
};
|
|
|
let auxiliaryData = ref([]);
|
|
|
+const getAuxiliaryData = (data)=>{
|
|
|
+ auxiliaryData.value=data
|
|
|
+}
|
|
|
// 意见表单
|
|
|
const flowForm = reactive({
|
|
|
flowKey: "",
|