|
@@ -176,9 +176,17 @@
|
|
@change="blurBackData(scope.row)"
|
|
@change="blurBackData(scope.row)"
|
|
></el-input-number>
|
|
></el-input-number>
|
|
</div>
|
|
</div>
|
|
- <div v-else-if="item.scope === 'copyTime' && scope.row[item.prop] != null" v-for="(item, index) in scope.row['copyTime']" :key="index">
|
|
|
|
- <span >{{item}}</span>
|
|
|
|
- </div>
|
|
|
|
|
|
+ <template
|
|
|
|
+ v-else-if="
|
|
|
|
+ item.scope === 'copyTime' &&
|
|
|
|
+ scope.row[item.prop] != null
|
|
|
|
+ "
|
|
|
|
+ >
|
|
|
|
+ <div v-for="(item, index) in scope.row['copyTime']" :key="index">
|
|
|
|
+ <span>{{ item }}</span>
|
|
|
|
+ </div>
|
|
|
|
+ </template>
|
|
|
|
+
|
|
<span
|
|
<span
|
|
v-else-if="item.scope === 'status' && scope.row[item.prop] != null"
|
|
v-else-if="item.scope === 'status' && scope.row[item.prop] != null"
|
|
>{{
|
|
>{{
|
|
@@ -289,7 +297,7 @@
|
|
style="color: blue; cursor: pointer"
|
|
style="color: blue; cursor: pointer"
|
|
@click="openSpec(scope.row['goodsId'])"
|
|
@click="openSpec(scope.row['goodsId'])"
|
|
>
|
|
>
|
|
- {{ scope.row[item.prop]?'已关联':'未关联' }}
|
|
|
|
|
|
+ {{ scope.row[item.prop] ? "已关联" : "未关联" }}
|
|
</span>
|
|
</span>
|
|
<span
|
|
<span
|
|
v-else-if="item.scope === 'aboutClassNum'"
|
|
v-else-if="item.scope === 'aboutClassNum'"
|
|
@@ -972,8 +980,10 @@
|
|
}}</span
|
|
}}</span
|
|
>
|
|
>
|
|
<span v-else-if="item.scope === 'layered'">
|
|
<span v-else-if="item.scope === 'layered'">
|
|
- <div>{{scope.row[item.prop1]}}</div>
|
|
|
|
- <div v-if="scope.row[item.prop2]">({{scope.row[item.prop2]}})</div>
|
|
|
|
|
|
+ <div>{{ scope.row[item.prop1] }}</div>
|
|
|
|
+ <div v-if="scope.row[item.prop2]">
|
|
|
|
+ ({{ scope.row[item.prop2] }})
|
|
|
|
+ </div>
|
|
</span>
|
|
</span>
|
|
<span v-else-if="item.scope === 'aTimeList'">{{
|
|
<span v-else-if="item.scope === 'aTimeList'">{{
|
|
scope.row[item.prop] === null
|
|
scope.row[item.prop] === null
|
|
@@ -1599,9 +1609,7 @@
|
|
v-if="navText.xssbStatus"
|
|
v-if="navText.xssbStatus"
|
|
>
|
|
>
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
- {{
|
|
|
|
- scope.row.periodPlush?'已上报':'未上报'
|
|
|
|
- }}
|
|
|
|
|
|
+ {{ scope.row.periodPlush ? "已上报" : "未上报" }}
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column
|
|
<el-table-column
|
|
@@ -2107,7 +2115,7 @@ export default {
|
|
}
|
|
}
|
|
this.$emit("openClassNum", id);
|
|
this.$emit("openClassNum", id);
|
|
},
|
|
},
|
|
- openSpec(id){
|
|
|
|
|
|
+ openSpec(id) {
|
|
this.$emit("openClassNum", id);
|
|
this.$emit("openClassNum", id);
|
|
},
|
|
},
|
|
/**
|
|
/**
|