zhanghonglin
5 天以前 96a94a59c08f55712ba04eb413e7f61739f11f66
ÏîÄ¿´úÂë/WCS/WIDESEAWCS_Client/src/views/taskinfo/weight_hty.vue
@@ -10,6 +10,7 @@
    :searchFormFields="searchFormFields"
    :searchFormOptions="searchFormOptions"
    :table="table"
    :extend="extend"
  ></view-grid>
</template>
    <script>
@@ -29,8 +30,23 @@
    const editFormFields = ref({});
    const editFormOptions = ref([]);
    const searchFormFields = ref({});
    const searchFormOptions = ref([]);
    const searchFormFields = ref({
      qualified:"",
    });
    const searchFormOptions = ref([
      [
        {
          title: "是否合格",
          field: "qualified",
          type: "select",
          dataKey: "WeightThicknessEnum",
          data: [
            { key: "0", value: "不合格" },
            { key: "1", value: "合格" }
          ]
        }
      ],
    ]);
    const columns = ref([
      {
        field: "id",
@@ -83,7 +99,7 @@
        type: "datetime",
        width: 150,
        align: "left"
      },
      }
    ]);
    const detail = ref({
      cnName: "#detailCnName",
@@ -91,6 +107,9 @@
      columns: [],
      sortName: ""
    });
    return {
      table,
      extend,
@@ -105,7 +124,7 @@
});
</script>
<style scoped>
  .cell el-tooltip{
    background: red;
  }
.cell el-tooltip {
  background: red;
}
</style>