| | |
| | | # 页面标题
|
| | | VITE_APP_TITLE =芯导-财务管理系统
|
| | |
|
| | | #10.136.58.65 芯导-财务管理系统 cwglxt
|
| | | #10.136.58.66 芯导-设备管理系统 sbglxt
|
| | | #10.136.58.67 芯导-生产管控系统 scgkxt
|
| | | #10.136.58.68 芯导-协同办公系统 xtbgxt
|
| | | #10.136.58.69 芯导-采购管理系统 cgglxt
|
| | | #10.136.58.70 芯导-仓储物流系统 ccwlxt
|
| | | #10.136.58.71 芯导-营销管理系统 yxglxt
|
| | | #10.136.58.72 芯导-人力资源系统 rlzyxt
|
| | | #10.136.58.73 芯导-环保门禁系统 hbmjxt
|
| | | # 生产环境配置
|
| | | VITE_APP_ENV = 'production'
|
| | |
|
| | |
| | | import { ref, computed, onMounted, reactive } from 'vue'; |
| | | import 'element-plus/dist/index.css'; |
| | | import Echarts from "@/components/Echarts/echarts.vue"; |
| | | import { getLedgerPage, getAssetInfo } from "@/api/equipmentManagement/ledger"; |
| | | import { getLedgerPage } from "@/api/equipmentManagement/ledger"; |
| | | import dayjs from "dayjs"; |
| | | |
| | | // 筛选条件 |
| | |
| | | <script setup> |
| | | import { ref, reactive, onMounted, nextTick } from 'vue' |
| | | import * as echarts from 'echarts' |
| | | import {getStockInChartData, getStockInPage} from "@/api/inventoryManagement/stockIn.js"; |
| | | import {getStockInPage} from "@/api/inventoryManagement/stockIn.js"; |
| | | |
| | | // 状态变量 |
| | | const loading = ref(false) |
| | |
| | | const baseUrl =
|
| | | VITE_APP_ENV == "development"
|
| | | ? "http://127.0.0.1:7003" // 开发环境后端接口
|
| | | : "http://10.136.12.71:7003"; // 生产环境后端接口
|
| | | : "http://127.0.0.1:7003"; // 生产环境后端接口
|
| | |
|
| | | return {
|
| | | // 部署生产环境和开发环境下的URL。
|