aamin 2 лет назад
Родитель
Сommit
bec7098542

+ 1 - 1
houtai/src/pages/A2Integral/index.tsx

@@ -133,7 +133,7 @@ function A2Integral() {
             <span>用户名:</span>
             <Input
               key={inputKey}
-              maxLength={15}
+              maxLength={20}
               style={{ width: 150 }}
               placeholder="请输入"
               allowClear

+ 1 - 1
houtai/src/pages/A3User/UserAdd/index.tsx

@@ -93,7 +93,7 @@ function UserAdd({ id, closePage, upTableList, addTableList }: Props) {
           >
             <Input
               disabled={id}
-              maxLength={15}
+              maxLength={20}
               showCount
               placeholder="请输入内容"
             />

+ 1 - 1
houtai/src/pages/A3User/index.tsx

@@ -290,7 +290,7 @@ function A3User() {
             <span>用户名:</span>
             <Input
               key={inputKey}
-              maxLength={8}
+              maxLength={20}
               style={{ width: 150, borderRadius: 0 }}
               placeholder="请输入用户名"
               allowClear

+ 1 - 1
houtai/src/pages/A4Prize/index.tsx

@@ -193,7 +193,7 @@ function A4Prize() {
                 编辑
               </Button>
               <Popconfirm
-                title={`是否将用户从列表中移除?`}
+                title={`是否将奖品从列表中移除?`}
                 okText="确认"
                 cancelText="取消"
                 onConfirm={() => {

+ 1 - 1
houtai/src/pages/A5Exchange/index.tsx

@@ -119,7 +119,7 @@ function A5Exchange() {
             <span>用户名:</span>
             <Input
               key={inputKey}
-              maxLength={15}
+              maxLength={20}
               style={{ width: 150 }}
               placeholder="请输入"
               allowClear

+ 1 - 1
houtai/src/pages/A6IDUser/index.tsx

@@ -220,7 +220,7 @@ function A6IDUser() {
             <span>用户名:</span>
             <Input
               key={inputKey}
-              maxLength={15}
+              maxLength={20}
               style={{ width: 150 }}
               placeholder="请输入"
               allowClear

+ 1 - 1
houtai/src/pages/C7Log/index.tsx

@@ -97,7 +97,7 @@ function C2Log() {
           <div className="row">
             <span>操作者:</span>
             <Input
-              maxLength={15}
+              maxLength={20}
               style={{ width: 150 }}
               placeholder="请输入"
               allowClear

+ 3 - 3
houtai/src/pages/Layout/index.tsx

@@ -308,7 +308,7 @@ function Layout() {
               name="oldPassword"
               rules={[{ required: true, message: "不能为空!" }]}
             >
-              <Input.Password maxLength={15} />
+              <Input.Password maxLength={20} />
             </Form.Item>
 
             <Form.Item
@@ -320,7 +320,7 @@ function Layout() {
               ]}
             >
               <Input.Password
-                maxLength={15}
+                maxLength={20}
                 onChange={(e) => (oldPasswordValue.current = e.target.value)}
               />
             </Form.Item>
@@ -330,7 +330,7 @@ function Layout() {
               name="checkPass"
               rules={[{ validator: checkPassWord }]}
             >
-              <Input.Password maxLength={15} />
+              <Input.Password maxLength={20} />
             </Form.Item>
 
             <Form.Item wrapperCol={{ offset: 14, span: 16 }}>

+ 2 - 2
houtai/src/pages/Login/index.tsx

@@ -68,7 +68,7 @@ export default function Login() {
               onChange={(e) => setUserName(e.target.value.trim())}
               prefix={<UserOutlined />}
               placeholder="请输入用户名"
-              maxLength={15}
+              maxLength={20}
             />
           </div>
           <div className="inputBoxRow">
@@ -78,7 +78,7 @@ export default function Login() {
               onChange={(e) => setPassWord(e.target.value.trim())}
               prefix={<LockOutlined />}
               placeholder="请输入用户密码"
-              maxLength={15}
+              maxLength={20}
             />
           </div>
         </div>

BIN
zhengquan/public/staticData/game/pc/1.png


BIN
zhengquan/public/staticData/game/pc/2.png


BIN
zhengquan/public/staticData/game/pc/3.png


BIN
zhengquan/public/staticData/game/pc/4.png


BIN
zhengquan/public/staticData/game/pc/5.png


BIN
zhengquan/public/staticData/game/pc/6.png


BIN
zhengquan/public/staticData/game/pc/7.png


+ 3 - 2
zhengquan/src/views/Scene/ScenePage.vue

@@ -442,7 +442,7 @@ const changePassFu = () => {
     <div class="backHome" v-show="isShowFigure" @click="() => { router.replace('/home') }">
       <img src="@/assets/images/scene/backHome.png" alt="">
     </div>
-    <iframe v-if="currentUnit" id="sceneiframe"
+    <iframe v-if="currentUnit && currentUnit.code" id="sceneiframe"
       :src="`/scene/index.html?m=${currentUnit.code}${currentUnit.unit == '尾厅' ? '&firstView=pano:42,qua:0.009218044457158925,0.8470543054294898,-0.01469850441003682,0.5312231071060547&qs=1' : pointInfo}`"></iframe>
     <!-- <iframe id="sceneiframe"
       :src="`/web/index.html#/scene?code=KJ-mTSkFdm273x`"></iframe> -->
@@ -455,7 +455,8 @@ const changePassFu = () => {
       <div v-show="browser.mobile" class="show-title">行业公益力量展</div>
       <div class="hots-box-left">
         <div class="left-item" :style="{ background: currentUnit.unit == item.unit ? '#66141885' : '' }"
-          v-for="(item, index) in store.hotspots" :key="index" @click="() => { changeUnit(item); pointInfo = '' }">{{
+          v-for="(item, index) in store.hotspots" :key="index"
+          @click="() => { changeUnit(item); pointInfo = ''; isShowFigure = true }">{{
             item.unit
           }}</div>
       </div>