|
@@ -345,6 +345,10 @@
|
|
|
},
|
|
},
|
|
|
|
|
|
|
|
computed: {
|
|
computed: {
|
|
|
|
|
+ clientEnvironmentId() {
|
|
|
|
|
+ return this.$store.state.user.info.clientEnvironmentId;
|
|
|
|
|
+ },
|
|
|
|
|
+
|
|
|
columns() {
|
|
columns() {
|
|
|
return [
|
|
return [
|
|
|
{
|
|
{
|
|
@@ -419,18 +423,22 @@
|
|
|
slot: 'engrave',
|
|
slot: 'engrave',
|
|
|
align: 'center'
|
|
align: 'center'
|
|
|
},
|
|
},
|
|
|
- {
|
|
|
|
|
- minWidth: 80,
|
|
|
|
|
- prop: 'extInfo.productSequence',
|
|
|
|
|
- label: '序列号',
|
|
|
|
|
- align: 'center',
|
|
|
|
|
- showOverflowTooltip: true,
|
|
|
|
|
- formatter: (row) => {
|
|
|
|
|
- return this.normalizeProductSequenceValue(
|
|
|
|
|
- row.extInfo && row.extInfo.productSequence
|
|
|
|
|
- );
|
|
|
|
|
- }
|
|
|
|
|
- },
|
|
|
|
|
|
|
+ ...(this.clientEnvironmentId == 9
|
|
|
|
|
+ ? []
|
|
|
|
|
+ : [
|
|
|
|
|
+ {
|
|
|
|
|
+ minWidth: 80,
|
|
|
|
|
+ prop: 'extInfo.productSequence',
|
|
|
|
|
+ label: '序列号',
|
|
|
|
|
+ align: 'center',
|
|
|
|
|
+ showOverflowTooltip: true,
|
|
|
|
|
+ formatter: (row) => {
|
|
|
|
|
+ return this.normalizeProductSequenceValue(
|
|
|
|
|
+ row.extInfo && row.extInfo.productSequence
|
|
|
|
|
+ );
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ ]),
|
|
|
{
|
|
{
|
|
|
minWidth: 120,
|
|
minWidth: 120,
|
|
|
prop: 'extInfo.sendCode',
|
|
prop: 'extInfo.sendCode',
|