This commit is contained in:
Your Name
2025-07-22 14:41:39 +09:00
parent e2f7ab5113
commit edab77d0c6
3 changed files with 13 additions and 2 deletions

View File

@ -170,10 +170,11 @@ export default {
month : month, month : month,
day : day day : day
} }
// commect blocId to run UI // BEGIN TEST UI
// this.$refs['planPop'].blocId = this.pageData.blocMstrList[ // this.$refs['planPop'].blocId = this.pageData.blocMstrList[
// this.pageData.blocId // this.pageData.blocId
// ].blocId; // ].blocId;
// END TEST UI
this.$refs['planPop'].dialog = true; this.$refs['planPop'].dialog = true;
}, },
updatePlan(val) { updatePlan(val) {

View File

@ -5,7 +5,7 @@
<v-icon <v-icon
v-if="iconShow" v-if="iconShow"
small small
:class="['mr-1','icon-blue']" :class="['mr-1', required ? 'icon-orange' : 'icon-blue']"
>$icoBulletPoint</v-icon >$icoBulletPoint</v-icon
> >
{{ label }} {{ label }}
@ -57,6 +57,11 @@ export default {
require: false, require: false,
default: 4, default: 4,
}, },
required: {
type: Boolean,
require: false,
default: false
},
iconShow: { iconShow: {
type: Boolean, type: Boolean,
require: false, require: false,

View File

@ -72,6 +72,11 @@ export default {
require: false, require: false,
default: 4, default: 4,
}, },
required: {
type: Boolean,
require: false,
default: false
},
iconShow: { iconShow: {
type: Boolean, type: Boolean,
require: false, require: false,