This commit is contained in:
Mr Swift
2024-03-03 16:12:38 +03:30
parent 438c1d7efe
commit 1280d1825a
2 changed files with 5 additions and 0 deletions
+4
View File
@@ -59,6 +59,10 @@
<h5 style="text-wrap: nowrap; margin-left: 10px;">نام و نام خانوادگی: </h5>
<p>{{ complaint?.user?.first_name + " " + complaint?.user?.last_name }}</p>
</div>
<div v-if="complaint?.user" class="d-flex mt-3" style="align-items: center">
<h5 style="text-wrap: nowrap; margin-left: 10px;"> کد پرسنلی: </h5>
<p>{{ complaint?.user?.personalCode || "0000" }}</p>
</div>
<div class="d-flex mt-3" style="align-items: center">
<h5 style="text-wrap: nowrap; margin-left: 10px;">توضیح :</h5>
<el-input v-model="desc" type="textarea" rows="3"></el-input>
+1
View File
@@ -6,6 +6,7 @@ const UserSchema = mongoose.Schema({
private: { type: Boolean, default: false },
username: String,
permissions: Array,
personalCode:String,
// for user
national_code: String,
province_id: String,