Browse Source

子表新增是否客户指定展示

001514 1 year ago
parent
commit
285b57210d
1 changed files with 17 additions and 0 deletions
  1. 17 0
      src/views/purchase/PurchaseDemandList/add.vue

+ 17 - 0
src/views/purchase/PurchaseDemandList/add.vue

@@ -301,6 +301,20 @@
               </el-form-item>
             </template>
           </el-table-column>
+          <el-table-column show-overflow-tooltip label="是否客户指定" align="center"  prop="isSpeical" width="100px">
+            <template slot-scope="scope">
+              <el-form-item class="hang">
+                <el-switch
+                  v-model="scope.row.isSpeical"
+                  disabled
+                  active-value="Y"
+                  inactive-value="N"
+                  active-color="#13ce66"
+                  inactive-color="#a1a3a9">
+                </el-switch>
+              </el-form-item>
+            </template>
+          </el-table-column>
           <el-table-column show-overflow-tooltip label="补单标识" align="center"  prop="isReplenishment" width="100px">
             <template slot-scope="scope">
               <el-form-item class="hang">
@@ -619,6 +633,7 @@ export default {
         demandPersonal: '',
         demandDept: '',
         demandDate: '',
+        createTime: '',
         source: '4',
         billType: 'ZQBH',
         isSpeical: 'N',
@@ -921,6 +936,7 @@ export default {
         isUrgency: this.basicForm.billType == 'JJXQ' ? 'Y' : 'N',
         isReplenishment: this.basicForm.billType == 'BDXQ'? 'Y': 'N',
         isBatchLock: 'N',
+        isCustomerSpecified: '',
         remark: null,
         puRemark: null,
         lastWarehouseQty: null,
@@ -1265,6 +1281,7 @@ export default {
               isUrgency: this.basicForm.billType == 'JJXQ' ? 'Y' : 'N',
               isReplenishment: this.basicForm.billType == 'BDXQ' ? 'Y' : 'N',
               isBatchLock: 'N',
+              isCustomerSpecified: '',
               remark: null,
               puRemark: null,
               lastWarehouseQty: null,