浏览代码

暂时隐藏收回,更改价格申报单字段为不小于等于零

黄梓星 1 年之前
父节点
当前提交
6f89c1726d

+ 1 - 1
src/views/purchase/PurchaseDemandList/index.vue

@@ -209,7 +209,7 @@
             <el-button type="text" size="mini" @click="check(scope.row)">查看</el-button>
             <el-button type="text" size="mini" v-if="scope.row.status == '0' || scope.row.status == '3'" @click="edit(scope.row)">编辑</el-button>
             <el-button type="text" size="mini" v-if="scope.row.status == '0' || scope.row.status == '3'" @click="commit(scope.row)">提交</el-button>
-            <el-button type="text" size="mini" v-if="scope.row.status == '1' && scope.row.flowId" @click="reback(scope.row)">收回</el-button>
+            <!-- <el-button type="text" size="mini" v-if="scope.row.status == '1' && scope.row.flowId" @click="reback(scope.row)">收回</el-button> -->
             <el-button type="text" size="mini" v-if="scope.row.status == '0' || scope.row.status == '3'" @click="deleteids(scope.row)">删除</el-button>
           </template>
         </el-table-column>

+ 1 - 1
src/views/purchase/apply/add/columns.js

@@ -189,7 +189,7 @@ export default function useColumns() {
           item: { key: "taxPrice", title: "含税单价", required: true },
           attr: {
             is: "el-input-number",
-            min: 0,
+            min: 0.01,
             precision: CONFIG.precision,
           },
         },

+ 1 - 1
src/views/purchase/apply/copy/columns.js

@@ -189,7 +189,7 @@ export default function useColumns() {
           item: { key: "taxPrice", title: "含税单价", required: true },
           attr: {
             is: "el-input-number",
-            min: 0,
+            min: 0.01,
             precision: CONFIG.precision,
           },
         },

+ 1 - 1
src/views/purchase/apply/edit/columns.js

@@ -189,7 +189,7 @@ export default function useColumns() {
           item: { key: "taxPrice", title: "含税单价", required: true },
           attr: {
             is: "el-input-number",
-            min: 0,
+            min: 0.01,
             precision: CONFIG.precision,
           },
         },