?<el-table-column label="項目模板名稱" align="center" prop="tempName" width="180" :formatter="templFormat" />
:formatter="templFormat"
?// 模板名單
optionTempls: [],
?// datas value
? ? templFormat(row, column) {
? ? ? var templName = "";
? ? ? Object.keys(this.optionTempls).some((key) => {
? ? ? ? if (this.optionTempls[key].templId == ("" + row.tempName)) {
? ? ? ? ? templName = this.optionTempls[key].templName
? ? ? ? }
? ? ? })
? ? ? return templName;
? ? },