From e0430e0b25d759f6505a4e4542562a69c93b1db5 Mon Sep 17 00:00:00 2001 From: gaoluyang <2820782392@qq.com> Date: 星期三, 07 五月 2025 17:38:29 +0800 Subject: [PATCH] 客户档案页面开发 --- src/views/basicData/customerFile/index.vue | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 43 insertions(+), 0 deletions(-) diff --git a/src/views/basicData/customerFile/index.vue b/src/views/basicData/customerFile/index.vue new file mode 100644 index 0000000..b4d6199 --- /dev/null +++ b/src/views/basicData/customerFile/index.vue @@ -0,0 +1,43 @@ +<template> +<div class="app-container"> + <div class="search_form"> + <div> + <span class="search_title">瀹㈡埛鍚嶇О锛�</span> + <el-input + v-model="input2" + style="width: 240px" + placeholder="璇疯緭鍏�" + :prefix-icon="Search" + /> + </div> + <div> + <el-button type="primary">鏂板瀹㈡埛</el-button> + <el-button>瀵煎嚭</el-button> + <el-button type="danger" plain>鍒犻櫎</el-button> + </div> + </div> + <div class="table_list"> + <PIMTable :column="tableColumn"></PIMTable> + </div> +</div> +</template> + +<script setup> +import { ref } from 'vue' +import {Search} from "@element-plus/icons-vue"; + +const input2 = ref('') +const tableColumn = ref([ + { + label: '鎵瑰噯鍐呭', + prop: 'ratifyRemark' + }, { + label: '鎵瑰噯浜�', + prop: 'ratifyName', + }, +]) +</script> + +<style scoped lang="scss"> + +</style> \ No newline at end of file -- Gitblit v1.9.3