|
|
@@ -286,8 +286,10 @@ export default {
|
|
|
},
|
|
|
computed: {
|
|
|
modelWidth() {
|
|
|
+ const isPC = this.jsonData.config?.platform && this.jsonData.config.platform === 'pc';
|
|
|
+ const isbusinessTrip = this.jsonData?.list?.[0]?.name.includes('出差');
|
|
|
let width =
|
|
|
- this.jsonData.config?.platform && this.jsonData.config.platform === 'pc'
|
|
|
+ isPC || isbusinessTrip
|
|
|
? 1100
|
|
|
: 450;
|
|
|
if (this.form?.taskDefinitionKey == 'CGYSP') {
|