gaoluyang
4 小时以前 43be32b8523e5139850b8cefc660026f35eb97bb
1.海川开心-生产订单展示字段修改
已修改3个文件
28 ■■■■ 文件已修改
src/views/inventoryManagement/issueManagement/index.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/productionManagement/productionDispatching/index.vue 14 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/productionManagement/productionOrder/index.vue 10 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/inventoryManagement/issueManagement/index.vue
@@ -69,7 +69,7 @@
                     <el-table-column label="含税总价(元)" prop="taxInclusiveTotalPrice" width="150"></el-table-column>
           <el-table-column fixed="right" label="操作" min-width="60" align="center">
             <template #default="scope">
               <el-button link type="primary" size="small" @click="openForm(scope.row);">领用</el-button>
               <el-button link type="primary" size="small" @click="openForm(scope.row);">发料</el-button>
             </template>
           </el-table-column>
         </el-table>
@@ -108,7 +108,7 @@
                        <el-table-column label="剩余库存" prop="inboundNum0" width="90" show-overflow-tooltip />
            <el-table-column fixed="right" label="操作" width="100" align="center">
              <template #default="scope">
                <el-button link type="primary" size="small" @click="openForm(scope.row);">领用</el-button>
                <el-button link type="primary" size="small" @click="openForm(scope.row);">发料</el-button>
              </template>
            </el-table-column>
          </el-table>
src/views/productionManagement/productionDispatching/index.vue
@@ -148,20 +148,6 @@
        width: 120,
    },
    {
        label: "状态",
        prop: "status",
        dataType: "tag",
        formatType: (params) => {
            if (params == '生产中') {
                return "warning";
            } else if (params == '未开始') {
                return "danger";
            } else {
                return "success";
            }
        },
    },
    {
        label: "生产进度",
        prop: "progress",
        formatData: (cellValue) => {
src/views/productionManagement/productionOrder/index.vue
@@ -87,16 +87,16 @@
    //     width:300
    // },
    {
        label: "付款状态",
        label: "生产状态",
        prop: "status",
        dataType: "tag",
        formatType: (params) => {
            if (params == '未完成') {
            if (params == '生产中') {
                return "warning";
            } else if (params == '未开始') {
                return "danger";
            } else if (params == '已完成') {
                return "success";
            } else {
                return null;
                return "success";
            }
        },
    },