charles
2024-08-06 5ecb7958c96d3f0b6d47b79aff7eb306c2cf690f
src/views/operate/outEnterLibrary/index.vue
@@ -4,11 +4,11 @@
      <SearchCommonView
        :add-title="'新建'"
        :showAdd="false"
        :showDownload="true"
        :placeholder="'请根据单号、产品、业务类型进行搜索'"
        :amount-view="false"
        @addCommonClick="addBtnClick"
        :inputName="params.keyWord"
        @searchClick="getList"
      />
    </div>
    <div class="list-view">
@@ -19,7 +19,7 @@
          @selTableCol="selTableCol"
        >
          <template slot="tableButton">
            <el-table-column label="操作" width="100">
            <el-table-column label="操作" width="120">
              <template slot-scope="scope">
                <el-button @click="tableRowClick(scope.row, '查看')" type="text" size="small">查看</el-button>
                <el-button
@@ -56,6 +56,7 @@
import AddOverviewDialog from "@/views/overview/AddOverviewDialog"
import { getDataByType } from "@/api/data"
export default {
  name: "InboundOutboundDetail",
  props: {},
@@ -321,7 +322,7 @@
    getStatus(val) {
      let newVal=Number(val)
      return newVal === 1 ? "草稿" : newVal === 3 ? "就绪" : newVal=== 4 ?"完成":newVal=== 5 ?"已取消":" "
    }
    },
  }
}
</script>