|
@@ -21,6 +21,7 @@
|
|
|
<el-col :span="18">
|
|
|
<div class="app-container scroll-y">
|
|
|
<DataTable
|
|
|
+ :tableColumnProperty="tableColumnProperty"
|
|
|
:tableHeader="state.list"
|
|
|
:tableData="tableData"
|
|
|
:tableBtnGroup="tableBtnGroup"
|
|
@@ -160,6 +161,14 @@ const tableForm = reactive({
|
|
|
text1: "",
|
|
|
text2: "",
|
|
|
}); //弹窗内容
|
|
|
+const tableColumnProperty = reactive({
|
|
|
+ width: "120px",
|
|
|
+ fixed: "",
|
|
|
+ sortable: false,
|
|
|
+ showOverflowTooltip: false,
|
|
|
+ align: "center",
|
|
|
+ headerAlign: "",
|
|
|
+}); //弹窗内容
|
|
|
//列表
|
|
|
const tableData = ref([
|
|
|
{
|