|
|
@@ -3,7 +3,7 @@
|
|
|
:visible.sync="visible"
|
|
|
:before-close="handleClose"
|
|
|
:title="`游客信息 ( ${message} )`"
|
|
|
- width="1000px">
|
|
|
+ width="1300px">
|
|
|
<div class="guestInfo-dialog">
|
|
|
<div class="btn-wrap-left">
|
|
|
<div style="display:flex">
|
|
|
@@ -117,6 +117,25 @@
|
|
|
</el-form-item>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="guestPhone"
|
|
|
+ label="游客手机号"
|
|
|
+ >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-form-item
|
|
|
+ verify
|
|
|
+ can-be-empty
|
|
|
+ :prop="'touristList.' + scope.$index + '.guestPhone'"
|
|
|
+ >
|
|
|
+ <el-input
|
|
|
+ clearable
|
|
|
+ size="small"
|
|
|
+ :disabled="scope.row.lock"
|
|
|
+ v-model="scope.row.guestPhone"
|
|
|
+ ></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column
|
|
|
prop="guestIdentifyType"
|
|
|
label="证件类型"
|
|
|
@@ -163,6 +182,23 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
|
|
|
+ <el-table-column
|
|
|
+ label="IC卡号码"
|
|
|
+ min-width="120"
|
|
|
+ >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-form-item
|
|
|
+ can-be-empty
|
|
|
+ :prop="'touristList.' + scope.$index + '.cardNo'"
|
|
|
+ >
|
|
|
+ <ReaderInput
|
|
|
+ type="ID"
|
|
|
+ @change="scope.row.cardNo=$event.Name"
|
|
|
+ v-model="scope.row.cardNo"></ReaderInput>
|
|
|
+ </el-form-item>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+
|
|
|
<el-table-column
|
|
|
label="票号"
|
|
|
min-width="160"
|