|
|
@@ -46,6 +46,10 @@
|
|
|
:currentPage.sync="formData.pageNum"
|
|
|
@search="search"
|
|
|
/>
|
|
|
+ <operation-record-dig
|
|
|
+ :dialogVisible="dialogRecordVisible"
|
|
|
+ >
|
|
|
+ </operation-record-dig>
|
|
|
</container>
|
|
|
</div>
|
|
|
</template>
|
|
|
@@ -57,9 +61,9 @@ import {
|
|
|
orderExport,
|
|
|
orderStatistics,
|
|
|
} from "@/api/order/index";
|
|
|
+import OperationRecordDig from "./components/OperationRecordDig.vue";
|
|
|
export default {
|
|
|
name: "SaasMemberRecord",
|
|
|
-
|
|
|
data() {
|
|
|
return {
|
|
|
countList: [
|
|
|
@@ -190,6 +194,7 @@ export default {
|
|
|
placeholder: "输入会员手机号",
|
|
|
},
|
|
|
],
|
|
|
+ dialogRecordVisible: true,
|
|
|
};
|
|
|
},
|
|
|
|
|
|
@@ -237,6 +242,9 @@ export default {
|
|
|
});
|
|
|
},
|
|
|
},
|
|
|
+ components: {
|
|
|
+ OperationRecordDig,
|
|
|
+ },
|
|
|
};
|
|
|
</script>
|
|
|
|