{{ scope.row.daily.inventory }}
@@ -363,7 +363,7 @@
{{ children.name }}
+ {{
+ children.name }}
@@ -37,7 +37,8 @@
- 退出
+ {{ usernmae }}
+ 登出
@@ -58,6 +59,7 @@ export default {
getMenu().then((res) => {
this.menu = res.data.data;
});
+ this.usernmae = localStorage.getItem('userName');
},
data() {
return {
@@ -68,6 +70,7 @@ export default {
head: "", // 路由name
onindex: 0, // 索引
openeds: ["GOODS_MANAGE"],
+ usernmae: ''
};
},
watch: {
diff --git a/resources/frontend/src/views/plat/faceSheet.vue b/resources/frontend/src/views/plat/faceSheet.vue
new file mode 100644
index 0000000..4ced36b
--- /dev/null
+++ b/resources/frontend/src/views/plat/faceSheet.vue
@@ -0,0 +1,63 @@
+
+
+
+
+
+
+
+
+
+
+ 授权
+
+
+
+ {{ scope.row.status }}
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/resources/frontend/src/views/store/store.vue b/resources/frontend/src/views/store/store.vue
index 819c07a..83edb0d 100644
--- a/resources/frontend/src/views/store/store.vue
+++ b/resources/frontend/src/views/store/store.vue
@@ -6,10 +6,11 @@
-
+
+
diff --git a/resources/frontend/vue.config.js b/resources/frontend/vue.config.js
index 63a7ba1..9184096 100644
--- a/resources/frontend/vue.config.js
+++ b/resources/frontend/vue.config.js
@@ -1,24 +1,24 @@
module.exports = {
- lintOnSave: false,
- publicPath: "./", // 配置打包之后的相对路径
- devServer: {
- open: false, // 设置浏览器自动打开项目
- port: 8080, // 开发服务器运行端口号
- overlay: {
- warnings: false,
- errors: true,
- },
- proxy: {
- // 配置代理
- "/api": {
- // target: "http://192.168.247.186:81",
- target: "http://erp.chutang66.com",
- changeOrigin: true, // 开启代理
- pathRewrite: {
- // 重命名
- "^/api": "api",
+ lintOnSave: false,
+ publicPath: "./", // 配置打包之后的相对路径
+ devServer: {
+ open: false, // 设置浏览器自动打开项目
+ port: 8080, // 开发服务器运行端口号
+ overlay: {
+ warnings: false,
+ errors: true,
+ },
+ proxy: {
+ // 配置代理
+ "/api": {
+ target: "http://192.168.247.186:81",
+ // target: "http://erp.chutang66.com",
+ changeOrigin: true, // 开启代理
+ pathRewrite: {
+ // 重命名
+ "^/api": "api",
+ },
+ },
},
- },
},
- },
};
diff --git a/routes/api.php b/routes/api.php
index 50805e9..e32a3fe 100644
--- a/routes/api.php
+++ b/routes/api.php
@@ -60,6 +60,8 @@ Route::middleware(['auth:api', 'check.permissions'])->group(function () {
Route::get('goods_sku_location', [GoodsSkuLocationController::class, 'index'])->name('goods_sku_location.index');
Route::put('goods_sku_location', [GoodsSkuLocationController::class, 'update'])->name('goods_sku_location.update');
Route::delete('goods_sku_location', [GoodsSkuLocationController::class, 'delete'])->name('goods_sku_location.delete');
+ // 电子面单
+ Route::resource('shop/ship', 'Shop\ShipController', ['only' => ['index']]);
});
Route::get('stock/goods_skus', [GoodsSkusController::class, 'stockNum'])->middleware('auth:api');
Route::get('goods/filter/{title}', [GoodsCombinationController::class, 'goodsSkus'])->middleware('auth:api');