songxingwei 2 years ago
parent
commit
3592fe0906
1 changed files with 5 additions and 5 deletions
  1. 5 5
      application/store/view/goods/form.html

+ 5 - 5
application/store/view/goods/form.html

@@ -52,14 +52,14 @@
             </label>
 
             <label class="layui-col-xs3 relative">
-                <span class="color-green font-w7">是否可以寄售<input checked type="radio" hidden readonly name=""  value="" lay-ignore></span>
+                <span class="color-green font-w7">上架/下架<input checked type="radio" hidden readonly name=""  value="" lay-ignore></span>
                 <div>
                     {if isset($vo.id)}
-                    <input type="radio"  name="status" {if $vo.status eq 1}checked{/if}  value="1" title="">
-                    <input  type="radio" name="status" {if $vo.status eq 0}checked{/if} value="0" title="">
+                    <input type="radio"  name="status" {if $vo.status eq 1}checked{/if}  value="1" title="上架">
+                    <input  type="radio" name="status" {if $vo.status eq 0}checked{/if} value="0" title="下架">
                     {else}
-                    <input checked type="radio"  name="status"  value="1" title="">
-                    <input  type="radio" name="status"  value="0" title="">
+                    <input checked type="radio"  name="status"  value="1" title="上架">
+                    <input  type="radio" name="status"  value="0" title="下架">
                     {/if}
                 </div>
             </label>