46 lines
993 B
Vue
46 lines
993 B
Vue
<template>
|
|
<ListViewWithHead
|
|
class="highlight-cell"
|
|
key="blender-order"
|
|
:table-config="tableConfig"
|
|
:head-config="headFormConfigs"
|
|
:dialog-configs="dialogConfigs"
|
|
:list-query-extra="[{ blenderId: null }, { viewType: 0 }]" />
|
|
</template>
|
|
|
|
<script>
|
|
import initConfig from "./config";
|
|
import ListViewWithHead from "./components/ListViewWithHead.vue";
|
|
|
|
export default {
|
|
name: "BlenderOrderView",
|
|
components: { ListViewWithHead },
|
|
provide() {
|
|
return {
|
|
urls: this.allUrls,
|
|
};
|
|
},
|
|
data() {
|
|
const { tableConfig, headFormConfigs, urls, dialogConfigs } = initConfig.call(this);
|
|
return {
|
|
tableConfig,
|
|
headFormConfigs,
|
|
allUrls: urls,
|
|
dialogConfigs,
|
|
};
|
|
},
|
|
created() {},
|
|
mounted() {},
|
|
methods: {},
|
|
};
|
|
</script>
|
|
|
|
<style scoped>
|
|
.highlight-cell >>> .cell-in-production {
|
|
background: rgba(33, 207, 134, 0.35);
|
|
}
|
|
.highlight-cell >>> .hover-row .cell-in-production {
|
|
background: rgba(33, 207, 134, 0.7);
|
|
}
|
|
</style>
|