From d01fa9d49a8c8a723493aecb681d4e1f3e25fce5 Mon Sep 17 00:00:00 2001
From: guoyuji <guoyujie@ng.com>
Date: 星期五, 26 一月 2024 14:28:55 +0800
Subject: [PATCH] Merge branch 'master' of http://10.153.19.25:10101/r/ERP_override
---
north-glass-erp/northglass-erp/src/views/pp/processCard/SelectPrintFlowCard.vue | 106 +++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 106 insertions(+), 0 deletions(-)
diff --git a/north-glass-erp/northglass-erp/src/views/pp/processCard/SelectPrintFlowCard.vue b/north-glass-erp/northglass-erp/src/views/pp/processCard/SelectPrintFlowCard.vue
new file mode 100644
index 0000000..4f0ef09
--- /dev/null
+++ b/north-glass-erp/northglass-erp/src/views/pp/processCard/SelectPrintFlowCard.vue
@@ -0,0 +1,106 @@
+<script lang="ts" setup>
+import {reactive, ref} from 'vue'
+
+// do not use same name with ref
+const form = reactive({
+ name: '',
+ region: '',
+ date1: '',
+ date2: '',
+ delivery: false,
+ type: [],
+ resource: '',
+ desc: '',
+})
+const defaultTime = ref<[Date, Date]>([
+ new Date(2000, 1, 1, 0, 0, 0),
+ new Date(2000, 2, 1, 23, 59, 59),
+])
+const tableData = [
+ {
+ salesOrderNo: 'NG231201',
+ entryName: '淇″悎鏄ュぉ閲�',
+ total: '169',
+ TotalArea: '175.31',
+ },
+ {
+ salesOrderNo: 'NG231202',
+ entryName: '淇″悎鏄ュぉ閲�',
+ total: '169',
+ TotalArea: '175.31',
+ },
+ {
+ salesOrderNo: 'NG231203',
+ entryName: '淇″悎鏄ュぉ閲�',
+ total: '169',
+ TotalArea: '175.31',
+ },
+ {
+ salesOrderNo: 'NG231204',
+ entryName: '淇″悎鏄ュぉ閲�',
+ total: '169',
+ TotalArea: '175.31',
+ },
+ {
+ salesOrderNo: 'NG231205',
+ entryName: '淇″悎鏄ュぉ閲�',
+ total: '169',
+ TotalArea: '175.31',
+ },
+ {
+ salesOrderNo: 'NG231206',
+ entryName: '淇″悎鏄ュぉ閲�',
+ total: '169',
+ TotalArea: '175.31',
+ },
+ {
+ salesOrderNo: 'NG231207',
+ entryName: '淇″悎鏄ュぉ閲�',
+ total: '169',
+ TotalArea: '175.31',
+ },
+]
+</script>
+
+<template>
+ <div>
+ <div id="selectForm">
+ <el-row :gutter="0">
+<!-- <el-input placeholder="閿�鍞崟鍙�" v-model="form.name" style="width: 200px"/>-->
+<!-- -->
+<!-- <el-input placeholder="椤圭洰鍚嶇О" v-model="form.region" style="width: 200px"/>-->
+<!-- -->
+ <el-date-picker
+ v-model="form.date1"
+ type="daterange"
+ start-placeholder="寮�濮嬫椂闂�"
+ end-placeholder="缁撴潫鏃堕棿"
+ :default-time="defaultTime"
+ />
+
+ <el-button type="primary">鏌ヨ</el-button>
+ </el-row>
+
+ </div>
+ <el-table :data="tableData" border style="width: 100%" height="100%">
+ <el-table-column sortable prop="salesOrderNo" label="閿�鍞崟鍙�" width="110" >
+ <template v-slot="scope">
+ <router-link :to="{path:'PrintFlowCard'}" >{{scope.row.salesOrderNo}}</router-link>
+ </template>
+ </el-table-column>
+ <el-table-column prop="entryName" label="椤圭洰鍚嶇О" width="155" />
+ <el-table-column prop="total" label="鎬荤墖鏁�" width="75" />
+ <el-table-column prop="TotalArea" label="鎬婚潰绉�" width="100" />
+ </el-table><!-- <h1>{{msg}}</h1> -->
+ </div>
+</template>
+
+<style scoped>
+#selectForm {
+ width: 40%;
+ height: 100%;
+ text-align: center;
+}
+
+
+</style>
\ No newline at end of file
--
Gitblit v1.8.0