No longer using meta table for avatar so edits are reflected immediately.
This commit is contained in:
@@ -360,6 +360,28 @@
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div
|
||||
v-if="edits[item.key].naturalBoobs === false"
|
||||
class="value-section"
|
||||
>
|
||||
<span class="value-label">Incision</span>
|
||||
|
||||
<select
|
||||
v-model="edits[item.key].boobsIncision"
|
||||
class="input"
|
||||
:disabled="!editing.has(item.key)"
|
||||
>
|
||||
<option :value="null" />
|
||||
<option value="mammary">Under breast</option>
|
||||
<option value="areolar">Areola</option>
|
||||
<option value="crescent">Crescent</option>
|
||||
<option value="lollipop">Lollipop</option>
|
||||
<option value="anchor">Anchor</option>
|
||||
<option value="axillary">Armpit</option>
|
||||
<option value="umbilical">Navel</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div
|
||||
v-if="edits[item.key].naturalBoobs === false"
|
||||
class="value-section value-divide"
|
||||
@@ -429,6 +451,51 @@
|
||||
<option value="lipo">Lipo without BBL</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div class="value-section">
|
||||
<span class="value-label">Natural lips</span>
|
||||
|
||||
<select
|
||||
v-model="edits[item.key].naturalLips"
|
||||
class="input"
|
||||
:disabled="!editing.has(item.key)"
|
||||
>
|
||||
<option :value="null" />
|
||||
<option :value="true">Yes</option>
|
||||
<option :value="false">No</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div
|
||||
v-if="edits[item.key].naturalLips === false"
|
||||
class="value-section"
|
||||
>
|
||||
<span class="value-label">Filler CC</span>
|
||||
|
||||
<input
|
||||
v-model="edits[item.key].lipsVolume"
|
||||
type="number"
|
||||
class="volume input"
|
||||
placeholder="CC"
|
||||
min="50"
|
||||
max="10000"
|
||||
:disabled="!editing.has(item.key)"
|
||||
>
|
||||
</div>
|
||||
|
||||
<div class="value-section">
|
||||
<span class="value-label">Natural labia</span>
|
||||
|
||||
<select
|
||||
v-model="edits[item.key].naturalLabia"
|
||||
class="input"
|
||||
:disabled="!editing.has(item.key)"
|
||||
>
|
||||
<option :value="null" />
|
||||
<option :value="true">Yes</option>
|
||||
<option :value="false">No</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div
|
||||
@@ -581,6 +648,8 @@ const user = pageContext.user;
|
||||
const countries = pageContext.pageProps.countries;
|
||||
const actor = ref(pageContext.pageProps.actor);
|
||||
|
||||
console.log(actor.value);
|
||||
|
||||
const topCountries = [
|
||||
'AU',
|
||||
'BR',
|
||||
@@ -717,10 +786,14 @@ const fields = computed(() => [
|
||||
boobsVolume: actor.value.boobsVolume,
|
||||
boobsImplant: actor.value.boobsImplant,
|
||||
boobsPlacement: actor.value.boobsPlacement,
|
||||
boobsIncision: actor.value.boobsIncision,
|
||||
boobsSurgeon: actor.value.boobsSurgeon,
|
||||
naturalButt: actor.value.naturalButt,
|
||||
buttVolume: actor.value.buttVolume,
|
||||
buttImplant: actor.value.buttImplant,
|
||||
naturalLips: actor.value.naturalLips,
|
||||
lipsVolume: actor.value.lipsVolume,
|
||||
naturalLabia: actor.value.naturalLabia,
|
||||
},
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user