Browse Source

修改了使用周期跟合同差异项位置

duanxiaoduan 1 year ago
parent
commit
b418a18726
1 changed files with 6 additions and 6 deletions
  1. 6 6
      src/views/custom/contractManagement/index.vue

+ 6 - 6
src/views/custom/contractManagement/index.vue

@@ -137,9 +137,9 @@
             <el-table-column label="计量单位" min-width="120px" align="center" prop="unit" />
             <el-table-column label="计划量" sortable min-width="120px" align="center" prop="planAmount" />
             <el-table-column label="单价" sortable min-width="120px" align="center" prop="price" />
-            <el-table-column label="备注" sortable min-width="120px" align="center" prop="remark" />
             <el-table-column label="使用周期" min-width="120px" align="center" prop="lifeCycle" />
             <el-table-column label="合同差异项" min-width="120px" align="center" prop="contractVarianceItem" />
+            <el-table-column label="备注" sortable min-width="120px" align="center" prop="remark" />
           </el-table>
           <pagination v-show="tab1.detailsSpareParts.total>0" :total="tab1.detailsSpareParts.total" :page.sync="tab1.detailsSpareParts.getdataListParm.offset" :limit.sync="tab1.detailsSpareParts.getdataListParm.pagecount" @pagination="getTab1List2" />
         </div>
@@ -538,11 +538,6 @@
               <el-input v-model="scope.row.price" />
             </template>
           </el-table-column>
-          <el-table-column label="备注" min-width="110px" align="center">
-            <template slot-scope="scope">
-              <el-input v-model="scope.row.remark" type="textarea" placeholder="备注" autosize maxlength="100" show-word-limit />
-            </template>
-          </el-table-column>
           <el-table-column label="使用周期" min-width="110px" align="center" valign="middle">
               <template slot-scope="scope">
                 <el-input v-model="scope.row.lifeCycle" />
@@ -553,6 +548,11 @@
                 <el-input v-model="scope.row.contractVarianceItem" />
               </template>
             </el-table-column>
+          <el-table-column label="备注" min-width="110px" align="center">
+            <template slot-scope="scope">
+              <el-input v-model="scope.row.remark" type="textarea" placeholder="备注" autosize maxlength="100" show-word-limit />
+            </template>
+          </el-table-column>
           <el-table-column label="操作" align="center" width="100px" class-name="small-padding fixed-width" fixed="right">
             <template slot-scope="{row}">
               <a class="del" :disabled="isokDisable" @click="partDelete(row)">删除</a>