Commit 0b441794 by liangjianmin

feat(picking): 添加创建人显示及切换开发环境配置

- 在拣货页面新增“创建人”信息展示
- 将环境配置从生产环境切换至开发环境
- 保持界面布局和功能一致性
parent 622717e5
Showing with 5 additions and 1 deletions
......@@ -59,6 +59,10 @@
<text class="label">销售员:</text>
<text class="tt">{{ item.sale_name }}</text>
</view>
<view class="text-item row verCenter">
<text class="label">创建人:</text>
<text class="tt">{{ item.take_name }}</text>
</view>
<view class="ziying-tag" v-if="item.has_ziying == 1">自营</view>
<view class="btn-box row verCenter">
<!-- 出库单状态为全部锁库,则显示【释放】、【选择】按钮 -->
......
// 环境配置:'production' 正式环境 | 'development' 测试环境
const ENV = 'production';
const ENV = 'development';
// 环境配置映射
var ENV_CONFIG = {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment